/* ==========================================================
   PLOCAL — CATEGORY GROUPS
   THREE HORIZONTAL CARDS IN ONE ROW
========================================================== */

.plocal-categories {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: clamp(75px, 6vw, 100px);
    padding-bottom: clamp(75px, 6vw, 100px);
    background:
        radial-gradient(
            circle at 3% 10%,
            rgba(36, 189, 199, 0.05),
            transparent 24%
        ),
        radial-gradient(
            circle at 97% 90%,
            rgba(12, 44, 122, 0.04),
            transparent 28%
        ),
        var(--color-white);
}

/* ==========================================================
   WIDE CONTAINER
========================================================== */

.plocal-categories-shell {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1920px;
    padding-right: clamp(18px, 2.2vw, 42px);
    padding-left: clamp(18px, 2.2vw, 42px);
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================
   BACKGROUND
========================================================== */

.plocal-categories-background {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.plocal-categories-routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Animated vector routes */

.plocal-category-route {
    fill: none;
    stroke: url("#plocal-category-route-gradient");
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-dasharray: 4 18;
    opacity: 0.19;
    vector-effect: non-scaling-stroke;
    animation:
        plocalCategoryRouteMove
        25s
        linear
        infinite;
}

.plocal-category-route-secondary {
    opacity: 0.13;
    animation-duration: 32s;
    animation-direction: reverse;
}

@keyframes plocalCategoryRouteMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -340;
    }
}

/* Moving dots */

.plocal-category-moving-dot {
    fill: var(--theme-color);
    opacity: 0.78;
    filter: url("#plocal-category-route-glow");
}

.plocal-category-moving-dot-small {
    fill: var(--color-skyblue);
    opacity: 0.55;
}

/* ==========================================================
   BACKGROUND DOT FIELDS
========================================================== */

.plocal-categories-dot-field {
    position: absolute;
    width: 210px;
    height: 210px;
    opacity: 0.34;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.27) 1.5px,
            transparent 1.5px
        );
    background-size: 18px 18px;
    animation:
        plocalCategoryDotsFloat
        9s
        ease-in-out
        infinite;
}

.plocal-categories-dot-field-left {
    bottom: 4%;
    left: 1%;
    mask-image:
        linear-gradient(
            45deg,
            #000,
            transparent 82%
        );
    -webkit-mask-image:
        linear-gradient(
            45deg,
            #000,
            transparent 82%
        );
}

.plocal-categories-dot-field-right {
    top: 5%;
    right: 2%;
    animation-delay: 4.5s;
    mask-image:
        linear-gradient(
            225deg,
            #000,
            transparent 82%
        );
    -webkit-mask-image:
        linear-gradient(
            225deg,
            #000,
            transparent 82%
        );
}

@keyframes plocalCategoryDotsFloat {
    0%,
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 0.43;
        transform: translateY(-10px);
    }
}

/* ==========================================================
   BACKGROUND ORBITS
========================================================== */

.plocal-categories-orbit {
    position: absolute;
    border: 1px solid rgba(36, 189, 199, 0.07);
    border-radius: 50%;
    animation:
        plocalCategoryOrbitFloat
        14s
        ease-in-out
        infinite;
}

.plocal-categories-orbit::before,
.plocal-categories-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(12, 44, 122, 0.035);
    border-radius: inherit;
}

.plocal-categories-orbit::before {
    inset: 42px;
}

.plocal-categories-orbit::after {
    inset: 84px;
}

.plocal-categories-orbit-left {
    top: -410px;
    left: -380px;
    width: 720px;
    height: 720px;
}

.plocal-categories-orbit-right {
    right: -450px;
    bottom: -470px;
    width: 820px;
    height: 820px;
    animation-delay: 5s;
}

@keyframes plocalCategoryOrbitFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(5deg);
    }
}

/* ==========================================================
   FLOATING LIGHTS
========================================================== */

.plocal-categories-light {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 6px var(--theme-color),
        0 0 18px rgba(36, 189, 199, 0.4);
    animation:
        plocalCategoryLightPulse
        4s
        ease-in-out
        infinite;
}

.plocal-categories-light-1 {
    top: 20%;
    left: 7%;
}

.plocal-categories-light-2 {
    top: 13%;
    right: 16%;
    animation-delay: 1.3s;
}

.plocal-categories-light-3 {
    right: 48%;
    bottom: 7%;
    animation-delay: 2.6s;
}

@keyframes plocalCategoryLightPulse {
    0%,
    100% {
        opacity: 0.18;
        transform: scale(0.7);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.5);
    }
}

/* ==========================================================
   BACKGROUND ICONS
========================================================== */

.plocal-categories-bg-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color2);
    border: 1px solid rgba(12, 44, 122, 0.06);
    border-radius: 24px;
    opacity: 0;
    animation:
        plocalCategoryIconFade
        17s
        ease-in-out
        infinite;
}

.plocal-categories-bg-icon-location {
    top: 24%;
    left: 2%;
    width: 95px;
    height: 95px;
    font-size: 35px;
}

.plocal-categories-bg-icon-grid {
    top: 12%;
    right: 4%;
    width: 105px;
    height: 105px;
    font-size: 40px;
    animation-delay: 8s;
}

@keyframes plocalCategoryIconFade {
    0%,
    16%,
    100% {
        opacity: 0;
        transform:
            translateY(9px)
            scale(0.95);
    }

    27%,
    48% {
        opacity: 0.045;
        transform:
            translateY(0)
            scale(1);
    }

    68% {
        opacity: 0;
        transform:
            translateY(-8px)
            scale(1.02);
    }
}

/* ==========================================================
   SCANNING LIGHT
========================================================== */

.plocal-categories-scan {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -38%;
    width: 18%;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.04),
            rgba(98, 211, 218, 0.027),
            transparent
        );
    filter: blur(9px);
    transform: skewX(-18deg);
    animation:
        plocalCategoryScan
        17s
        ease-in-out
        infinite;
}

@keyframes plocalCategoryScan {
    0%,
    14% {
        left: -38%;
        opacity: 0;
    }

    25% {
        opacity: 0.7;
    }

    62% {
        opacity: 0.4;
    }

    82%,
    100% {
        left: 115%;
        opacity: 0;
    }
}

/* ==========================================================
   SECTION HEADING
========================================================== */

.plocal-categories-heading {
    position: relative;
    z-index: 4;
    max-width: 1100px;
    margin: 0 auto clamp(38px, 3.2vw, 52px);
}

.plocal-categories .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 16px 7px 8px;
    margin-bottom: 15px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50px;
    background: var(--theme-color-light);
}

.plocal-categories .site-title-tagline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: var(--color-white);
    font-size: 12px;
    border-radius: 50%;
    background: var(--theme-color);
}

.plocal-categories .site-title {
    margin: 0 0 15px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -2.2px;
}

.plocal-categories .site-title span {
    color: var(--theme-color);
}

.plocal-categories .plocal-section-intro {
    max-width: 930px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.65;
}

.plocal-categories .plocal-section-intro strong {
    color: var(--theme-color2);
}

/* ==========================================================
   THREE-COLUMN GRID
========================================================== */

.plocal-category-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.35vw, 25px);
    width: 100%;
    max-width: 1840px;
    margin: 0 auto;
}

/* ==========================================================
   CATEGORY CARD
========================================================== */

.plocal-category-card {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(160px, 0.39fr)
        minmax(0, 0.61fr);
    min-width: 0;
    min-height: 345px;
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(248, 251, 255, 0.91)
        );
    box-shadow:
        0 20px 49px rgba(8, 29, 77, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease,
        transform 0.45s ease;
}

.plocal-category-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            135deg,
            rgba(36, 189, 199, 0.085),
            rgba(36, 189, 199, 0.018) 48%,
            transparent 74%
        );
    transition: opacity 0.45s ease;
}

.plocal-category-card::after {
    position: absolute;
    z-index: 8;
    right: 28px;
    bottom: 0;
    left: 28px;
    height: 2px;
    content: "";
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--theme-color),
            transparent
        );
    transform: scaleX(0.25);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.plocal-category-card:hover {
    border-color: rgba(36, 189, 199, 0.45);
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.06),
            var(--color-white) 64%
        );
    box-shadow:
        0 28px 62px rgba(8, 29, 77, 0.12),
        0 0 27px rgba(36, 189, 199, 0.08);
    transform: translateY(-6px);
}

.plocal-category-card:hover::before {
    opacity: 1;
}

.plocal-category-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================================
   CARD GLOW
========================================================== */

.plocal-category-card-glow {
    position: absolute;
    z-index: 1;
    top: -150px;
    right: -145px;
    width: 310px;
    height: 310px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.22;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.25),
            transparent 68%
        );
    transform: scale(0.75);
    transition:
        opacity 0.5s ease,
        transform 0.8s ease;
}

.plocal-category-card:hover
.plocal-category-card-glow {
    opacity: 0.88;
    transform: scale(1.12);
}

/* ==========================================================
   CARD SHINE
========================================================== */

.plocal-category-card-shine {
    position: absolute;
    z-index: 7;
    top: -35%;
    bottom: -35%;
    left: -45%;
    width: 22%;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.72),
            transparent
        );
    filter: blur(5px);
    transform: skewX(-18deg);
}

.plocal-category-card:hover
.plocal-category-card-shine {
    animation:
        plocalCategoryCardShine
        0.9s
        ease
        forwards;
}

@keyframes plocalCategoryCardShine {
    0% {
        left: -45%;
        opacity: 0;
    }

    25% {
        opacity: 0.7;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

/* ==========================================================
   CARD NUMBER
========================================================== */

.plocal-category-number {
    position: absolute;
    z-index: 9;
    top: 20px;
    right: 21px;
    color: rgba(12, 44, 122, 0.17);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.plocal-category-card:hover
.plocal-category-number {
    color: var(--theme-color);
    transform: translateY(-3px);
}

/* ==========================================================
   IMAGE AREA
========================================================== */

.plocal-category-image-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 345px;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(36, 189, 199, 0.14),
            transparent 61%
        ),
        linear-gradient(
            145deg,
            var(--theme-color-light),
            rgba(255, 255, 255, 0.95)
        );
}

.plocal-category-image-wrap::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            transparent 28%,
            rgba(255, 255, 255, 0.28),
            transparent 67%
        );
    background-size: 230% 100%;
    animation:
        plocalCategoryImageLight
        8s
        linear
        infinite;
}

@keyframes plocalCategoryImageLight {
    from {
        background-position: 130% 0;
    }

    to {
        background-position: -130% 0;
    }
}

.plocal-category-image {
    position: relative;
    z-index: 4;
    display: block;
    width: 112%;
    height: 82%;
    max-width: 275px;
    max-height: 215px;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(
            0 22px 26px rgba(8, 29, 77, 0.1)
        );
    transform: scale(0.96);
    transition:
        filter 0.7s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.plocal-category-card:hover
.plocal-category-image {
    filter:
        saturate(1.08)
        drop-shadow(
            0 28px 32px rgba(8, 29, 77, 0.14)
        );
    transform:
        translateY(-7px)
        scale(1.045);
}

/* Blueprint grid */

.plocal-category-image-grid {
    position: absolute;
    z-index: 1;
    inset: 7%;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(36, 189, 199, 0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 189, 199, 0.15) 1px,
            transparent 1px
        );
    background-size: 23px 23px;
    mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 72%
        );
    -webkit-mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 72%
        );
    transition:
        opacity 0.5s ease,
        transform 0.8s ease;
}

.plocal-category-card:hover
.plocal-category-image-grid {
    opacity: 0.33;
    transform: scale(1.04);
}

/* Orbit */

.plocal-category-image-orbit {
    position: absolute;
    z-index: 2;
    width: min(76%, 215px);
    aspect-ratio: 1;
    border: 1px dashed rgba(36, 189, 199, 0.24);
    border-radius: 50%;
    animation:
        plocalCategoryImageOrbit
        22s
        linear
        infinite;
}

@keyframes plocalCategoryImageOrbit {
    to {
        transform: rotate(360deg);
    }
}

/* Light orbit dot */

.plocal-category-orbit-dot {
    position: absolute;
    z-index: 3;
    top: 25%;
    left: 17%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 17px rgba(36, 189, 199, 0.46);
    animation:
        plocalCategoryOrbitDotPulse
        2.5s
        ease-in-out
        infinite;
}

@keyframes plocalCategoryOrbitDotPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ==========================================================
   CARD BODY
========================================================== */

.plocal-category-card-body {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-width: 0;
    padding: 25px 21px;
}

/* ==========================================================
   HEADING
========================================================== */

.plocal-category-heading-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}

.plocal-category-title-group {
    min-width: 0;
}

.plocal-category-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--color-white);
    font-size: 19px;
    border: 1px solid rgba(36, 189, 199, 0.22);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            var(--theme-color2),
            var(--color-dark)
        );
    box-shadow:
        0 13px 27px rgba(12, 44, 122, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        border-color 0.42s ease,
        background 0.42s ease,
        box-shadow 0.42s ease,
        transform 0.42s ease;
}

.plocal-category-icon::before {
    position: absolute;
    inset: 6px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.plocal-category-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.plocal-category-card:hover
.plocal-category-icon {
    border-color: rgba(98, 211, 218, 0.58);
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 17px 33px rgba(36, 189, 199, 0.23),
        0 0 22px rgba(36, 189, 199, 0.12);
    transform:
        translateY(-3px)
        scale(1.035);
}

.plocal-category-card:hover
.plocal-category-icon i {
    transform: scale(1.09);
}

/* ==========================================================
   TEXT
========================================================== */

.plocal-category-eyebrow {
    display: block;
    margin-bottom: 5px;
    padding-right: 26px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.plocal-category-card h3 {
    max-width: 300px;
    margin: 0;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(19px, 1.18vw, 24px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

.plocal-category-description {
    max-width: 370px;
    margin: 0 0 14px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.6;
}

/* ==========================================================
   TAGS
========================================================== */

.plocal-category-tags {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 5px;
    margin-bottom: 15px;
}

.plocal-category-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 5px 8px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(12, 44, 122, 0.075);
    border-radius: 50px;
    background:
        linear-gradient(
            145deg,
            var(--color-gray),
            rgba(255, 255, 255, 0.96)
        );
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.plocal-category-card:hover
.plocal-category-tags span {
    border-color: rgba(36, 189, 199, 0.16);
    background: var(--theme-bg-light);
}

.plocal-category-tags span:hover {
    color: var(--color-white);
    border-color: var(--theme-color);
    background: var(--theme-color);
    transform: translateY(-2px);
}

/* ==========================================================
   LINK
========================================================== */

.plocal-category-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.plocal-category-link:hover {
    color: var(--theme-color);
}

.plocal-category-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: var(--theme-color);
    font-size: 9px;
    border: 1px solid rgba(36, 189, 199, 0.2);
    border-radius: 50%;
    background: var(--theme-bg-light);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.plocal-category-link:hover
.plocal-category-link-icon {
    color: var(--color-white);
    background: var(--theme-color);
    box-shadow:
        0 10px 21px rgba(36, 189, 199, 0.2);
    transform: translateX(5px);
}

/* ==========================================================
   LARGE DESKTOP ADJUSTMENTS
   Better spacing and proportions from 1300px to 1599px
========================================================== */

@media (min-width: 1300px) and (max-width: 1599px) {
    .plocal-category-grid {
        display: flex;
        gap: 20px;
        width: 100%;
        padding: 5px 3px 18px;
        overflow-x: auto;
        overflow-y: hidden;

        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 3px;
        overscroll-behavior-inline: contain;

        /* Subtle scrollbar */
        scrollbar-width: thin;
        scrollbar-color:
            rgba(36, 189, 199, 0.16)
            transparent;
    }

    .plocal-category-grid::-webkit-scrollbar {
        height: 4px;
    }

    .plocal-category-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .plocal-category-grid::-webkit-scrollbar-thumb {
        min-width: 90px;
        border-radius: 50px;
        background:
            linear-gradient(
                90deg,
                rgba(36, 189, 199, 0.04),
                rgba(36, 189, 199, 0.22),
                rgba(98, 211, 218, 0.15),
                rgba(36, 189, 199, 0.04)
            );
    }

    .plocal-category-grid::-webkit-scrollbar-thumb:hover {
        background:
            linear-gradient(
                90deg,
                rgba(36, 189, 199, 0.1),
                rgba(36, 189, 199, 0.38),
                rgba(98, 211, 218, 0.26),
                rgba(36, 189, 199, 0.1)
            );
    }

    .plocal-category-card {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
        min-height: 350px;

        grid-template-columns:
            minmax(190px, 0.38fr)
            minmax(0, 0.62fr);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .plocal-category-image-wrap {
        min-height: 350px;
    }

    .plocal-category-image {
        width: 100%;
        max-width: 245px;
        max-height: 215px;
    }

    .plocal-category-card-body {
        padding: 26px 24px;
    }

    .plocal-category-heading-row {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 13px;
        margin-bottom: 13px;
    }

    .plocal-category-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .plocal-category-card h3 {
        max-width: 340px;
        font-size: clamp(20px, 1.45vw, 25px);
        line-height: 1.18;
    }

    .plocal-category-eyebrow {
        font-size: 8px;
        letter-spacing: 0.9px;
    }

    .plocal-category-description {
        max-width: 430px;
        margin-bottom: 15px;
        font-size: 11px;
        line-height: 1.65;
    }

    .plocal-category-tags {
        gap: 6px;
        margin-bottom: 17px;
    }

    .plocal-category-tags span {
        min-height: 27px;
        padding: 6px 9px;
        font-size: 8px;
    }

    .plocal-category-link {
        font-size: 11px;
    }

    .plocal-category-link-icon {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1299px) {
    .plocal-category-grid {
        grid-template-columns: 1fr;
        max-width: 1050px;
    }

    .plocal-category-card {
        grid-template-columns:
            minmax(240px, 0.32fr)
            minmax(0, 0.68fr);
        min-height: 300px;
    }

    .plocal-category-image-wrap {
        min-height: 300px;
    }

    .plocal-category-image {
        max-width: 215px;
        max-height: 220px;
    }

    .plocal-category-card-body {
        padding: 27px 32px;
    }

    .plocal-category-heading-row {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 15px;
    }

    .plocal-category-icon {
        width: 58px;
        height: 58px;
        font-size: 21px;
    }

    .plocal-category-eyebrow {
        font-size: 9px;
    }

    .plocal-category-card h3 {
        max-width: 500px;
        font-size: 27px;
    }

    .plocal-category-description {
        max-width: 650px;
        font-size: 13px;
    }

    .plocal-category-tags {
        gap: 7px;
    }

    .plocal-category-tags span {
        min-height: 29px;
        padding: 7px 11px;
        font-size: 9px;
    }

    .plocal-category-link {
        font-size: 12px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 767px) {
    .plocal-categories {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .plocal-categories-shell {
        padding-right: 15px;
        padding-left: 15px;
    }

    .plocal-categories .site-title {
    font-size: var(--font-size-h2);
        letter-spacing: -1px;
    }

    .plocal-categories .plocal-section-intro {
        font-size: 15px;
    }

    .plocal-category-grid {
        gap: 18px;
    }

    .plocal-category-card {
        grid-template-columns: 1fr;
        grid-template-rows:
            215px
            auto;
        min-height: auto;
    }

    .plocal-category-image-wrap {
        min-height: 215px;
        border-radius: 24px 24px 0 0;
    }

    .plocal-category-image {
        max-width: 180px;
        max-height: 180px;
    }

    .plocal-category-card-body {
        padding: 25px 21px;
    }

    .plocal-categories-orbit-right,
    .plocal-categories-dot-field-right,
    .plocal-categories-bg-icon {
        display: none;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {
    .plocal-category-heading-row {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
    }

    .plocal-category-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .plocal-category-card h3 {
        font-size: 22px;
    }

    .plocal-category-description {
        font-size: 12px;
    }

    .plocal-category-tags {
        gap: 6px;
    }

    .plocal-category-tags span {
        min-height: 29px;
        padding: 7px 9px;
        font-size: 9px;
    }
}

/* ==========================================================
   TOUCH DEVICES
========================================================== */

@media (hover: none) {
    .plocal-category-card {
        border-color: rgba(36, 189, 199, 0.2);
    }

    .plocal-category-card-glow {
        opacity: 0.5;
    }

    .plocal-category-image-grid {
        opacity: 0.26;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .plocal-category-route,
    .plocal-categories-dot-field,
    .plocal-categories-orbit,
    .plocal-categories-light,
    .plocal-categories-bg-icon,
    .plocal-categories-scan,
    .plocal-category-image-wrap::after,
    .plocal-category-image-orbit,
    .plocal-category-orbit-dot,
    .plocal-category-card-shine {
        animation: none !important;
    }

    .plocal-category-moving-dot {
        display: none;
    }

    .plocal-category-card,
    .plocal-category-card-glow,
    .plocal-category-number,
    .plocal-category-image,
    .plocal-category-image-grid,
    .plocal-category-icon,
    .plocal-category-icon i,
    .plocal-category-tags span,
    .plocal-category-link-icon {
        transition: none;
    }
}

@media (min-width: 1300px) and (max-width: 1599px) {
    .plocal-category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .plocal-category-card {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }
}

/* ==========================================================
   PLOCAL — LOCAL DISCOVERY / SEO STRUCTURE
   FULL NAVY BACKGROUND + CSS VECTOR ANIMATIONS
========================================================== */

.plocal-seo {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: clamp(90px, 7vw, 125px);
    padding-bottom: clamp(90px, 7vw, 125px);
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(36, 189, 199, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 91% 75%,
            rgba(36, 189, 199, 0.07),
            transparent 31%
        ),
        radial-gradient(
            circle at 50% 15%,
            rgba(12, 44, 122, 0.75),
            transparent 46%
        ),
        linear-gradient(
            125deg,
            var(--theme-color2),
            var(--color-dark)
        );
}

/* Dark depth overlay */
.plocal-seo::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 29, 77, 0.08),
            rgba(8, 29, 77, 0.24)
        );
}

/* Bottom vignette */
.plocal-seo::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(5, 20, 58, 0.36)
        );
}

/* ==========================================================
   WIDE SHELL
========================================================== */

.plocal-seo-shell {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 1800px;
    padding-right: clamp(20px, 4vw, 74px);
    padding-left: clamp(20px, 4vw, 74px);
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================
   FULL BACKGROUND LAYER
========================================================== */

.plocal-seo-background {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ==========================================================
   SVG VECTOR ROUTES
========================================================== */

.plocal-seo-routes {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
}

.plocal-seo-route {
    fill: none;
    stroke: url("#plocal-seo-route-gradient");
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 14;
    opacity: 0.54;
    vector-effect: non-scaling-stroke;
    animation:
        plocalSeoRouteFlow
        17s
        linear
        infinite;
}

.plocal-seo-route-alt {
    opacity: 0.42;
    animation-duration: 23s;
    animation-direction: reverse;
}

.plocal-seo-route-soft {
    opacity: 0.27;
    animation-duration: 29s;
}

@keyframes plocalSeoRouteFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -250;
    }
}

/* Moving light particles */

.plocal-seo-moving-dot {
    fill: var(--theme-color);
    opacity: 1;
    filter: url("#plocal-seo-dot-glow");
}

.plocal-seo-moving-dot-small {
    fill: var(--color-skyblue);
    opacity: 0.85;
}

/* ==========================================================
   LEFT RADAR
========================================================== */

.plocal-seo-radar {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 245px;
    height: 245px;
}

.plocal-seo-radar-left {
    top: -30px;
    left: -32px;
}

.plocal-seo-radar-ring {
    position: absolute;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50%;
    animation:
        plocalSeoRadarPulse
        4.5s
        ease-out
        infinite;
}

.plocal-seo-radar-ring.ring-one {
    width: 90px;
    height: 90px;
}

.plocal-seo-radar-ring.ring-two {
    width: 155px;
    height: 155px;
    animation-delay: 0.8s;
}

.plocal-seo-radar-ring.ring-three {
    width: 225px;
    height: 225px;
    animation-delay: 1.6s;
}

@keyframes plocalSeoRadarPulse {
    0% {
        opacity: 0.75;
        transform: scale(0.84);
    }

    60% {
        opacity: 0.24;
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.plocal-seo-radar-icon {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    color: var(--color-white);
    font-size: 31px;
    border: 1px solid rgba(36, 189, 199, 0.65);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.26),
            rgba(12, 44, 122, 0.6)
        );
    box-shadow:
        0 0 24px rgba(36, 189, 199, 0.28);
    animation:
        plocalSeoRadarIconFloat
        4s
        ease-in-out
        infinite;
}

@keyframes plocalSeoRadarIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================================
   RIGHT GLOBE
========================================================== */

.plocal-seo-globe {
    position: absolute;
    z-index: 2;
    right: -90px;
    bottom: -135px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(36, 189, 199, 0.17);
    border-radius: 50%;
    opacity: 0.62;
    animation:
        plocalSeoGlobeFloat
        10s
        ease-in-out
        infinite;
}

@keyframes plocalSeoGlobeFloat {
    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-12px);
    }
}

.plocal-seo-globe-ring {
    position: absolute;
    border: 1px solid rgba(98, 211, 218, 0.14);
    border-radius: 50%;
}

.plocal-seo-globe-ring.globe-ring-one {
    inset: 45px;
}

.plocal-seo-globe-ring.globe-ring-two {
    inset: 95px;
}

.plocal-seo-globe-ring.globe-ring-three {
    inset: 145px;
}

.plocal-seo-globe-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(98, 211, 218, 0.18),
            transparent
        );
    transform-origin: center;
}

.plocal-seo-globe-line.globe-line-one {
    transform: translate(-50%, -50%) rotate(0deg);
}

.plocal-seo-globe-line.globe-line-two {
    transform: translate(-50%, -50%) rotate(28deg);
}

.plocal-seo-globe-line.globe-line-three {
    transform: translate(-50%, -50%) rotate(-28deg);
}

.plocal-seo-globe-location {
    position: absolute;
    top: 44%;
    left: 46%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    color: var(--color-skyblue);
    font-size: 29px;
    border-radius: 50%;
    background: rgba(12, 44, 122, 0.56);
    box-shadow:
        0 0 25px rgba(36, 189, 199, 0.25);
    animation:
        plocalSeoGlobePinPulse
        3.3s
        ease-in-out
        infinite;
}

@keyframes plocalSeoGlobePinPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ==========================================================
   FLOATING BACKGROUND ICONS
========================================================== */

.plocal-seo-bg-icon {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-skyblue);
    border: 1px solid rgba(98, 211, 218, 0.12);
    border-radius: 50%;
    background: rgba(12, 44, 122, 0.22);
    opacity: 0;
    animation:
        plocalSeoIconFade
        15s
        ease-in-out
        infinite;
}

.plocal-seo-bg-icon-map {
    top: 39%;
    left: 8%;
    width: 72px;
    height: 72px;
    font-size: 28px;
}

.plocal-seo-bg-icon-store {
    top: 18%;
    right: 14%;
    width: 75px;
    height: 75px;
    font-size: 28px;
    animation-delay: 5s;
}

.plocal-seo-bg-icon-list {
    right: 3%;
    bottom: 27%;
    width: 72px;
    height: 72px;
    font-size: 27px;
    animation-delay: 10s;
}

@keyframes plocalSeoIconFade {
    0%,
    14%,
    100% {
        opacity: 0;
        transform:
            translateY(12px)
            scale(0.92);
    }

    28%,
    52% {
        opacity: 0.23;
        transform:
            translateY(0)
            scale(1);
    }

    70% {
        opacity: 0;
        transform:
            translateY(-9px)
            scale(1.03);
    }
}

/* ==========================================================
   DOT FIELDS
========================================================== */

.plocal-seo-dot-field {
    position: absolute;
    z-index: 2;
    width: 220px;
    height: 220px;
    opacity: 0.19;
    background-image:
        radial-gradient(
            rgba(98, 211, 218, 0.65) 1.4px,
            transparent 1.4px
        );
    background-size: 18px 18px;
    animation:
        plocalSeoDotsMove
        8s
        ease-in-out
        infinite;
}

.plocal-seo-dot-field-left {
    left: 3%;
    bottom: 6%;
}

.plocal-seo-dot-field-right {
    top: 5%;
    right: 3%;
    animation-delay: 4s;
}

@keyframes plocalSeoDotsMove {
    0%,
    100% {
        opacity: 0.12;
        transform: translateY(0);
    }

    50% {
        opacity: 0.25;
        transform: translateY(-10px);
    }
}

/* ==========================================================
   CSS CITY SILHOUETTE
========================================================== */

.plocal-seo-city {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 360px;
    height: 175px;
    opacity: 0.13;
}

.plocal-seo-building {
    position: absolute;
    bottom: 0;
    display: block;
    border: 1px solid rgba(98, 211, 218, 0.22);
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 12px,
            rgba(98, 211, 218, 0.08) 12px,
            rgba(98, 211, 218, 0.08) 15px
        ),
        linear-gradient(
            180deg,
            rgba(12, 44, 122, 0.72),
            rgba(8, 29, 77, 0.96)
        );
}

.plocal-seo-building.building-one {
    left: 0;
    width: 70px;
    height: 70px;
}

.plocal-seo-building.building-two {
    left: 55px;
    width: 48px;
    height: 145px;
}

.plocal-seo-building.building-three {
    left: 95px;
    width: 74px;
    height: 90px;
}

.plocal-seo-building.building-four {
    left: 155px;
    width: 55px;
    height: 120px;
}

.plocal-seo-building.building-five {
    left: 205px;
    width: 90px;
    height: 60px;
}

.plocal-seo-building.building-six {
    left: 285px;
    width: 60px;
    height: 100px;
}

/* ==========================================================
   SCANNING LIGHT
========================================================== */

.plocal-seo-scan {
    position: absolute;
    z-index: 4;
    top: -20%;
    bottom: -20%;
    left: -38%;
    width: 17%;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.05),
            rgba(255, 255, 255, 0.035),
            transparent
        );
    filter: blur(8px);
    transform: skewX(-18deg);
    animation:
        plocalSeoScan
        14s
        ease-in-out
        infinite;
}

@keyframes plocalSeoScan {
    0%,
    15% {
        left: -38%;
        opacity: 0;
    }

    26% {
        opacity: 0.72;
    }

    63% {
        opacity: 0.42;
    }

    82%,
    100% {
        left: 115%;
        opacity: 0;
    }
}

/* ==========================================================
   SECTION HEADING
========================================================== */

.plocal-seo-heading {
    position: relative;
    z-index: 7;
    max-width: 1050px;
    margin: 0 auto clamp(43px, 4vw, 58px);
}

.plocal-seo-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 39px;
    padding: 5px 16px 5px 6px;
    margin-bottom: 21px;
    color: var(--color-white);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(36, 189, 199, 0.5);
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            rgba(36, 189, 199, 0.28),
            rgba(12, 44, 122, 0.55)
        );
    box-shadow:
        0 0 22px rgba(36, 189, 199, 0.11);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.plocal-seo-tagline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: var(--theme-color);
    font-size: 12px;
    border-radius: 50%;
    background: var(--color-white);
}

.plocal-seo-title {
    margin: 0 0 23px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.6px;
}

.plocal-seo-title span {
    display: block;
    color: var(--theme-color);
}

.plocal-seo-intro {
    max-width: 890px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--body-font);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.72;
}

.plocal-seo-intro strong {
    color: var(--color-white);
    font-weight: 700;
}

/* ==========================================================
   URL GRID
========================================================== */

.plocal-seo-grid {
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.7vw, 28px);
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* ==========================================================
   URL CARD — REFINED GLASS DESIGN
========================================================== */

.plocal-url-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
        "icon code"
        "icon line"
        "icon type";
    align-items: center;
    column-gap: 20px;
    min-width: 0;
    min-height: 184px;
    padding: clamp(24px, 2vw, 32px);
    overflow: hidden;
    border: 1px solid rgba(98, 211, 218, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(36, 189, 199, 0.11),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(12, 44, 122, 0.34) 42%,
            rgba(8, 29, 77, 0.62)
        );
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

/* Thin accent rail on the left */
.plocal-url-card::before {
    position: absolute;
    z-index: 3;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 3px;
    content: "";
    border-radius: 0 50px 50px 0;
    background:
        linear-gradient(
            180deg,
            transparent,
            var(--theme-color),
            var(--color-skyblue),
            transparent
        );
    opacity: 0.55;
    transform: scaleY(0.62);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* Fine inner frame */
.plocal-url-card::after {
    position: absolute;
    z-index: 1;
    inset: 7px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 14px;
}

.plocal-url-card-active {
    border-color: rgba(36, 189, 199, 0.62);
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(36, 189, 199, 0.16),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.1),
            rgba(12, 44, 122, 0.42) 44%,
            rgba(8, 29, 77, 0.66)
        );
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.19),
        0 0 26px rgba(36, 189, 199, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plocal-url-card:hover {
    border-color: rgba(98, 211, 218, 0.68);
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(36, 189, 199, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.1),
            rgba(12, 44, 122, 0.48) 46%,
            rgba(8, 29, 77, 0.7)
        );
    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.23),
        0 0 30px rgba(36, 189, 199, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.plocal-url-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Card glow */

.plocal-url-card-glow {
    position: absolute;
    z-index: 0;
    top: -120px;
    right: -115px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.2;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.34),
            transparent 68%
        );
    filter: blur(2px);
    transform: scale(0.72);
    transition:
        opacity 0.5s ease,
        transform 0.7s ease;
}

.plocal-url-card:hover
.plocal-url-card-glow {
    opacity: 0.75;
    transform: scale(1.15);
}

.plocal-url-card i {
    color: #ffffff !important;
    font-size: 20px;
}

/* Card shine */

.plocal-url-card-shine {
    position: absolute;
    z-index: 5;
    top: -30%;
    bottom: -30%;
    left: -45%;
    width: 19%;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );
    filter: blur(5px);
    transform: skewX(-18deg);
}

.plocal-url-card:hover
.plocal-url-card-shine {
    animation:
        plocalSeoCardShine
        0.85s
        ease
        forwards;
}

@keyframes plocalSeoCardShine {
    0% {
        left: -45%;
        opacity: 0;
    }

    30% {
        opacity: 0.65;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

/* ==========================================================
   CARD ICON
========================================================== */

.plocal-url-icon {
    position: relative;
    z-index: 4;
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 58px;
    height: 58px;
    margin: 0;
    color: var(--theme-color);
    font-size: 21px;
    border: 1px solid rgba(98, 211, 218, 0.25);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.2),
            rgba(12, 44, 122, 0.48)
        );
    box-shadow:
        0 13px 28px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.plocal-url-icon::before {
    position: absolute;
    inset: 6px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 11px;
}

.plocal-url-icon i {
    position: relative;
    z-index: 2;
}

.plocal-url-card:hover
.plocal-url-icon {
    color: var(--color-white);
    border-color: rgba(98, 211, 218, 0.58);
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 17px 34px rgba(36, 189, 199, 0.24),
        0 0 20px rgba(36, 189, 199, 0.12);
    transform:
        translateY(-3px)
        scale(1.045);
}

/* ==========================================================
   URL CODE
========================================================== */

.plocal-url-card code {
    position: relative;
    z-index: 4;
    grid-area: code;
    display: block;
    max-width: 100%;
    padding: 0 2px 0 0;
    overflow-wrap: anywhere;
    color: var(--color-white);
    font-family:
        "JetBrains Mono",
        "Courier New",
        monospace;
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.35px;
    background: transparent;
    text-shadow:
        0 1px 16px rgba(255, 255, 255, 0.05);
}

/* ==========================================================
   LIGHT LINE
========================================================== */

.plocal-url-light-line {
    position: relative;
    z-index: 4;
    grid-area: line;
    display: block;
    width: 100%;
    height: 1px;
    margin: 13px 0 12px;
    overflow: visible;
    background:
        linear-gradient(
            90deg,
            rgba(36, 189, 199, 0.04),
            rgba(36, 189, 199, 0.55),
            rgba(98, 211, 218, 0.08)
        );
}

.plocal-url-light-line i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-skyblue);
    box-shadow:
        0 0 6px var(--color-skyblue),
        0 0 15px rgba(36, 189, 199, 0.9);
    transform: translate(-50%, -50%);
    animation:
        plocalUrlLineDot
        4.3s
        ease-in-out
        infinite;
}

.plocal-url-card:nth-child(2)
.plocal-url-light-line i {
    animation-delay: 1.2s;
}

.plocal-url-card:nth-child(3)
.plocal-url-light-line i {
    animation-delay: 2.4s;
}

@keyframes plocalUrlLineDot {
    0% {
        left: 0;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ==========================================================
   CARD LABEL
========================================================== */

.plocal-url-type {
    position: relative;
    z-index: 4;
    grid-area: type;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(98, 211, 218, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.plocal-url-card:hover
.plocal-url-type {
    color: var(--color-white);
    border-color: rgba(98, 211, 218, 0.2);
    background: rgba(36, 189, 199, 0.09);
}


/* ==========================================================
   CTA
========================================================== */

.plocal-seo-action {
    position: relative;
    z-index: 7;
    margin-top: clamp(35px, 3vw, 48px);
}

.plocal-seo-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 64px;
    padding: 16px 29px;
    overflow: hidden;
    color: var(--color-white);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(98, 211, 218, 0.65);
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 17px 38px rgba(36, 189, 199, 0.24);
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.plocal-seo-button::before {
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -50%;
    width: 24%;
    content: "";
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent
        );
    filter: blur(4px);
    transform: skewX(-18deg);
}

.plocal-seo-button:hover {
    color: var(--color-white);
    box-shadow:
        0 22px 46px rgba(36, 189, 199, 0.34);
    transform: translateY(-4px);
}

.plocal-seo-button:hover::before {
    animation:
        plocalSeoButtonShine
        0.8s
        ease
        forwards;
}

@keyframes plocalSeoButtonShine {
    0% {
        left: -50%;
        opacity: 0;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.plocal-seo-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plocal-seo-button-arrow {
    margin-left: 3px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.plocal-seo-button:hover
.plocal-seo-button-arrow {
    transform: translateX(5px);
}

/* ==========================================================
   MEDIUM DESKTOP
========================================================== */

@media (max-width: 1399px) {
    .plocal-seo-shell {
        padding-right: 30px;
        padding-left: 30px;
    }

    .plocal-seo-grid {
        max-width: 1240px;
    }

    .plocal-url-card {
        min-height: 176px;
        padding: 25px;
    }

    .plocal-seo-radar-left {
        left: -80px;
    }

    .plocal-seo-globe {
        right: -165px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {
    .plocal-seo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }

    .plocal-url-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 14px);
        justify-self: center;
    }

    .plocal-seo-title {
    font-size: var(--font-size-h2);
    }

    .plocal-seo-radar {
        opacity: 0.55;
    }

    .plocal-seo-globe {
        opacity: 0.34;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {
    .plocal-seo {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .plocal-seo-shell {
        padding-right: 15px;
        padding-left: 15px;
    }

    .plocal-seo-heading {
        margin-bottom: 37px;
    }

    .plocal-seo-title {
    font-size: var(--font-size-h2);
        letter-spacing: -1.3px;
    }

    .plocal-seo-title span {
        display: block;
    }

    .plocal-seo-intro {
        font-size: 15px;
    }

    .plocal-seo-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .plocal-url-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .plocal-url-card {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 16px;
        min-height: 168px;
        padding: 23px 20px;
    }

    .plocal-url-icon {
        width: 52px;
        height: 52px;
    }

    .plocal-url-card code {
        padding-right: 0;
        font-size: 17px;
    }

    .plocal-seo-radar-left {
        top: -70px;
        left: -105px;
        transform: scale(0.72);
    }

    .plocal-seo-globe {
        right: -250px;
        bottom: -205px;
        transform: scale(0.76);
    }

    .plocal-seo-city {
        opacity: 0.07;
    }

    .plocal-seo-bg-icon {
        display: none;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {
    .plocal-seo-title {
    font-size: var(--font-size-h2);
    }

    .plocal-seo-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .plocal-url-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "code"
            "line"
            "type";
        row-gap: 0;
    }

    .plocal-url-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .plocal-seo-button {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 14px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .plocal-seo-route,
    .plocal-seo-radar-ring,
    .plocal-seo-radar-icon,
    .plocal-seo-globe,
    .plocal-seo-globe-location,
    .plocal-seo-bg-icon,
    .plocal-seo-dot-field,
    .plocal-seo-scan,
    .plocal-url-card-shine,
    .plocal-url-light-line i {
        animation: none !important;
    }

    .plocal-seo-moving-dot {
        display: none;
    }

    .plocal-url-card,
    .plocal-url-card-glow,
    .plocal-url-icon,
    .plocal-seo-button,
    .plocal-seo-button-arrow {
        transition: none;
    }
}


/* ==========================================================
   PLOCAL — CATEGORIES FAQ
========================================================== */

.plocal-categories-faq {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 6% 18%,
            rgba(36, 189, 199, 0.055),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 82%,
            rgba(12, 44, 122, 0.035),
            transparent 28%
        ),
        var(--color-white);
}

/* ==========================================================
   WIDE CONTAINER
========================================================== */

.plocal-categories-faq-shell {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1840px;
    padding-right: clamp(18px, 3.5vw, 68px);
    padding-left: clamp(18px, 3.5vw, 68px);
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.plocal-categories-faq-bg {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.plocal-categories-faq-orbit {
    position: absolute;
    border: 1px solid rgba(36, 189, 199, 0.075);
    border-radius: 50%;
    animation:
        plocalFaqOrbitFloat
        14s
        ease-in-out
        infinite;
}

.plocal-categories-faq-orbit::before,
.plocal-categories-faq-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(12, 44, 122, 0.035);
    border-radius: inherit;
}

.plocal-categories-faq-orbit::before {
    inset: 42px;
}

.plocal-categories-faq-orbit::after {
    inset: 84px;
}

.plocal-categories-faq-orbit-one {
    top: -390px;
    left: -370px;
    width: 720px;
    height: 720px;
}

.plocal-categories-faq-orbit-two {
    right: -420px;
    bottom: -450px;
    width: 790px;
    height: 790px;
    animation-delay: 5s;
}

@keyframes plocalFaqOrbitFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(5deg);
    }
}

/* Dot fields */

.plocal-categories-faq-dots {
    position: absolute;
    width: 210px;
    height: 210px;
    opacity: 0.24;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.32) 1.4px,
            transparent 1.4px
        );
    background-size: 18px 18px;
    animation:
        plocalFaqDotsFloat
        9s
        ease-in-out
        infinite;
}

.plocal-categories-faq-dots-one {
    top: 8%;
    right: 3%;
}

.plocal-categories-faq-dots-two {
    bottom: 4%;
    left: 2%;
    animation-delay: 4.5s;
}

@keyframes plocalFaqDotsFloat {
    0%,
    100% {
        opacity: 0.15;
        transform: translateY(0);
    }

    50% {
        opacity: 0.32;
        transform: translateY(-10px);
    }
}

/* Floating lights */

.plocal-categories-faq-light {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 18px rgba(36, 189, 199, 0.42);
    animation:
        plocalFaqLightPulse
        4s
        ease-in-out
        infinite;
}

.plocal-categories-faq-light-one {
    top: 17%;
    left: 8%;
}

.plocal-categories-faq-light-two {
    right: 12%;
    bottom: 12%;
    animation-delay: 2s;
}

@keyframes plocalFaqLightPulse {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.7);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.45);
    }
}

/* Vector route */

.plocal-categories-faq-route {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
}

.plocal-categories-faq-route path {
    fill: none;
    stroke: rgba(36, 189, 199, 0.13);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 15;
    vector-effect: non-scaling-stroke;
    animation:
        plocalFaqRouteMove
        22s
        linear
        infinite;
}

@keyframes plocalFaqRouteMove {
    to {
        stroke-dashoffset: -260;
    }
}

/* ==========================================================
   TWO-COLUMN LAYOUT
========================================================== */

.plocal-categories-faq-layout {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.84fr)
        minmax(0, 1.16fr);
    align-items: center;
    gap: clamp(48px, 6vw, 105px);
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
}

/* ==========================================================
   LEFT VISUAL
========================================================== */

.plocal-categories-faq-visual {
    position: relative;
    min-width: 0;
}

.plocal-categories-faq-image-card {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 610px;
    padding: clamp(35px, 4vw, 64px);
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(36, 189, 199, 0.13),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(217, 245, 247, 0.48),
            rgba(255, 255, 255, 0.96)
        );
    box-shadow:
        0 30px 75px rgba(8, 29, 77, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Image inner frame */

.plocal-categories-faq-image-card::before {
    position: absolute;
    z-index: 0;
    inset: 14px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(36, 189, 199, 0.08);
    border-radius: 23px;
}

/* Animated glow */

.plocal-categories-faq-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.18),
            transparent 67%
        );
    transform: translate(-50%, -50%);
    animation:
        plocalFaqImageGlow
        5s
        ease-in-out
        infinite;
}

@keyframes plocalFaqImageGlow {
    0%,
    100% {
        opacity: 0.55;
        transform:
            translate(-50%, -50%)
            scale(0.92);
    }

    50% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.08);
    }
}

/* Image grid */

.plocal-categories-faq-image-grid {
    position: absolute;
    z-index: 1;
    inset: 8%;
    opacity: 0.21;
    background-image:
        linear-gradient(
            rgba(36, 189, 199, 0.14) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 189, 199, 0.14) 1px,
            transparent 1px
        );
    background-size: 31px 31px;
    mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 72%
        );
    -webkit-mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 72%
        );
}

/* Image orbit */

.plocal-categories-faq-image-orbit {
    position: absolute;
    z-index: 2;
    width: 72%;
    aspect-ratio: 1;
    border: 1px dashed rgba(36, 189, 199, 0.24);
    border-radius: 50%;
    animation:
        plocalFaqImageOrbit
        24s
        linear
        infinite;
}

.plocal-categories-faq-image-orbit::before {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 9px;
    height: 9px;
    content: "";
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 19px rgba(36, 189, 199, 0.5);
}

@keyframes plocalFaqImageOrbit {
    to {
        transform: rotate(360deg);
    }
}

/* Main image */

.plocal-categories-faq-image {
    position: relative;
    z-index: 4;
    display: block;
    width: min(117%, 620px);
    max-height: 670px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 30px 34px rgba(8, 29, 77, 0.13)
        );
    animation:
        plocalFaqImageFloat
        5s
        ease-in-out
        infinite;
}

@keyframes plocalFaqImageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Floating information card */

.plocal-categories-faq-floating-card {
    position: absolute;
    z-index: 6;
    right: 25px;
    bottom: 28px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    width: min(310px, calc(100% - 50px));
    padding: 16px 18px;
    border: 1px solid rgba(36, 189, 199, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 18px 40px rgba(8, 29, 77, 0.11);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation:
        plocalFaqCardFloat
        5.5s
        ease-in-out
        infinite;
}

@keyframes plocalFaqCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.plocal-categories-faq-floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-white);
    font-size: 19px;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 12px 25px rgba(36, 189, 199, 0.21);
}

.plocal-categories-faq-floating-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
}

.plocal-categories-faq-floating-card small {
    display: block;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.45;
}

/* Mini cards */

.plocal-categories-faq-mini-card {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 12px 27px rgba(8, 29, 77, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plocal-categories-faq-mini-card i {
    color: var(--theme-color);
}

.plocal-categories-faq-mini-card-one {
    top: 34px;
    left: 26px;
    animation:
        plocalFaqMiniOne
        4.8s
        ease-in-out
        infinite;
}

.plocal-categories-faq-mini-card-two {
    top: 94px;
    right: 24px;
    animation:
        plocalFaqMiniTwo
        5.3s
        ease-in-out
        infinite;
}

@keyframes plocalFaqMiniOne {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-7px) rotate(1deg);
    }
}

@keyframes plocalFaqMiniTwo {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Visual note */

.plocal-categories-faq-visual-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    max-width: 560px;
    padding: 20px 5px 0;
    margin: 0 auto;
}

.plocal-categories-faq-visual-note > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--theme-bg-light);
}

.plocal-categories-faq-visual-note p {
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.65;
}

/* ==========================================================
   RIGHT CONTENT
========================================================== */

.plocal-categories-faq-content {
    min-width: 0;
}

.plocal-categories-faq-heading {
    max-width: 760px;
    margin-bottom: clamp(31px, 3vw, 42px);
}

.plocal-categories-faq .site-title-tagline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 8px;
    margin-bottom: 17px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50px;
    background: var(--theme-color-light);
}

.plocal-categories-faq .site-title-tagline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-white);
    font-size: 11px;
    border-radius: 50%;
    background: var(--theme-color);
}

.plocal-categories-faq .site-title {
    margin: 0 0 18px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.plocal-categories-faq .site-title span {
    display: block;
    color: var(--theme-color);
}

.plocal-categories-faq-intro {
    max-width: 680px;
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================
   ACCORDION
========================================================== */

.plocal-categories-faq-accordion {
    display: grid;
    gap: 13px;
}

/* Individual item */

.plocal-categories-faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 251, 255, 0.88)
        );
    box-shadow:
        0 13px 34px rgba(8, 29, 77, 0.055);
    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.plocal-categories-faq-item::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 3px;
    content: "";
    border-radius: 0 50px 50px 0;
    background:
        linear-gradient(
            180deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    opacity: 0;
    transform: scaleY(0.45);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.plocal-categories-faq-item:hover {
    border-color: rgba(36, 189, 199, 0.22);
    box-shadow:
        0 17px 39px rgba(8, 29, 77, 0.075);
    transform: translateX(3px);
}

.plocal-categories-faq-item.is-open {
    border-color: rgba(36, 189, 199, 0.42);
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.055),
            rgba(255, 255, 255, 0.98) 67%
        );
    box-shadow:
        0 20px 45px rgba(8, 29, 77, 0.09),
        0 0 25px rgba(36, 189, 199, 0.055);
}

.plocal-categories-faq-item.is-open::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Remove default heading margin */

.plocal-categories-faq-question {
    margin: 0;
}

/* Accordion button */

.plocal-categories-faq-trigger {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 21px;
    color: var(--theme-color2);
    text-align: left;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
}

.plocal-categories-faq-trigger:focus-visible {
    outline: 3px solid rgba(36, 189, 199, 0.22);
    outline-offset: -3px;
}

/* Question number */

.plocal-categories-faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(36, 189, 199, 0.15);
    border-radius: 12px;
    background: var(--theme-bg-light);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.plocal-categories-faq-item.is-open
.plocal-categories-faq-number {
    color: var(--color-white);
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    transform: scale(1.04);
}

/* Question text */

.plocal-categories-faq-question-text {
    font-family: var(--heading-font);
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 700;
    line-height: 1.4;
}

/* Plus button */

.plocal-categories-faq-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--theme-color);
    font-size: 13px;
    border: 1px solid rgba(36, 189, 199, 0.17);
    border-radius: 50%;
    background: var(--theme-bg-light);
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.4s ease;
}

.plocal-categories-faq-trigger:hover
.plocal-categories-faq-toggle {
    border-color: rgba(36, 189, 199, 0.4);
    box-shadow:
        0 9px 20px rgba(36, 189, 199, 0.12);
}

.plocal-categories-faq-item.is-open
.plocal-categories-faq-toggle {
    color: var(--color-white);
    border-color: var(--theme-color);
    background: var(--theme-color);
    box-shadow:
        0 11px 24px rgba(36, 189, 199, 0.2);
    transform: rotate(45deg);
}

/* ==========================================================
   ANSWER PANEL
========================================================== */

.plocal-categories-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows 0.45s ease,
        visibility 0.45s ease,
        opacity 0.35s ease;
}

.plocal-categories-faq-item.is-open
.plocal-categories-faq-panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

.plocal-categories-faq-answer {
    min-height: 0;
    overflow: hidden;
    padding: 0 80px 0 75px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.72;
    transition: padding 0.45s ease;
}

.plocal-categories-faq-item.is-open
.plocal-categories-faq-answer {
    padding-top: 0;
    padding-bottom: 23px;
}

.plocal-categories-faq-answer p {
    margin: 0;
}

/* Answer link */

.plocal-categories-faq-answer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
}

.plocal-categories-faq-answer-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.plocal-categories-faq-answer-link:hover {
    color: var(--theme-color2);
}

.plocal-categories-faq-answer-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1199px) {
    .plocal-categories-faq-layout {
        grid-template-columns:
            minmax(330px, 0.78fr)
            minmax(0, 1.22fr);
        gap: 45px;
    }

    .plocal-categories-faq-image-card {
        min-height: 550px;
    }

    .plocal-categories-faq-trigger {
        gap: 13px;
        padding: 18px;
    }

    .plocal-categories-faq-answer {
        padding-right: 68px;
        padding-left: 69px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {
    .plocal-categories-faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .plocal-categories-faq-visual {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .plocal-categories-faq-content {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .plocal-categories-faq-heading {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .plocal-categories-faq-intro {
        margin-right: auto;
        margin-left: auto;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {
    .plocal-categories-faq {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .plocal-categories-faq-shell {
        padding-right: 15px;
        padding-left: 15px;
    }

    .plocal-categories-faq-image-card {
        min-height: 440px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .plocal-categories-faq-floating-card {
        right: 16px;
        bottom: 18px;
        left: 16px;
        width: auto;
    }

    .plocal-categories-faq-mini-card-two {
        display: none;
    }

    .plocal-categories-faq .site-title {
    font-size: var(--font-size-h2);
        letter-spacing: -1px;
    }

    .plocal-categories-faq-intro {
        font-size: 15px;
    }

    .plocal-categories-faq-trigger {
        grid-template-columns: 35px minmax(0, 1fr) 38px;
        gap: 11px;
        padding: 17px 15px;
    }

    .plocal-categories-faq-number {
        width: 35px;
        height: 35px;
    }

    .plocal-categories-faq-toggle {
        width: 38px;
        height: 38px;
    }

    .plocal-categories-faq-question-text {
        font-size: 15px;
    }

    .plocal-categories-faq-answer {
        padding-right: 57px;
        padding-left: 61px;
        font-size: 13px;
    }

    .plocal-categories-faq-item.is-open
    .plocal-categories-faq-answer {
        padding-bottom: 20px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {
    .plocal-categories-faq-image-card {
        min-height: 390px;
    }

    .plocal-categories-faq-mini-card {
        display: none;
    }

    .plocal-categories-faq-floating-card {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 13px;
    }

    .plocal-categories-faq-floating-icon {
        width: 42px;
        height: 42px;
    }

    .plocal-categories-faq-trigger {
        grid-template-columns: minmax(0, 1fr) 38px;
    }

    .plocal-categories-faq-number {
        display: none;
    }

    .plocal-categories-faq-answer {
        padding-right: 53px;
        padding-left: 15px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .plocal-categories-faq-orbit,
    .plocal-categories-faq-dots,
    .plocal-categories-faq-light,
    .plocal-categories-faq-route path,
    .plocal-categories-faq-image-glow,
    .plocal-categories-faq-image-orbit,
    .plocal-categories-faq-image,
    .plocal-categories-faq-floating-card,
    .plocal-categories-faq-mini-card {
        animation: none !important;
    }

    .plocal-categories-faq-item,
    .plocal-categories-faq-number,
    .plocal-categories-faq-toggle,
    .plocal-categories-faq-panel,
    .plocal-categories-faq-answer {
        transition: none;
    }
}
