/* ==========================================================
   PLOCAL — HOW IT WORKS
========================================================== */

.plocal-steps {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(36, 189, 199, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(36, 189, 199, 0.1),
            transparent 28%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(98, 211, 218, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06183e 0%,
            var(--footer-bg, #071c4a) 48%,
            var(--theme-color2, #0c2c7a) 100%
        );
}

/* Decorative background curves */

.plocal-steps::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: -180px;
    bottom: -360px;
    width: 720px;
    height: 520px;
    pointer-events: none;
    border: 2px solid rgba(36, 189, 199, 0.08);
    border-radius: 50%;
    transform: rotate(8deg);
}

.plocal-steps::after {
    position: absolute;
    content: "";
    z-index: -1;
    right: -190px;
    bottom: -350px;
    width: 680px;
    height: 500px;
    pointer-events: none;
    border: 2px solid rgba(98, 211, 218, 0.07);
    border-radius: 50%;
    transform: rotate(-10deg);
}

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

.plocal-steps-heading {
    margin-bottom: 0;
}

.plocal-steps .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 8px 18px 8px 8px;
    margin-bottom: 22px;
    color: var(--color-white, #ffffff);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(98, 211, 218, 0.4);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.035);
}

.plocal-steps .site-title-tagline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--theme-color, #24bdc7);
    font-size: 14px;
    background: var(--color-white, #ffffff);
    border-radius: 50%;
}

.plocal-steps .site-title {
    margin: 0;
    color: var(--color-white, #ffffff);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.plocal-steps .site-title span {
    color: var(--theme-color, #24bdc7);
}

.plocal-section-intro {
    max-width: 770px;
    margin: 20px auto 48px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

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

.plocal-steps-grid > div {
    display: flex;
}

/* ==========================================================
   STEP CARD
========================================================== */
.plocal-step h3 {
    font-size: 18px;
    color: var(--color-white, #ffffff) !important;
    margin-bottom: 10px !important;
}

.plocal-step {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 510px;
    padding: 28px 28px 0;
    overflow: hidden;
    border: 1px solid rgba(111, 174, 219, 0.28);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(36, 189, 199, 0.06),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            rgba(9, 43, 96, 0.98) 0%,
            rgba(5, 29, 72, 0.98) 100%
        ) !important;
    box-shadow:
        0 25px 55px rgba(0, 0, 28, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.plocal-step:hover {
    transform: translateY(-8px);
    border-color: var(--theme-color, #24bdc7);
    box-shadow:
        0 30px 65px rgba(0, 0, 28, 0.34),
        0 0 0 1px rgba(36, 189, 199, 0.14),
        0 0 28px rgba(36, 189, 199, 0.1);
}

/* ==========================================================
   ICON AND NUMBER
========================================================== */

.plocal-step-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

/*
Icon keeps the same visual concept as the original:
rounded light-colored circle with the Font Awesome icon centered.
*/

.plocal-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    color: var(--theme-color, #24bdc7);
    font-size: 25px;
    border: 1px solid rgba(98, 211, 218, 0.16);
    border-radius: 50%;
    background: rgba(217, 245, 247, 0.1);
    box-shadow:
        inset 0 0 22px rgba(36, 189, 199, 0.07),
        0 8px 22px rgba(0, 0, 28, 0.08);
}

.plocal-step-num {
    display: inline-block;
    color: rgba(98, 211, 218, 0.82);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.plocal-step:hover .plocal-step-num {
    color: var(--theme-color, #24bdc7);
    transform: translateY(-2px);
}

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

.plocal-step-content {
    position: relative;
    z-index: 3;
}

.plocal-step h3 {
    margin-bottom: 12px;
    color: var(--color-white, #ffffff);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.plocal-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
}

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

.plocal-step-image {
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: calc(100% + 56px);
    min-height: 205px;
    margin-right: -28px;
    margin-left: -28px;
    overflow: hidden;
    pointer-events: none;
}

/*
This gradient separates the paragraph from the image without
creating another rectangular area inside the card.
*/

.plocal-step-image::before {
    position: absolute;
    content: "";
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(5, 29, 72, 1) 0%,
        rgba(5, 29, 72, 0.72) 18%,
        rgba(5, 29, 72, 0.15) 52%,
        transparent 100%
    );
}

.plocal-step-image img {
    display: block;
    width: calc(100% - 30px);
    max-width: 340px;
    height: 205px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.28;
    filter:
        grayscale(1)
        sepia(0.2)
        hue-rotate(145deg)
        saturate(1.5)
        brightness(0.78);
    transform: translateY(18px) scale(0.96);
    transition:
        opacity 0.5s ease,
        filter 0.5s ease,
        transform 0.5s ease;
}

.plocal-step:hover .plocal-step-image img {
    opacity: 1;
    filter:
        grayscale(0)
        sepia(0)
        hue-rotate(0deg)
        saturate(1)
        brightness(1);
    transform: translateY(4px) scale(1);
}

/* ==========================================================
   OPTIONAL ACTIVE CARD
   Add class="plocal-step is-active" to any card
========================================================== */

.plocal-step.is-active {
    border-color: var(--theme-color, #24bdc7);
    box-shadow:
        0 30px 65px rgba(0, 0, 28, 0.34),
        0 0 0 1px rgba(36, 189, 199, 0.16),
        0 0 30px rgba(36, 189, 199, 0.12);
}

.plocal-step.is-active .plocal-step-image img {
    opacity: 1;
    filter: none;
    transform: translateY(4px) scale(1);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1199px) {
    .plocal-step {
        min-height: 500px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .plocal-step-image {
        width: calc(100% + 48px);
        margin-right: -24px;
        margin-left: -24px;
    }

    .plocal-step h3 {
        font-size: 19px;
    }

    .plocal-step p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .plocal-section-intro {
        margin-bottom: 40px;
    }

    .plocal-step {
        min-height: 490px;
    }
}

@media (max-width: 767px) {
    .plocal-steps .site-title {
        font-size: var(--font-size-h2);
        letter-spacing: -1px;
    }

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

    .plocal-step {
        min-height: 480px;
    }

    .plocal-step-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .plocal-step-num {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .plocal-step {
        padding-right: 22px;
        padding-left: 22px;
    }

    .plocal-step-image {
        width: calc(100% + 44px);
        margin-right: -22px;
        margin-left: -22px;
    }
}

/* Show images on devices without hover */

@media (hover: none) {
    .plocal-step-image img {
        opacity: 0.55;
        filter:
            grayscale(0.35)
            saturate(0.75)
            brightness(0.85);
        transform: translateY(5px) scale(0.98);
    }
}

/* Reduced motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .plocal-step,
    .plocal-step-num,
    .plocal-step-image img {
        transition: none;
    }
}

/* =========================================================
   PLOCAL — TWO AUDIENCES
========================================================= */

.plocal-audiences {
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 5% 48%,
            rgba(36, 189, 199, 0.09),
            transparent 22%
        ),
        radial-gradient(
            circle at 95% 48%,
            rgba(12, 44, 122, 0.07),
            transparent 24%
        ),
        var(--color-white, #ffffff);
}

/* Decorative dot groups */

.plocal-audiences::before,
.plocal-audiences::after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 145px;
    height: 145px;
    pointer-events: none;
    opacity: 0.32;
    background-image: radial-gradient(
        circle,
        var(--theme-color, #24bdc7) 2px,
        transparent 2.5px
    );
    background-size: 20px 20px;
}

.plocal-audiences::before {
    top: 42px;
    right: 45px;
}

.plocal-audiences::after {
    left: 35px;
    bottom: 22px;
}

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

.plocal-audiences-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 48px;
}

.plocal-audiences .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 14px 7px 8px;
    margin-bottom: 18px;
    color: var(--color-white, #ffffff);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    background: var(--theme-color, #24bdc7);
}

.plocal-audiences .site-title-tagline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: var(--theme-color, #24bdc7);
    font-size: 13px;
    border-radius: 50%;
    background: var(--color-white, #ffffff);
}

.plocal-audiences .site-title {
    margin-bottom: 0;
    color: var(--theme-color2, #0c2c7a);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -2px;
}

.plocal-audiences .site-title span {
    color: var(--theme-color, #24bdc7);
}

/* =========================================================
   STAGE AND CENTRAL CONNECTOR
========================================================= */

.plocal-audiences-stage {
    position: relative;
}

.plocal-audiences-bridge {
    position: absolute;
    z-index: 5;
    top: 51%;
    left: 50%;
    width: 260px;
    height: 260px;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.plocal-audiences-bridge-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.plocal-bridge-line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4 9;
}

.plocal-bridge-line-left {
    stroke: var(--theme-color, #24bdc7);
}

.plocal-bridge-line-right {
    stroke: var(--theme-color2, #0c2c7a);
}

.plocal-audiences-bridge-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 102px;
    height: 102px;
    border: 10px solid rgba(36, 189, 199, 0.08);
    border-radius: 50%;
    background: var(--color-white, #ffffff);
    box-shadow:
        0 20px 45px rgba(7, 28, 74, 0.14),
        0 0 0 1px rgba(36, 189, 199, 0.12);
    transform: translate(-50%, -50%);
}

.plocal-audiences-bridge-circle span {
    color: var(--theme-color, #24bdc7);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

/* =========================================================
   AUDIENCE CARD
========================================================= */

.plocal-audience-card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 585px;
    padding: 38px 38px 36px;
    overflow: hidden;
    border: 1px solid rgba(12, 44, 122, 0.08);
    border-radius: 22px;
    background: var(--color-white, #ffffff);
    box-shadow:
        0 26px 65px rgba(7, 28, 74, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.plocal-audience-card::before {
    position: absolute;
    content: "";
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.plocal-audience-card-customers::before {
    background: var(--theme-color, #24bdc7);
}

.plocal-audience-card-owners::before {
    background: var(--theme-color2, #0c2c7a);
}

.plocal-audience-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 34px 80px rgba(7, 28, 74, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.plocal-audience-card-customers:hover {
    border-color: rgba(36, 189, 199, 0.35);
}

.plocal-audience-card-owners:hover {
    border-color: rgba(12, 44, 122, 0.26);
}

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

.plocal-audience-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.plocal-audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    font-size: 27px;
    border-radius: 17px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.plocal-audience-card-customers .plocal-audience-icon {
    color: var(--theme-color, #24bdc7);
    background: rgba(36, 189, 199, 0.09);
}

.plocal-audience-card-owners .plocal-audience-icon {
    color: var(--theme-color2, #0c2c7a);
    background: rgba(12, 44, 122, 0.07);
}

.plocal-audience-card:hover .plocal-audience-icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(7, 28, 74, 0.1);
}

.plocal-audience-card h3 {
    position: relative;
    z-index: 3;
    max-width: 76%;
    margin-bottom: 14px;
    color: var(--theme-color2, #0c2c7a);
    font-family: var(--heading-font, "Montserrat", sans-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.plocal-audience-card p {
    position: relative;
    z-index: 3;
    max-width: 76%;
    margin-bottom: 26px;
    color: var(--body-text-color, #667085);
    font-size: 15px;
    line-height: 1.9;
}

.plocal-audience-card p strong {
    color: var(--theme-color2, #0c2c7a);
    font-weight: 700;
}

/* =========================================================
   FEATURE LIST
========================================================= */

.plocal-audience-list {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 78%;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.plocal-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--theme-color2, #0c2c7a);
    font-size: 15px;
    line-height: 1.55;
}

.plocal-audience-list li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--theme-color, #24bdc7);
    font-size: 16px;
}

/* =========================================================
   BUTTONS
========================================================= */

.plocal-audiences .plocal-audience-btn {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    gap: 16px;
    min-height: 54px;
    padding: 13px 24px;
    margin-top: auto;
    overflow: hidden;
    color: var(--color-white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    border: 0;
    border-radius: 50px;
    box-shadow: 0 14px 30px rgba(7, 28, 74, 0.15);
}

.plocal-audiences .plocal-audience-card-customers .plocal-audience-btn {
    background: var(--theme-color, #24bdc7);
}

.plocal-audiences .plocal-audience-card-owners .plocal-audience-btn {
    background: var(--theme-color2, #0c2c7a);
}

.plocal-audiences .plocal-audience-btn::before,
.plocal-audiences .plocal-audience-btn::after {
    display: none;
}

.plocal-audiences .plocal-audience-btn span,
.plocal-audiences .plocal-audience-btn i {
    position: relative;
    z-index: 2;
}

.plocal-audiences .plocal-audience-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.plocal-audiences .plocal-audience-btn:hover {
    color: var(--color-white, #ffffff);
    transform: translateY(-2px);
}

.plocal-audiences .plocal-audience-btn:hover i {
    transform: translateX(4px);
}

/* =========================================================
   CARD ILLUSTRATIONS
========================================================= */

.plocal-audience-visual {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 285px;
    height: 260px;
    pointer-events: none;
}

.plocal-audience-visual-glow {
    position: absolute;
    z-index: -1;
    right: 10px;
    bottom: 4px;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(1px);
}

.plocal-audience-visual-customers .plocal-audience-visual-glow {
    background: radial-gradient(
        circle,
        rgba(36, 189, 199, 0.14),
        transparent 68%
    );
}

.plocal-audience-visual-owners .plocal-audience-visual-glow {
    background: radial-gradient(
        circle,
        rgba(12, 44, 122, 0.1),
        transparent 68%
    );
}

.plocal-audience-visual img {
    display: block;
    width: 100%;
    max-width: 280px;
    max-height: 255px;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.88;
    transform: translateY(7px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        filter 0.45s ease;
}

.plocal-audience-card:hover .plocal-audience-visual img {
    opacity: 1;
    filter: saturate(1.08);
    transform: translateY(0) scale(1.02);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .plocal-audience-card {
        min-height: 590px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .plocal-audience-card h3,
    .plocal-audience-card p,
    .plocal-audience-list {
        max-width: 82%;
    }

    .plocal-audience-visual {
        right: 4px;
        width: 245px;
        height: 225px;
    }

    .plocal-audience-visual img {
        max-width: 235px;
        max-height: 220px;
    }

    .plocal-audiences-bridge {
        width: 210px;
    }

    .plocal-audiences-bridge-circle {
        width: 88px;
        height: 88px;
        border-width: 8px;
    }

    .plocal-audiences-bridge-circle span {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .plocal-audiences-heading {
        margin-bottom: 38px;
    }

    .plocal-audiences-bridge {
        display: none;
    }

    .plocal-audience-card {
        min-height: 560px;
    }

    .plocal-audience-card h3,
    .plocal-audience-card p {
        max-width: 72%;
    }

    .plocal-audience-list {
        max-width: 75%;
    }

    .plocal-audience-visual {
        width: 280px;
        height: 255px;
    }

    .plocal-audience-visual img {
        max-width: 270px;
        max-height: 250px;
    }
}

@media (max-width: 767px) {
    .plocal-audiences .site-title {
        font-size: var(--font-size-h2);
        letter-spacing: -1px;
    }

    .plocal-audience-card {
        min-height: 660px;
        padding: 30px 26px;
    }

    .plocal-audience-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .plocal-audience-card h3 {
        max-width: 100%;
        font-size: 24px;
    }

    .plocal-audience-card p,
    .plocal-audience-list {
        max-width: 100%;
    }

    .plocal-audience-visual {
        right: 50%;
        bottom: 18px;
        width: 270px;
        height: 220px;
        transform: translateX(50%);
    }

    .plocal-audience-visual img {
        max-width: 260px;
        max-height: 215px;
        object-position: center bottom;
    }

    .plocal-audiences .plocal-audience-btn {
        margin-bottom: 230px;
    }
}

@media (max-width: 480px) {
    .plocal-audiences .site-title-tagline {
        letter-spacing: 1.8px;
    }

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

    .plocal-audience-card {
        min-height: 680px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .plocal-audience-list li {
        font-size: 14px;
    }

    .plocal-audiences .plocal-audience-btn {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .plocal-audience-card,
    .plocal-audience-icon,
    .plocal-audience-btn,
    .plocal-audience-btn i,
    .plocal-audience-visual img {
        transition: none;
    }
}
/* ==========================================================
   PLOCAL BY THE NUMBERS
   WHITE SECTION + BRAND BLUE CTA
========================================================== */

.plocal-counter-section {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
}

/*
The shell gives the CTA almost the complete available width
without making it touch the viewport edges.
*/

.plocal-counter-shell {
    width: 100%;
    max-width: 1800px;
    padding-right: clamp(16px, 2.8vw, 52px);
    padding-left: clamp(16px, 2.8vw, 52px);
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================
   MAIN BLUE PANEL
========================================================== */

.plocal-counter-panel {
    position: relative;
    width: 100%;
    padding:
        clamp(56px, 4.5vw, 78px)
        clamp(24px, 3.5vw, 60px)
        clamp(42px, 3.5vw, 58px);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--border-white-color);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 12% 14%,
            rgba(36, 189, 199, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(98, 211, 218, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--theme-color2) 0%,
            var(--color-dark) 58%,
            var(--footer-bg) 100%
        );
    box-shadow:
        var(--box-shadow2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.plocal-counter-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ==========================================================
   ANIMATED VECTOR BACKGROUND
========================================================== */

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

.plocal-counter-vector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.plocal-vector-path {
    fill: none;
    stroke: var(--theme-color);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 15;
    opacity: 0.14;
    animation: plocalVectorRoute 19s linear infinite;
}

.plocal-vector-path-bottom {
    stroke: var(--color-skyblue);
    opacity: 0.08;
    animation-duration: 25s;
    animation-direction: reverse;
}

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

    to {
        stroke-dashoffset: -230;
    }
}

/* Vector route nodes */

.plocal-vector-node {
    fill: var(--color-skyblue);
    opacity: 0.65;
    filter:
        drop-shadow(0 0 5px var(--theme-color))
        drop-shadow(0 0 12px rgba(36, 189, 199, 0.45));
    transform-box: fill-box;
    transform-origin: center;
    animation: plocalVectorNodePulse 3.2s ease-in-out infinite;
}

.plocal-vector-node-2 {
    animation-delay: 0.7s;
}

.plocal-vector-node-3 {
    animation-delay: 1.4s;
}

.plocal-vector-node-4 {
    animation-delay: 2.1s;
}

@keyframes plocalVectorNodePulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.75);
    }

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

/* Large subtle orbit lines */

.plocal-vector-orbit {
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(36, 189, 199, 0.09);
    border-radius: 50%;
    opacity: 0.7;
}

.plocal-vector-orbit::before,
.plocal-vector-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(98, 211, 218, 0.055);
    border-radius: inherit;
}

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

.plocal-vector-orbit::after {
    inset: 88px;
}

.plocal-vector-orbit-left {
    left: -285px;
    bottom: -305px;
}

.plocal-vector-orbit-right {
    top: -295px;
    right: -285px;
}

/* Independent floating lights */

.plocal-floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-skyblue);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 20px rgba(36, 189, 199, 0.55);
    animation: plocalFloatingDot 3.4s ease-in-out infinite;
}

.plocal-floating-dot-1 {
    top: 18%;
    left: 6%;
}

.plocal-floating-dot-2 {
    top: 22%;
    right: 7%;
    animation-delay: 0.8s;
}

.plocal-floating-dot-3 {
    bottom: 13%;
    left: 23%;
    animation-delay: 1.6s;
}

.plocal-floating-dot-4 {
    right: 17%;
    bottom: 12%;
    animation-delay: 2.4s;
}

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

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

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

.plocal-counter-heading {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0 auto clamp(34px, 3vw, 48px);
}

.plocal-counter-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.plocal-counter-tagline i {
    color: var(--theme-color);
    font-size: 16px;
}

.plocal-counter-title {
    max-width: 960px;
    margin: 0 auto;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -1.6px;
}

/* ==========================================================
   COUNTER GRID
========================================================== */

.plocal-counter-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 24px);
    width: 100%;
    margin-bottom: clamp(34px, 2vw, 44px);
}

/* ==========================================================
   COUNTER CARDS
========================================================== */

.plocal-counter-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1px minmax(0, 1fr);
    align-items: center;
    gap: 19px;
    min-width: 0;
    min-height: 128px;
    padding: 24px 22px;
    overflow: hidden;
    border: 1px solid var(--border-white-color);
    border-radius: 20px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        0 16px 36px rgba(7, 28, 74, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: var(--transition2);
}

.plocal-counter-card::before {
    position: absolute;
    content: "";
    top: -90px;
    left: -55px;
    width: 190px;
    height: 190px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(36, 189, 199, 0.12),
        transparent 68%
    );
}

.plocal-counter-card::after {
    position: absolute;
    content: "";
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 1px;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    transform: scaleX(0.3);
    transition: var(--transition2);
}

.plocal-counter-card:hover {
    border-color: rgba(36, 189, 199, 0.62);
    box-shadow:
        0 22px 48px rgba(7, 28, 74, 0.28),
        0 0 26px rgba(36, 189, 199, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
}

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

/* ==========================================================
   COUNTER ICON
========================================================== */

.plocal-counter-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    color: var(--theme-color);
    font-size: 29px;
    border: 1px solid rgba(98, 211, 218, 0.33);
    border-radius: 100%;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.13),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        inset 0 0 20px rgba(36, 189, 199, 0.07),
        0 0 20px rgba(36, 189, 199, 0.035);
    transition: var(--transition2);
}

.plocal-counter-card:hover .plocal-counter-icon {
    color: var(--color-white);
    border-color: var(--theme-color);
    background: rgba(36, 189, 199, 0.2);
    box-shadow:
        inset 0 0 22px rgba(36, 189, 199, 0.13),
        0 0 25px rgba(36, 189, 199, 0.14);
    transform: scale(1.05);
}

/* ==========================================================
   VERTICAL DIVIDER
========================================================== */

.plocal-counter-divider {
    position: relative;
    z-index: 2;
    display: block;
    width: 1px;
    height: 70px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(98, 211, 218, 0.42),
        transparent
    );
}

/* ==========================================================
   NUMBER + LABEL
========================================================== */

.plocal-counter-metric {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.plocal-counter-number {
    display: inline-flex;
    align-items: baseline;
    flex-shrink: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(49px, 3.3vw, 67px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -2.5px;
    background: linear-gradient(
        135deg,
        var(--theme-color),
        var(--color-skyblue)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(36, 189, 199, 0.12));
}

.plocal-counter-plus {
    margin-left: 1px;
    font-size: 0.72em;
    line-height: 1;
}

.plocal-counter-label {
    min-width: 0;
    margin: 0;
    color: var(--footer-text-color);
    font-family: var(--body-font);
    font-size: clamp(13px, 0.92vw, 15px);
    font-weight: 500;
    line-height: 1.42;
}

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

.plocal-counter-button-wrap {
    position: relative;
    z-index: 4;
}

.plocal-counter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    min-height: 60px;
    padding: 15px 34px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(36, 189, 199, 0.58);
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
        0 13px 28px rgba(7, 28, 74, 0.2),
        inset 0 0 15px rgba(36, 189, 199, 0.035);
    transition: var(--transition2);
}

.plocal-counter-button:hover {
    color: var(--theme-color2);
    border-color: var(--theme-color);
    background: var(--theme-color);
    box-shadow:
        0 16px 34px rgba(7, 28, 74, 0.25),
        0 0 25px rgba(36, 189, 199, 0.18);
    transform: translateY(-3px);
}

.plocal-counter-button i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.plocal-counter-button:hover i {
    transform: translateX(5px);
}

/* ==========================================================
   RESPONSIVE — MEDIUM DESKTOP
========================================================== */

@media (max-width: 1499px) {
    .plocal-counter-card {
        grid-template-columns: 64px 1px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 18px;
    }

    .plocal-counter-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .plocal-counter-divider {
        height: 62px;
    }

    .plocal-counter-metric {
        gap: 11px;
    }

    .plocal-counter-number {
        font-size: clamp(46px, 3.2vw, 58px);
    }

    .plocal-counter-label {
        font-size: 13px;
    }
}

/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

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

    .plocal-counter-card {
        grid-template-columns: 76px 1px minmax(0, 1fr);
        min-height: 156px;
        padding: 24px;
        gap: 20px;
    }

    .plocal-counter-icon {
        width: 76px;
        height: 76px;
        font-size: 30px;
    }

    .plocal-counter-divider {
        height: 72px;
    }

    .plocal-counter-metric {
        gap: 18px;
    }

    .plocal-counter-number {
        font-size: 64px;
    }

    .plocal-counter-label {
        font-size: 15px;
    }
}

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

    .plocal-counter-shell {
        padding-right: 13px;
        padding-left: 13px;
    }

    .plocal-counter-panel {
        padding: 46px 18px 34px;
        border-radius: 23px;
    }

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

    .plocal-counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plocal-counter-card {
        grid-template-columns: 66px 1px minmax(0, 1fr);
        min-height: 138px;
        padding: 22px 20px;
        gap: 17px;
    }

    .plocal-counter-icon {
        width: 66px;
        height: 66px;
        font-size: 27px;
    }

    .plocal-counter-divider {
        height: 62px;
    }

    .plocal-counter-number {
        font-size: 56px;
    }

    .plocal-counter-label {
        font-size: 15px;
    }

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

/* ==========================================================
   RESPONSIVE — SMALL MOBILE
========================================================== */

@media (max-width: 420px) {
    .plocal-counter-card {
        grid-template-columns: 58px 1px minmax(0, 1fr);
        gap: 13px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .plocal-counter-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .plocal-counter-divider {
        height: 54px;
    }

    .plocal-counter-metric {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
    }

    .plocal-counter-number {
        font-size: 47px;
    }

    .plocal-counter-label {
        font-size: 13px;
    }
}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .plocal-vector-path,
    .plocal-vector-node,
    .plocal-floating-dot {
        animation: none;
    }

    .plocal-counter-card,
    .plocal-counter-icon,
    .plocal-counter-button,
    .plocal-counter-button i {
        transition: none;
    }
}

/* ==========================================================
   PLOCAL — TRUST & TRANSPARENCY
   COMPACT HORIZONTAL VERSION
========================================================== */

.plocal-transparency {
    position: relative;
    z-index: 1;
    padding: clamp(66px, 5.5vw, 88px) 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(36, 189, 199, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 86% 75%,
            rgba(98, 211, 218, 0.07),
            transparent 29%
        ),
        linear-gradient(
            128deg,
            var(--theme-color2) 0%,
            var(--color-dark) 57%,
            var(--footer-bg) 100%
        );
}

/*
Uses more horizontal room than Bootstrap's regular container
without touching the viewport edges.
*/

.plocal-transparency-shell {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1540px;
    padding-right: clamp(24px, 4vw, 70px);
    padding-left: clamp(24px, 4vw, 70px);
    margin-right: auto;
    margin-left: auto;
}

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

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

.plocal-transparency-vectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.plocal-transparency-route {
    fill: none;
    stroke: url("#plocal-transparency-route-gradient");
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 16;
    opacity: 0.28;
    vector-effect: non-scaling-stroke;
    animation: plocalTransparencyRoute 21s linear infinite;
}

.plocal-transparency-route-center {
    opacity: 0.2;
    animation-duration: 26s;
    animation-direction: reverse;
}

.plocal-transparency-route-bottom {
    opacity: 0.14;
    animation-duration: 30s;
}

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

    to {
        stroke-dashoffset: -280;
    }
}

/* Moving particles */

.plocal-transparency-particle {
    fill: var(--color-skyblue);
    opacity: 0.82;
    filter: url("#plocal-transparency-glow");
}

.plocal-transparency-particle-small {
    fill: var(--theme-color);
    opacity: 0.56;
}

/* ==========================================================
   FADING THEMATIC BACKGROUND ICONS
========================================================== */

.plocal-transparency-bg-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-skyblue);
    line-height: 1;
    border: 1px solid rgba(98, 211, 218, 0.08);
    border-radius: 32px;
    opacity: 0;
    filter: drop-shadow(
        0 0 16px rgba(36, 189, 199, 0.08)
    );
    animation: plocalTransparencyIcon 15s ease-in-out infinite;
}

.plocal-transparency-bg-icon i {
    opacity: 0.75;
}

/* Shield — upper left */

.plocal-transparency-bg-icon-1 {
    top: 18%;
    left: 1.2%;
    width: 130px;
    height: 130px;
    font-size: 70px;
    animation-delay: 0s;
}

/* Scales — top center */

.plocal-transparency-bg-icon-2 {
    top: -14px;
    left: 34%;
    width: 125px;
    height: 125px;
    font-size: 59px;
    animation-delay: 3s;
}

/* Certificate — upper right */

.plocal-transparency-bg-icon-3 {
    top: 9%;
    right: 2%;
    width: 122px;
    height: 122px;
    font-size: 57px;
    animation-delay: 6s;
}

/* Evaluation document — bottom left */

.plocal-transparency-bg-icon-4 {
    bottom: -2%;
    left: 3.5%;
    width: 126px;
    height: 126px;
    font-size: 58px;
    animation-delay: 9s;
}

/* Evaluated identity — bottom right */

.plocal-transparency-bg-icon-5 {
    right: 3%;
    bottom: -2%;
    width: 124px;
    height: 124px;
    font-size: 58px;
    animation-delay: 12s;
}

@keyframes plocalTransparencyIcon {
    0%,
    14%,
    100% {
        opacity: 0;
        transform: translateY(10px) scale(0.94);
    }

    23%,
    43% {
        opacity: 0.055;
        transform: translateY(0) scale(1);
    }

    58% {
        opacity: 0.025;
        transform: translateY(-7px) scale(1.02);
    }

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

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

.plocal-transparency-light {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-skyblue);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 20px rgba(36, 189, 199, 0.52);
    animation: plocalTransparencyLight 3.8s ease-in-out infinite;
}

.plocal-transparency-light-1 {
    top: 20%;
    left: 18%;
}

.plocal-transparency-light-2 {
    top: 16%;
    right: 27%;
    animation-delay: 0.9s;
}

.plocal-transparency-light-3 {
    right: 19%;
    bottom: 17%;
    animation-delay: 1.8s;
}

.plocal-transparency-light-4 {
    bottom: 11%;
    left: 28%;
    animation-delay: 2.7s;
}

@keyframes plocalTransparencyLight {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.75);
    }

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

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

.plocal-transparency-scan {
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -35%;
    width: 20%;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(36, 189, 199, 0.055),
        rgba(98, 211, 218, 0.04),
        transparent
    );
    filter: blur(7px);
    transform: skewX(-18deg);
    animation: plocalTransparencyScan 13s ease-in-out infinite;
}

@keyframes plocalTransparencyScan {
    0%,
    13% {
        left: -35%;
        opacity: 0;
    }

    23% {
        opacity: 1;
    }

    62% {
        opacity: 0.72;
    }

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

/* ==========================================================
   LEFT CONTENT
========================================================== */

.plocal-transparency-content {
    position: relative;
    z-index: 4;
    max-width: 600px;
}

.plocal-transparency-tagline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
}

.plocal-transparency-tagline i {
    color: var(--theme-color);
    font-size: 18px;
}

.plocal-transparency-title {
    margin: 0 0 22px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.plocal-transparency-title > span {
    display: block;
}

.plocal-transparency-text {
    max-width: 590px;
    margin: 0 0 24px;
    color: var(--footer-text-color);
    font-family: var(--body-font);
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.75;
    opacity: 0.84;
}

.plocal-transparency-text strong {
    color: var(--theme-color);
    font-weight: 700;
}

/* Animated underline */

.plocal-transparency-accent {
    position: relative;
    width: 170px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.plocal-transparency-accent span {
    position: absolute;
    inset: 0;
    width: 68%;
    background: linear-gradient(
        90deg,
        var(--theme-color),
        var(--color-skyblue),
        transparent
    );
    animation: plocalTransparencyAccent 3.6s ease-in-out infinite;
}

@keyframes plocalTransparencyAccent {
    0%,
    100% {
        opacity: 0.55;
        transform: translateX(-40%);
    }

    50% {
        opacity: 1;
        transform: translateX(85%);
    }
}

/* ==========================================================
   RIGHT CARDS — 3 TOP / 2 BOTTOM
========================================================== */

.plocal-transparency-list {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 18px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* First row: three equal cards */

.plocal-transparency-item:nth-child(1),
.plocal-transparency-item:nth-child(2),
.plocal-transparency-item:nth-child(3) {
    grid-column: span 2;
}

/* Second row: two centered cards */

.plocal-transparency-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.plocal-transparency-item:nth-child(5) {
    grid-column: 4 / span 2;
}

/* ==========================================================
   CARDS
========================================================== */

.plocal-transparency-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 108px;
    padding: 18px 19px;
    overflow: hidden;
    border: 1px solid rgba(98, 211, 218, 0.29);
    border-radius: 28px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.016)
        );
    box-shadow:
        0 14px 32px rgba(7, 28, 74, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition2);
}

/* Soft internal red glow */

.plocal-transparency-item::before {
    position: absolute;
    content: "";
    top: -65px;
    left: -65px;
    width: 145px;
    height: 145px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(226, 85, 85, 0.09),
        transparent 68%
    );
}

/* Bottom animated accent */

.plocal-transparency-item::after {
    position: absolute;
    content: "";
    right: 22px;
    bottom: 0;
    left: 22px;
    height: 1px;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    transform: scaleX(0.25);
    transition: var(--transition2);
}

.plocal-transparency-item:hover {
    border-color: rgba(36, 189, 199, 0.68);
    box-shadow:
        0 20px 42px rgba(7, 28, 74, 0.28),
        0 0 24px rgba(36, 189, 199, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.065);
    transform: translateY(-5px);
}

.plocal-transparency-item:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================================
   RED X ICON
========================================================== */

.plocal-transparency-item-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--color-red);
    font-size: 25px;
    border: 1px solid rgba(98, 211, 218, 0.36);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
        inset 0 0 17px rgba(226, 85, 85, 0.035),
        0 0 17px rgba(7, 28, 74, 0.08);
    transition: var(--transition2);
}

.plocal-transparency-item:hover
.plocal-transparency-item-icon {
    color: var(--color-white);
    border-color: rgba(226, 85, 85, 0.58);
    background: rgba(226, 85, 85, 0.16);
    box-shadow:
        inset 0 0 18px rgba(226, 85, 85, 0.1),
        0 0 21px rgba(226, 85, 85, 0.1);
    transform: rotate(90deg) scale(1.04);
}

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

.plocal-transparency-item-text {
    position: relative;
    z-index: 2;
    min-width: 0;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================================
   DESKTOP REFINEMENT
========================================================== */

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

    .plocal-transparency-list {
        gap: 18px 15px;
    }

    .plocal-transparency-item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 13px;
        min-height: 100px;
        padding: 16px;
        border-radius: 24px;
    }

    .plocal-transparency-item-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .plocal-transparency-item-text {
        font-size: 14px;
    }
}

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

@media (max-width: 1199px) {
    .plocal-transparency {
        padding: 76px 0;
    }

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

    .plocal-transparency-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plocal-transparency-item:nth-child(n) {
        grid-column: auto;
    }

    .plocal-transparency-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
        width: 100%;
        justify-self: center;
    }
}

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

@media (max-width: 991px) {
    .plocal-transparency-content {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .plocal-transparency-text {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-transparency-accent {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-transparency-list {
        max-width: 850px;
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-transparency-bg-icon-2,
    .plocal-transparency-bg-icon-4 {
        display: none;
    }
}

@media (max-width: 767px) {
    .plocal-transparency {
        padding: 70px 0;
    }

    .plocal-transparency-shell {
        padding-right: 18px;
        padding-left: 18px;
    }

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

    .plocal-transparency-text {
        font-size: 15px;
    }

    .plocal-transparency-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .plocal-transparency-item:nth-child(n) {
        grid-column: auto;
        width: 100%;
        max-width: none;
    }

    .plocal-transparency-item {
        min-height: 92px;
    }

    .plocal-transparency-bg-icon-3,
    .plocal-transparency-bg-icon-5 {
        display: none;
    }

    .plocal-transparency-scan {
        width: 38%;
    }
}

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

    .plocal-transparency-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
    }

    .plocal-transparency-item-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .plocal-transparency-item-text {
        font-size: 14px;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-transparency-route,
    .plocal-transparency-bg-icon,
    .plocal-transparency-light,
    .plocal-transparency-scan,
    .plocal-transparency-accent span {
        animation: none;
    }

    .plocal-transparency-particle {
        display: none;
    }

    .plocal-transparency-item,
    .plocal-transparency-item-icon {
        transition: none;
    }
}


/* ==========================================================
   PLOCAL — LOCAL DISCOVERY STRUCTURE
========================================================== */

.plocal-seo {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(36, 189, 199, 0.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(98, 211, 218, 0.08),
            transparent 29%
        ),
        linear-gradient(
            128deg,
            var(--theme-color2) 0%,
            var(--color-dark) 58%,
            var(--footer-bg) 100%
        );
}

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

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

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

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

.plocal-seo-routes {
    position: absolute;
    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 16;
    opacity: 0.25;
    vector-effect: non-scaling-stroke;
    animation: plocalSeoRoute 22s linear infinite;
}

.plocal-seo-route-middle {
    opacity: 0.18;
    animation-duration: 28s;
    animation-direction: reverse;
}

.plocal-seo-route-bottom {
    opacity: 0.12;
    animation-duration: 32s;
}

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

    to {
        stroke-dashoffset: -290;
    }
}

/* Moving route particles */

.plocal-seo-particle {
    fill: var(--color-skyblue);
    opacity: 0.85;
    filter: url("#plocal-seo-glow");
}

.plocal-seo-particle-small {
    fill: var(--theme-color);
    opacity: 0.6;
}

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

.plocal-seo-bg-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-skyblue);
    border: 1px solid rgba(98, 211, 218, 0.07);
    border-radius: 32px;
    opacity: 0;
    animation: plocalSeoIconFade 15s ease-in-out infinite;
}

.plocal-seo-bg-icon-map {
    top: 10%;
    left: 2%;
    width: 180px;
    height: 180px;
    font-size: 90px;
    animation-delay: 0s;
}

.plocal-seo-bg-icon-sitemap {
    top: 17%;
    right: 4%;
    width: 160px;
    height: 160px;
    font-size: 76px;
    animation-delay: 5s;
}

.plocal-seo-bg-icon-location {
    right: 9%;
    bottom: 3%;
    width: 145px;
    height: 145px;
    font-size: 70px;
    animation-delay: 10s;
}

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

    24%,
    44% {
        opacity: 0.045;
        transform: translateY(0) scale(1);
    }

    58% {
        opacity: 0.018;
        transform: translateY(-7px) scale(1.02);
    }

    72% {
        opacity: 0;
        transform: translateY(-10px) scale(1.03);
    }
}

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

.plocal-seo-light {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-skyblue);
    box-shadow:
        0 0 7px var(--theme-color),
        0 0 20px rgba(36, 189, 199, 0.55);
    animation: plocalSeoLight 3.8s ease-in-out infinite;
}

.plocal-seo-light-1 {
    top: 19%;
    left: 22%;
}

.plocal-seo-light-2 {
    top: 14%;
    right: 23%;
    animation-delay: 0.9s;
}

.plocal-seo-light-3 {
    right: 18%;
    bottom: 14%;
    animation-delay: 1.8s;
}

.plocal-seo-light-4 {
    bottom: 10%;
    left: 27%;
    animation-delay: 2.7s;
}

@keyframes plocalSeoLight {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.75);
    }

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

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

.plocal-seo-scan {
    position: absolute;
    top: -15%;
    bottom: -15%;
    left: -38%;
    width: 22%;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(36, 189, 199, 0.06),
        rgba(98, 211, 218, 0.04),
        transparent
    );
    filter: blur(7px);
    transform: skewX(-18deg);
    animation: plocalSeoScan 13s ease-in-out infinite;
}

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

    23% {
        opacity: 1;
    }

    62% {
        opacity: 0.72;
    }

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

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

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

.plocal-seo-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px 8px 9px;
    margin-bottom: 20px;
    color: var(--color-white);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    border: 1px solid rgba(98, 211, 218, 0.36);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

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

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

.plocal-seo-intro {
    max-width: 850px;
    margin: 0 auto;
    color: var(--footer-text-color);
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.78;
}

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

.plocal-seo-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 26px);
    width: 100%;
}

/* ==========================================================
   URL CARDS
========================================================== */

.plocal-url-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 180px;
    padding: 22px 24px 24px;
    overflow: hidden;
    border: 1px solid var(--border-white-color);
    border-radius: 21px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow:
        0 17px 38px rgba(7, 28, 74, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    transition: var(--transition2);
}

.plocal-url-card::before {
    position: absolute;
    content: "";
    top: -95px;
    left: -70px;
    width: 210px;
    height: 210px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(36, 189, 199, 0.13),
        transparent 68%
    );
}

.plocal-url-card::after {
    position: absolute;
    content: "";
    right: 28px;
    bottom: 0;
    left: 28px;
    height: 1px;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    transform: scaleX(0.25);
    transition: var(--transition2);
}

.plocal-url-card:hover {
    border-color: rgba(36, 189, 199, 0.65);
    background:
        linear-gradient(
            140deg,
            rgba(36, 189, 199, 0.12),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        0 24px 50px rgba(7, 28, 74, 0.3),
        0 0 27px rgba(36, 189, 199, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: translateY(-7px);
}

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

/* ==========================================================
   CARD HEADER
========================================================== */

.plocal-url-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.plocal-url-step {
    color: rgba(98, 211, 218, 0.7);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plocal-url-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 6px 11px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    border: 1px solid rgba(36, 189, 199, 0.2);
    border-radius: 50px;
    background: rgba(36, 189, 199, 0.08);
}

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

.plocal-url-card-body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 17px;
    min-width: 0;
}

.plocal-url-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: var(--theme-color);
    font-size: 24px;
    border: 1px solid rgba(98, 211, 218, 0.27);
    border-radius: 17px;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.14),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        inset 0 0 18px rgba(36, 189, 199, 0.07),
        0 0 18px rgba(36, 189, 199, 0.04);
    transition: var(--transition2);
}

.plocal-url-card:hover .plocal-url-icon {
    color: var(--color-white);
    border-color: var(--theme-color);
    background: rgba(36, 189, 199, 0.2);
    box-shadow:
        inset 0 0 20px rgba(36, 189, 199, 0.14),
        0 0 24px rgba(36, 189, 199, 0.14);
    transform: scale(1.05);
}

/* ==========================================================
   URL CONTENT
========================================================== */

.plocal-url-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 8px;
}

.plocal-url-content code {
    display: block;
    min-width: 0;
    color: var(--color-white);
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
    font-size: clamp(13px, 0.96vw, 16px);
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.1px;
    overflow-wrap: anywhere;
    white-space: normal;
}

.plocal-url-content span {
    color: var(--footer-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.66;
}

/* ==========================================================
   CARD ARROW
========================================================== */

.plocal-url-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: rgba(98, 211, 218, 0.65);
    font-size: 12px;
    border: 1px solid rgba(98, 211, 218, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    transition: var(--transition2);
}

.plocal-url-card:hover .plocal-url-arrow {
    color: var(--theme-color2);
    border-color: var(--theme-color);
    background: var(--theme-color);
    transform: translateX(4px);
}

/* ==========================================================
   URL DEPTH INDICATOR
========================================================== */

.plocal-url-depth {
    position: absolute;
    right: 24px;
    bottom: 15px;
    left: 24px;
    height: 2px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
}

.plocal-url-depth::after {
    display: block;
    width: var(--depth-width);
    height: 100%;
    content: "";
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--theme-color),
        var(--color-skyblue)
    );
    opacity: 0.35;
    transform: scaleX(0.85);
    transform-origin: left;
    transition: var(--transition2);
}

.plocal-url-depth-1 {
    --depth-width: 25%;
}

.plocal-url-depth-2 {
    --depth-width: 50%;
}

.plocal-url-depth-3 {
    --depth-width: 75%;
}

.plocal-url-depth-4 {
    --depth-width: 100%;
}

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

/* ==========================================================
   RESPONSIVE
========================================================== */

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

    .plocal-url-card {
        min-height: 175px;
    }
}

@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: 38px;
    }

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

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

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

    .plocal-url-card {
        min-height: 165px;
        padding: 20px;
    }

    .plocal-url-card-body {
        grid-template-columns: 56px minmax(0, 1fr) 32px;
        gap: 14px;
    }

    .plocal-url-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

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

@media (max-width: 420px) {
    .plocal-url-card-body {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .plocal-url-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .plocal-url-arrow {
        display: none;
    }

    .plocal-url-content code {
        font-size: 12px;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-seo-route,
    .plocal-seo-bg-icon,
    .plocal-seo-light,
    .plocal-seo-scan {
        animation: none;
    }

    .plocal-seo-particle {
        display: none;
    }

    .plocal-url-card,
    .plocal-url-icon,
    .plocal-url-arrow,
    .plocal-url-depth::after {
        transition: none;
    }
}
/* =========================================================
   LOCAL DISCOVERY CARDS — READABLE HOVER
   ========================================================= */

.plocal-url-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(36, 189, 199, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

/* Animated accent line */
.plocal-url-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--theme-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.plocal-url-card:hover {
  background: var(--color-white);
  border-color: var(--theme-color);
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(8, 29, 77, 0.13);
}

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

/* Keep every text element readable */
.plocal-url-card:hover,
.plocal-url-card:hover code,
.plocal-url-card:hover span,
.plocal-url-card:hover strong,
.plocal-url-card:hover h3,
.plocal-url-card:hover p {
  color: var(--color-dark);
}

/* Secondary text */
.plocal-url-card:hover span,
.plocal-url-card:hover p {
  color: var(--body-text-color);
}

/* Teal elements remain teal */
.plocal-url-card:hover i,
.plocal-url-card:hover .plocal-url-card__number,
.plocal-url-card:hover .plocal-url-card__tag {
  color: var(--color-blue);
}

/* Arrow/icon button */
.plocal-url-card:hover .plocal-url-card__arrow {
  color: var(--color-white);
  background: var(--theme-color);
  border-color: var(--theme-color);
}

/* ==========================================================
   PLOCAL — BUSINESS PROFILE PREVIEW
   REDESIGNED WIDE PROFILE + ANIMATED PROSCORE
========================================================== */

.plocal-profile-preview {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 4% 10%,
            rgba(36, 189, 199, 0.045),
            transparent 24%
        ),
        radial-gradient(
            circle at 96% 88%,
            rgba(12, 44, 122, 0.035),
            transparent 27%
        ),
        var(--color-white);
}

/* ==========================================================
   SECTION BACKGROUND DETAILS
========================================================== */

.plocal-profile-preview::before {
    position: absolute;
    top: 92px;
    left: 3%;
    z-index: -1;
    width: 190px;
    height: 190px;
    content: "";
    pointer-events: none;
    opacity: 0.4;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.2) 1.5px,
            transparent 1.5px
        );
    background-size: 18px 18px;
    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 78%
        );
    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 78%
        );
}

.plocal-profile-preview::after {
    position: absolute;
    right: -280px;
    bottom: -360px;
    z-index: -1;
    width: 720px;
    height: 720px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(36, 189, 199, 0.055);
    border-radius: 50%;
    box-shadow:
        0 0 0 58px rgba(36, 189, 199, 0.01),
        0 0 0 118px rgba(12, 44, 122, 0.008);
}

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

.plocal-profile-preview-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1900px;
    padding-right: clamp(18px, 3vw, 58px);
    padding-left: clamp(18px, 3vw, 58px);
    margin-right: auto;
    margin-left: auto;
}

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

.plocal-profile-preview-heading {
    max-width: 980px;
    margin: 0 auto clamp(42px, 3.6vw, 60px);
}

.plocal-profile-preview .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 15px 7px 8px;
    margin-bottom: 18px;
    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-radius: 50px;
    background: var(--theme-color-light);
}

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

.plocal-profile-preview .site-title {
    margin: 0 0 18px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

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

.plocal-profile-preview .plocal-section-intro {
    max-width: 790px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.75;
}

/* ==========================================================
   MAIN PROFILE CARD
========================================================== */

.plocal-profile-card {
    position: relative;
    width: 100%;
    max-width: 1740px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            var(--color-white),
            #fbfdff 72%
        );
    box-shadow:
        0 34px 90px rgba(8, 29, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

/* ==========================================================
   INTERNAL GLOWS
========================================================== */

.plocal-profile-card-glow {
    position: absolute;
    z-index: 0;
    width: 460px;
    height: 460px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(12px);
}

.plocal-profile-card-glow-left {
    top: -285px;
    left: -235px;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.15),
            transparent 70%
        );
}

.plocal-profile-card-glow-right {
    right: -260px;
    bottom: -280px;
    background:
        radial-gradient(
            circle,
            rgba(12, 44, 122, 0.1),
            transparent 70%
        );
}

/* ==========================================================
   PREVIEW TOOLBAR
========================================================== */

.plocal-profile-preview-bar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
    padding: 14px clamp(30px, 3.5vw, 64px);
    border-bottom: 1px solid var(--border-info-color2);
    background:
        linear-gradient(
            90deg,
            var(--theme-bg-light),
            rgba(255, 255, 255, 0.88) 55%,
            rgba(12, 44, 122, 0.025)
        );
}

.plocal-profile-flag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.85px;
    text-transform: uppercase;
}

.plocal-profile-flag i {
    color: var(--theme-color);
}

.plocal-profile-preview-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
}

.plocal-profile-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 0 5px rgba(36, 189, 199, 0.1);
    animation:
        plocalProfileStatusPulse
        2.4s
        ease-in-out
        infinite;
}

@keyframes plocalProfileStatusPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(36, 189, 199, 0.09),
            0 0 0 0 rgba(36, 189, 199, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(36, 189, 199, 0.02),
            0 0 18px rgba(36, 189, 199, 0.17);
    }
}

/* ==========================================================
   PROFILE HERO
========================================================== */

.plocal-profile-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(360px, 0.62fr);
    align-items: stretch;
    gap: clamp(34px, 3.7vw, 66px);
    padding:
        clamp(40px, 3.8vw, 62px)
        clamp(30px, 3.7vw, 68px);
}

/* ==========================================================
   BUSINESS OVERVIEW
========================================================== */

.plocal-profile-overview {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start;
    gap: clamp(28px, 2.6vw, 42px);
    min-width: 0;
    padding:
        clamp(26px, 2.2vw, 36px);
    border: 1px solid var(--border-info-color2);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.035),
            rgba(255, 255, 255, 0.8) 48%,
            rgba(12, 44, 122, 0.018)
        );
}

/* ==========================================================
   BUSINESS MARK
========================================================== */

.plocal-profile-brand-column {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.plocal-profile-business-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 126px;
    color: var(--color-white);
    font-size: 43px;
    border: 1px solid rgba(36, 189, 199, 0.26);
    border-radius: 31px;
    background:
        linear-gradient(
            145deg,
            var(--theme-color2),
            var(--color-dark)
        );
    box-shadow:
        0 22px 46px rgba(12, 44, 122, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.plocal-profile-business-mark::before {
    position: absolute;
    inset: 8px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
}

.plocal-profile-business-check {
    position: absolute;
    right: -9px;
    bottom: -9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: var(--color-white);
    font-size: 12px;
    border: 5px solid var(--color-white);
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 9px 20px rgba(36, 189, 199, 0.25);
}

.plocal-profile-verified-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 31px;
    padding: 6px 11px;
    margin-top: 22px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50px;
    background: var(--theme-color-light);
}

.plocal-profile-verified-label i {
    color: var(--theme-color);
}

/* ==========================================================
   BUSINESS CONTENT
========================================================== */

.plocal-profile-content {
    min-width: 0;
}

.plocal-profile-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.plocal-profile-name {
    max-width: 920px;
    margin: 0 0 14px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(31px, 2.45vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.plocal-profile-description {
    max-width: 820px;
    margin: 0 0 26px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.75;
}

/* ==========================================================
   BUSINESS FACTS
========================================================== */

.plocal-profile-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 27px;
}

.plocal-profile-fact {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 76px;
    padding: 13px;
    border: 1px solid var(--border-info-color2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
}

.plocal-profile-fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--theme-color);
    font-size: 15px;
    border-radius: 12px;
    background: var(--theme-bg-light);
}

.plocal-profile-fact-label {
    display: block;
    margin-bottom: 3px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.plocal-profile-fact strong {
    display: block;
    overflow: hidden;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
}

/* ==========================================================
   PROFILE BADGES
========================================================== */

.plocal-profile-badge-area {
    padding-top: 20px;
    border-top: 1px solid var(--border-info-color2);
}

.plocal-profile-badge-heading {
    display: block;
    margin-bottom: 11px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plocal-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plocal-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 14px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50px;
    background: var(--theme-bg-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition: var(--transition2);
}

.plocal-mini-badge i {
    color: var(--theme-color);
}

.plocal-mini-badge:hover {
    border-color: rgba(36, 189, 199, 0.4);
    background: var(--theme-color-light);
    box-shadow:
        0 10px 24px rgba(36, 189, 199, 0.09);
    transform: translateY(-2px);
}

/* ==========================================================
   ANIMATED PROSCORE PANEL
========================================================== */

.plocal-profile-score-panel {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    padding: 34px 27px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 50% 31%,
            rgba(36, 189, 199, 0.16),
            transparent 47%
        ),
        linear-gradient(
            145deg,
            var(--color-white),
            #f8feff
        );
    box-shadow:
        0 22px 54px rgba(8, 29, 77, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.plocal-profile-score-panel::before {
    position: absolute;
    top: -115px;
    left: 50%;
    width: 300px;
    height: 300px;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.22),
            transparent 68%
        );
    transform:
        translateX(-50%)
        scale(0.75);
    transition:
        opacity 0.8s ease,
        transform 1.2s ease;
}

.plocal-profile-score-panel.is-loading::before,
.plocal-profile-score-panel.is-complete::before {
    opacity: 1;
    transform:
        translateX(-50%)
        scale(1.1);
}

.plocal-profile-score-eyebrow {
    position: relative;
    z-index: 4;
    margin-bottom: 17px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* ==========================================================
   SCORE RING
========================================================== */

.plocal-profile-score-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 188px;
    height: 188px;
    margin-bottom: 16px;
}

.plocal-score-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: rotate(-90deg);
}

.plocal-score-track,
.plocal-score-progress {
    fill: none;
    stroke-width: 10;
}

.plocal-score-track {
    stroke: var(--theme-color-light);
}

.plocal-score-progress {
    stroke: var(--theme-color);
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 8;
    filter:
        drop-shadow(
            0 0 7px rgba(36, 189, 199, 0.3)
        );
    transition:
        stroke-dashoffset 1.9s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.plocal-profile-score-ring::before {
    position: absolute;
    z-index: 1;
    inset: 22px;
    content: "";
    border-radius: 50%;
    background: var(--color-white);
    box-shadow:
        inset 0 0 30px rgba(36, 189, 199, 0.06),
        0 13px 32px rgba(8, 29, 77, 0.065);
}

/* ==========================================================
   SCORE NUMBER
========================================================== */

.plocal-profile-score-ring-inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plocal-profile-score-num {
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 63px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    transition:
        transform 0.35s ease,
        text-shadow 0.35s ease;
}

.plocal-profile-score-total {
    margin-left: 3px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
}

.plocal-profile-score-panel.is-complete
.plocal-profile-score-num {
    text-shadow:
        0 0 23px rgba(36, 189, 199, 0.19);
    animation:
        plocalScoreNumberComplete
        0.55s
        ease;
}

@keyframes plocalScoreNumberComplete {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================================================
   ROTATING SCORE LIGHT
========================================================== */

.plocal-score-orbit-runner {
    position: absolute;
    z-index: 7;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.plocal-score-orbit-dot {
    position: absolute;
    top: 1px;
    left: 50%;
    width: 11px;
    height: 11px;
    margin-left: -5.5px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow:
        0 0 5px var(--color-white),
        0 0 12px var(--theme-color),
        0 0 25px rgba(36, 189, 199, 0.78);
}

.plocal-profile-score-panel.is-loading
.plocal-score-orbit-runner {
    opacity: 1;
    animation:
        plocalScoreOrbit
        1.65s
        linear
        infinite;
}

.plocal-profile-score-panel.is-complete
.plocal-score-orbit-runner {
    opacity: 0;
}

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

/* ==========================================================
   COMPLETION CHECK
========================================================== */

.plocal-score-complete-icon {
    position: absolute;
    z-index: 8;
    top: 8px;
    right: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--color-white);
    font-size: 13px;
    border: 5px solid var(--color-white);
    border-radius: 50%;
    opacity: 0;
    background: var(--theme-color);
    box-shadow:
        0 9px 20px rgba(36, 189, 199, 0.25);
    transform:
        scale(0.35)
        rotate(-35deg);
}

.plocal-profile-score-panel.is-complete
.plocal-score-complete-icon {
    animation:
        plocalScoreCheckReveal
        0.55s
        ease
        forwards;
}

@keyframes plocalScoreCheckReveal {
    0% {
        opacity: 0;
        transform:
            scale(0.35)
            rotate(-35deg);
    }

    65% {
        opacity: 1;
        transform:
            scale(1.12)
            rotate(4deg);
    }

    100% {
        opacity: 1;
        transform:
            scale(1)
            rotate(0deg);
    }
}

/* ==========================================================
   SCORE LABELS
========================================================== */

.plocal-profile-score-label {
    position: relative;
    z-index: 4;
    margin-bottom: 10px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
}

.plocal-profile-score-level {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 7px 14px;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
    background: var(--theme-color-light);
}

.plocal-profile-score-panel.is-animated
.plocal-profile-score-level {
    opacity: 0;
    transform:
        translateY(7px)
        scale(0.92);
}

.plocal-profile-score-panel.is-complete
.plocal-profile-score-level {
    animation:
        plocalScoreLevelReveal
        0.55s
        0.12s
        ease
        forwards;
}

@keyframes plocalScoreLevelReveal {
    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

.plocal-profile-score-description {
    position: relative;
    z-index: 4;
    max-width: 260px;
    margin: 15px auto 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.6;
}

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

.plocal-profile-metrics-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding:
        31px
        clamp(30px, 3.7vw, 68px)
        22px;
    border-top: 1px solid var(--border-info-color2);
}

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

.plocal-profile-metrics-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.plocal-profile-metrics-heading h4 {
    margin: 0;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 700;
}

.plocal-profile-metrics-note {
    flex-shrink: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
}

/* ==========================================================
   METRICS GRID
========================================================== */

.plocal-profile-preview .plocal-profile-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.7vw, 27px);
    padding:
        0
        clamp(30px, 3.7vw, 68px)
        clamp(40px, 3.5vw, 55px);
}

.plocal-profile-preview .plocal-metric {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: clamp(23px, 1.8vw, 29px);
    overflow: hidden;
    border: 1px solid var(--border-info-color2);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            #fbfdff,
            var(--color-white)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: var(--transition2);
}

.plocal-profile-preview .plocal-metric::before {
    position: absolute;
    top: -70px;
    right: -60px;
    width: 160px;
    height: 160px;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.12),
            transparent 70%
        );
    transition: var(--transition2);
}

.plocal-profile-preview .plocal-metric::after {
    position: absolute;
    right: 25px;
    bottom: 0;
    left: 25px;
    height: 2px;
    content: "";
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--theme-color),
            transparent
        );
    transform: scaleX(0.3);
    transition: var(--transition2);
}

.plocal-profile-preview .plocal-metric:hover {
    border-color: rgba(36, 189, 199, 0.3);
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.055),
            var(--color-white) 64%
        );
    box-shadow:
        0 18px 39px rgba(8, 29, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-5px);
}

.plocal-profile-preview .plocal-metric:hover::before {
    opacity: 1;
}

.plocal-profile-preview .plocal-metric:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================================
   METRIC HEADER
========================================================== */

.plocal-profile-preview .plocal-metric-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        50px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.plocal-profile-preview .plocal-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--theme-color);
    font-size: 18px;
    border-radius: 15px;
    background: var(--theme-bg-light);
    transition: var(--transition2);
}

.plocal-profile-preview
.plocal-metric:hover
.plocal-metric-icon {
    color: var(--color-white);
    background: var(--theme-color);
    box-shadow:
        0 10px 23px rgba(36, 189, 199, 0.18);
}

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

.plocal-metric-number {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plocal-profile-preview .plocal-metric h5 {
    margin: 0;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.plocal-profile-preview .plocal-metric-val {
    flex-shrink: 0;
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================================
   METRIC PROGRESS BAR
========================================================== */

.plocal-profile-preview .plocal-metric-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 9px;
    margin-bottom: 17px;
    overflow: hidden;
    border-radius: 50px;
    background: var(--color-gray);
}

.plocal-profile-preview .plocal-metric-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 0 13px rgba(36, 189, 199, 0.22);
}

.plocal-profile-preview .plocal-metric p {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.7;
}

/* ==========================================================
   PROFILE ACTIONS
========================================================== */

.plocal-profile-preview .plocal-profile-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(300px, 1fr)
        auto;
    align-items: center;
    gap: 36px;
    padding:
        26px
        clamp(30px, 3.7vw, 68px);
    border-top: 1px solid var(--border-info-color2);
    background:
        linear-gradient(
            90deg,
            rgba(36, 189, 199, 0.065),
            rgba(255, 255, 255, 0.92) 57%,
            rgba(12, 44, 122, 0.025)
        );
}

.plocal-profile-action-copy {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.plocal-profile-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: var(--theme-color);
    font-size: 15px;
    border-radius: 14px;
    background: var(--theme-color-light);
}

.plocal-profile-action-note {
    max-width: 600px;
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.65;
}

.plocal-profile-action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}

.plocal-profile-actions .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 50px;
}

.plocal-profile-actions .plocal-btn-outline {
    color: var(--theme-color2);
    border: 1px solid var(--border-info-color);
    background: var(--color-white);
    box-shadow: none;
}

.plocal-profile-actions .plocal-btn-outline::before,
.plocal-profile-actions .plocal-btn-outline::after {
    display: none;
}

.plocal-profile-actions .plocal-btn-outline:hover {
    color: var(--color-white);
    border-color: var(--theme-color2);
    background: var(--theme-color2);
}

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

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

    .plocal-profile-hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.54fr);
        gap: 34px;
    }

    .plocal-profile-overview {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 27px;
    }

    .plocal-profile-business-mark {
        width: 108px;
        height: 108px;
        font-size: 38px;
    }

    .plocal-profile-facts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .plocal-profile-fact:last-child {
        grid-column: 1 / -1;
    }
}

/* ==========================================================
   SMALL DESKTOP
========================================================== */

@media (max-width: 1099px) {
    .plocal-profile-hero {
        grid-template-columns:
            minmax(0, 1fr)
            310px;
        gap: 25px;
    }

    .plocal-profile-overview {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 22px;
        padding: 25px;
    }

    .plocal-profile-business-mark {
        width: 90px;
        height: 90px;
        font-size: 32px;
        border-radius: 23px;
    }

    .plocal-profile-business-mark::before {
        border-radius: 18px;
    }

    .plocal-profile-verified-label {
        font-size: 10px;
    }

    .plocal-profile-name {
        font-size: 33px;
    }

    .plocal-profile-facts {
        grid-template-columns: 1fr;
    }

    .plocal-profile-fact:last-child {
        grid-column: auto;
    }

    .plocal-profile-preview .plocal-metric-header {
        grid-template-columns:
            46px
            minmax(0, 1fr);
    }

    .plocal-profile-preview .plocal-metric-val {
        grid-column: 2;
    }
}

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

@media (max-width: 991px) {
    .plocal-profile-hero {
        grid-template-columns: 1fr;
    }

    .plocal-profile-score-panel {
        width: 100%;
        max-width: 520px;
        min-height: 410px;
        margin: 0 auto;
    }

    .plocal-profile-preview .plocal-profile-metrics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .plocal-profile-preview .plocal-metric:nth-child(3) {
        grid-column: 1 / -1;
    }

    .plocal-profile-preview .plocal-profile-actions {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .plocal-profile-action-buttons {
        justify-content: flex-start;
    }
}

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

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

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

    .plocal-profile-preview-heading {
        margin-bottom: 38px;
    }

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

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

    .plocal-profile-card {
        border-radius: 24px;
    }

    .plocal-profile-preview-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px;
    }

    .plocal-profile-hero {
        padding: 28px 20px;
    }

    .plocal-profile-overview {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .plocal-profile-brand-column {
        align-items: flex-start;
    }

    .plocal-profile-business-mark {
        width: 86px;
        height: 86px;
        font-size: 30px;
    }

    .plocal-profile-verified-label {
        margin-top: 18px;
    }

    .plocal-profile-name {
        font-size: 29px;
    }

    .plocal-profile-facts {
        grid-template-columns: 1fr;
    }

    .plocal-profile-score-panel {
        min-height: 390px;
    }

    .plocal-profile-score-ring {
        width: 174px;
        height: 174px;
    }

    .plocal-profile-score-num {
        font-size: 58px;
    }

    .plocal-profile-metrics-heading {
        align-items: flex-start;
        flex-direction: column;
        padding: 27px 20px 19px;
    }

    .plocal-profile-preview .plocal-profile-metrics {
        grid-template-columns: 1fr;
        padding-right: 20px;
        padding-bottom: 35px;
        padding-left: 20px;
    }

    .plocal-profile-preview .plocal-metric:nth-child(3) {
        grid-column: auto;
    }

    .plocal-profile-preview .plocal-profile-actions {
        padding: 23px 20px;
    }

    .plocal-profile-action-buttons {
        width: 100%;
    }

    .plocal-profile-actions .theme-btn {
        flex: 1;
    }
}

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

@media (max-width: 480px) {
    .plocal-profile-badges {
        flex-direction: column;
    }

    .plocal-mini-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .plocal-profile-score-panel {
        min-height: 370px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .plocal-profile-preview .plocal-metric-header {
        grid-template-columns:
            46px
            minmax(0, 1fr);
    }

    .plocal-profile-preview .plocal-metric-val {
        grid-column: 2;
    }

    .plocal-profile-action-copy {
        align-items: flex-start;
    }

    .plocal-profile-action-buttons {
        flex-direction: column;
    }

    .plocal-profile-actions .theme-btn {
        width: 100%;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-profile-status-dot,
    .plocal-score-orbit-runner,
    .plocal-profile-score-num,
    .plocal-score-complete-icon,
    .plocal-profile-score-level {
        animation: none !important;
    }

    .plocal-score-progress {
        transition: none;
    }

    .plocal-profile-score-level,
    .plocal-score-complete-icon {
        opacity: 1;
        transform: none;
    }

    .plocal-mini-badge,
    .plocal-profile-preview .plocal-metric,
    .plocal-profile-actions .theme-btn {
        transition: none;
    }
}
/* ==========================================================
   PLOCAL — TRUST & SAFETY
   WHITE BACKGROUND + UNIFIED PLOCAL BRAND SYSTEM
========================================================== */

.plocal-trust {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 4% 10%,
            rgba(36, 189, 199, 0.045),
            transparent 23%
        ),
        radial-gradient(
            circle at 96% 90%,
            rgba(12, 44, 122, 0.035),
            transparent 27%
        ),
        var(--color-white);
}

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

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

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

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

.plocal-trust-vectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Animated vector routes */

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

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

.plocal-trust-route-tertiary {
    opacity: 0.09;
    animation-duration: 36s;
}

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

    to {
        stroke-dashoffset: -320;
    }
}

/* Moving vector particles */

.plocal-trust-particle {
    fill: var(--theme-color);
    opacity: 0.7;
    filter: url("#plocal-trust-particle-glow");
}

.plocal-trust-particle-small {
    fill: var(--color-skyblue);
    opacity: 0.48;
}

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

.plocal-trust-bg-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color2);
    line-height: 1;
    border: 1px solid rgba(12, 44, 122, 0.055);
    border-radius: 28px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.16);
    animation:
        plocalTrustIconFade
        18s
        ease-in-out
        infinite;
}

.plocal-trust-bg-icon::before {
    position: absolute;
    content: "";
    inset: 9px;
    border: 1px solid rgba(36, 189, 199, 0.045);
    border-radius: 21px;
}

.plocal-trust-bg-icon i {
    position: relative;
    z-index: 2;
    opacity: 0.65;
}

/* Shield */

.plocal-trust-bg-icon-shield {
    top: 12%;
    left: 2%;
    width: 128px;
    height: 128px;
    font-size: 56px;
    animation-delay: 0s;
}

/* Search */

.plocal-trust-bg-icon-search {
    top: 26%;
    left: 14%;
    width: 88px;
    height: 88px;
    font-size: 36px;
    animation-delay: 3.6s;
}

/* Document */

.plocal-trust-bg-icon-document {
    top: 8%;
    right: 18%;
    width: 118px;
    height: 118px;
    font-size: 50px;
    animation-delay: 7.2s;
}

/* Lock */

.plocal-trust-bg-icon-lock {
    top: 23%;
    right: 3%;
    width: 98px;
    height: 98px;
    font-size: 41px;
    animation-delay: 10.8s;
}

/* Warning */

.plocal-trust-bg-icon-warning {
    right: 4%;
    bottom: 7%;
    width: 112px;
    height: 112px;
    font-size: 46px;
    animation-delay: 14.4s;
}

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

    26%,
    47% {
        opacity: 0.045;
        transform:
            translateY(0)
            scale(1);
    }

    60% {
        opacity: 0.02;
        transform:
            translateY(-5px)
            scale(1.01);
    }

    74% {
        opacity: 0;
        transform:
            translateY(-9px)
            scale(1.02);
    }
}

/* ==========================================================
   FLOATING LIGHT POINTS
========================================================== */

.plocal-trust-light {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 6px var(--theme-color),
        0 0 17px rgba(36, 189, 199, 0.36);
    animation:
        plocalTrustLightPulse
        4.2s
        ease-in-out
        infinite;
}

.plocal-trust-light-1 {
    top: 14%;
    left: 17%;
}

.plocal-trust-light-2 {
    top: 17%;
    right: 20%;
    animation-delay: 0.85s;
}

.plocal-trust-light-3 {
    right: 9%;
    bottom: 20%;
    animation-delay: 1.7s;
}

.plocal-trust-light-4 {
    bottom: 11%;
    left: 18%;
    animation-delay: 2.55s;
}

.plocal-trust-light-5 {
    right: 48%;
    bottom: 7%;
    animation-delay: 3.4s;
}

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

    50% {
        opacity: 0.82;
        transform: scale(1.4);
    }
}

/* ==========================================================
   SOFT BACKGROUND SCAN
========================================================== */

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

@keyframes plocalTrustScan {
    0%,
    15% {
        left: -36%;
        opacity: 0;
    }

    25% {
        opacity: 0.75;
    }

    62% {
        opacity: 0.48;
    }

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

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

.plocal-trust-heading {
    position: relative;
    z-index: 4;
    max-width: 920px;
    margin: 0 auto clamp(44px, 4vw, 62px);
}

.plocal-trust .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 15px 7px 8px;
    margin-bottom: 18px;
    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.15);
    border-radius: 50px;
    background: var(--theme-color-light);
}

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

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

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

.plocal-trust .plocal-section-intro {
    max-width: 790px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.75;
}

.plocal-trust .plocal-section-intro strong {
    color: var(--theme-color2);
    font-weight: 700;
}

/* ==========================================================
   TRUST GRID
========================================================== */

.plocal-trust-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.7vw, 27px);
    width: 100%;
}

/* ==========================================================
   TRUST CARD
   Unified brand styling for every topic
========================================================== */

.plocal-trust-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 21px;
    min-width: 0;
    min-height: 178px;
    padding: clamp(24px, 1.8vw, 30px);
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 251, 255, 0.88)
        );
    box-shadow:
        0 15px 38px rgba(8, 29, 77, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition:
        transform 0.38s ease,
        border-color 0.38s ease,
        background 0.38s ease,
        box-shadow 0.38s ease;
}

/* Soft turquoise tint */

.plocal-trust-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.025) 45%,
            transparent 72%
        );
    transition: opacity 0.38s ease;
}

/* Bottom brand accent */

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

/* ==========================================================
   CARD HOVER
========================================================== */

.plocal-trust-card:hover,
.plocal-trust-card:focus-within {
    border-color: rgba(36, 189, 199, 0.42);
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.07),
            var(--color-white) 64%
        );
    box-shadow:
        0 22px 48px rgba(8, 29, 77, 0.1),
        0 0 25px rgba(36, 189, 199, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateY(-6px);
}

.plocal-trust-card:hover::before,
.plocal-trust-card:focus-within::before {
    opacity: 1;
}

.plocal-trust-card:hover::after,
.plocal-trust-card:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
}

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

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

.plocal-trust-card:hover
.plocal-trust-card-shine,
.plocal-trust-card:focus-within
.plocal-trust-card-shine {
    animation:
        plocalTrustCardShine
        0.82s
        ease
        forwards;
}

@keyframes plocalTrustCardShine {
    0% {
        left: -42%;
        opacity: 0;
    }

    28% {
        opacity: 0.68;
    }

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

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

.plocal-trust-card-number {
    position: absolute;
    z-index: 3;
    top: 19px;
    right: 22px;
    color: rgba(12, 44, 122, 0.16);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.plocal-trust-card:hover
.plocal-trust-card-number,
.plocal-trust-card:focus-within
.plocal-trust-card-number {
    color: rgba(36, 189, 199, 0.8);
    transform: translateY(-2px);
}

/* ==========================================================
   CARD ICON
   Rounded-square, consistent with the rest of PLOCAL
========================================================== */

.plocal-trust-card-icon {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    color: var(--theme-color2);
    font-size: 27px;
    border: 1px solid rgba(36, 189, 199, 0.13);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            var(--theme-color-light),
            rgba(255, 255, 255, 0.95)
        );
    box-shadow:
        0 10px 24px rgba(8, 29, 77, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition:
        color 0.38s ease,
        border-color 0.38s ease,
        background 0.38s ease,
        box-shadow 0.38s ease,
        transform 0.38s ease;
}

/* Subtle internal icon detail */

.plocal-trust-card-icon::before {
    position: absolute;
    content: "";
    inset: 7px;
    pointer-events: none;
    border: 1px solid rgba(36, 189, 199, 0.07);
    border-radius: 14px;
    transition:
        border-color 0.38s ease,
        transform 0.38s ease;
}

.plocal-trust-card-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.38s ease;
}

/* Brand-consistent icon hover */

.plocal-trust-card:hover
.plocal-trust-card-icon,
.plocal-trust-card:focus-within
.plocal-trust-card-icon {
    color: var(--color-white);
    border-color: rgba(36, 189, 199, 0.45);
    background:
        linear-gradient(
            145deg,
            var(--theme-color2),
            var(--color-dark)
        );
    box-shadow:
        0 15px 31px rgba(12, 44, 122, 0.17),
        0 0 20px rgba(36, 189, 199, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.plocal-trust-card:hover
.plocal-trust-card-icon::before,
.plocal-trust-card:focus-within
.plocal-trust-card-icon::before {
    border-color: rgba(98, 211, 218, 0.19);
    transform: scale(0.96);
}

.plocal-trust-card:hover
.plocal-trust-card-icon i,
.plocal-trust-card:focus-within
.plocal-trust-card-icon i {
    transform: scale(1.08);
}

/* Small turquoise status corner */

.plocal-trust-card-icon::after {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 18px;
    height: 18px;
    content: "";
    border: 4px solid var(--color-white);
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 5px 13px rgba(36, 189, 199, 0.18);
    transform: scale(0.82);
    transition: transform 0.38s ease;
}

.plocal-trust-card:hover
.plocal-trust-card-icon::after,
.plocal-trust-card:focus-within
.plocal-trust-card-icon::after {
    transform: scale(1);
}

/* ==========================================================
   CARD CONTENT
========================================================== */

.plocal-trust-card-content {
    position: relative;
    z-index: 3;
    min-width: 0;
    padding-right: 20px;
}

.plocal-trust-card h3 {
    margin: 0 0 9px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.25px;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

/*
The title remains navy on hover.
This avoids the rainbow-card appearance.
*/

.plocal-trust-card:hover h3,
.plocal-trust-card:focus-within h3 {
    color: var(--theme-color2);
    transform: translateX(3px);
}

.plocal-trust-card p {
    max-width: 410px;
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.7;
    transition: color 0.35s ease;
}

.plocal-trust-card:hover p,
.plocal-trust-card:focus-within p {
    color: var(--color-dark);
}

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

.plocal-trust-cta-wrap {
    position: relative;
    z-index: 4;
    margin-top: clamp(38px, 4vw, 55px);
}

.plocal-trust .plocal-trust-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 60px;
    padding: 15px 30px;
    color: var(--color-white);
    border: 1px solid rgba(36, 189, 199, 0.35);
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 16px 33px rgba(36, 189, 199, 0.18);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease;
}

.plocal-trust .plocal-trust-cta:hover {
    color: var(--color-white);
    box-shadow:
        0 20px 40px rgba(36, 189, 199, 0.24);
    transform: translateY(-3px);
}

.plocal-trust-cta-arrow {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.plocal-trust-cta:hover
.plocal-trust-cta-arrow {
    transform: translateX(5px);
}

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

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

    .plocal-trust-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 18px;
        min-height: 172px;
        padding: 25px;
    }

    .plocal-trust-card-icon {
        width: 68px;
        height: 68px;
        font-size: 24px;
        border-radius: 17px;
    }

    .plocal-trust-card-icon::before {
        border-radius: 12px;
    }

    .plocal-trust-card h3 {
        font-size: 19px;
    }
}

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

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

    .plocal-trust-card {
        min-height: 174px;
    }

    .plocal-trust-bg-icon-search,
    .plocal-trust-bg-icon-document {
        display: none;
    }
}

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

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

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

    .plocal-trust-heading {
        margin-bottom: 38px;
    }

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

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

    .plocal-trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plocal-trust-card {
        min-height: 162px;
    }

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

    .plocal-trust-scan {
        width: 36%;
    }
}

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

@media (max-width: 480px) {
    .plocal-trust-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 15px;
        min-height: 150px;
        padding: 20px 17px;
        border-radius: 18px;
    }

    .plocal-trust-card-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
        border-radius: 15px;
    }

    .plocal-trust-card-icon::before {
        inset: 6px;
        border-radius: 10px;
    }

    .plocal-trust-card-icon::after {
        right: -4px;
        bottom: -4px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .plocal-trust-card-content {
        padding-right: 0;
    }

    .plocal-trust-card-number {
        top: 14px;
        right: 16px;
        font-size: 11px;
    }

    .plocal-trust-card h3 {
        padding-right: 22px;
        font-size: 18px;
    }

    .plocal-trust-card p {
        font-size: 13px;
    }

    .plocal-trust .plocal-trust-cta {
        width: 100%;
        padding-right: 19px;
        padding-left: 19px;
    }
}

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

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

    .plocal-trust-card-icon {
        color: var(--theme-color2);
        border-color: rgba(36, 189, 199, 0.16);
        background:
            linear-gradient(
                145deg,
                var(--theme-color-light),
                var(--color-white)
            );
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-trust-route,
    .plocal-trust-bg-icon,
    .plocal-trust-light,
    .plocal-trust-scan,
    .plocal-trust-card-shine {
        animation: none !important;
    }

    .plocal-trust-particle {
        display: none;
    }

    .plocal-trust-card,
    .plocal-trust-card-icon,
    .plocal-trust-card-icon i,
    .plocal-trust-card h3,
    .plocal-trust-card-number,
    .plocal-trust-cta,
    .plocal-trust-cta-arrow {
        transition: none;
    }
}

/* ==========================================================
   PLOCAL — NATIONWIDE PLATFORM
   WHITE BACKGROUND + WIDE LAYOUT + ANIMATED STATISTICS
========================================================== */

.plocal-nationwide {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(90px, 8vw, 130px) 0;
    background:
        radial-gradient(
            circle at 3% 12%,
            rgba(36, 189, 199, 0.045),
            transparent 23%
        ),
        radial-gradient(
            circle at 97% 88%,
            rgba(12, 44, 122, 0.035),
            transparent 27%
        ),
        var(--color-white);
}

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

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

/* ==========================================================
   MAIN DISTRIBUTION
========================================================== */

.plocal-nationwide-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(580px, 1.1fr);
    align-items: center;
    gap: clamp(46px, 5vw, 95px);
    width: 100%;
}

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

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

.plocal-nationwide-vectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.plocal-nationwide-route {
    fill: none;
    stroke: url("#plocal-nationwide-line-gradient");
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 4 18;
    opacity: 0.18;
    vector-effect: non-scaling-stroke;
    animation:
        plocalNationwideRoute
        26s
        linear
        infinite;
}

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

.plocal-nationwide-route-tertiary {
    opacity: 0.08;
    animation-duration: 38s;
}

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

    to {
        stroke-dashoffset: -330;
    }
}

.plocal-nationwide-particle {
    fill: var(--theme-color);
    opacity: 0.7;
    filter: url("#plocal-nationwide-glow");
}

.plocal-nationwide-particle-small {
    fill: var(--color-skyblue);
    opacity: 0.48;
}

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

.plocal-nationwide-dot-field {
    position: absolute;
    width: 180px;
    height: 180px;
    opacity: 0.38;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.27) 1.5px,
            transparent 1.5px
        );
    background-size: 18px 18px;
    animation:
        plocalNationwideDots
        8s
        ease-in-out
        infinite;
}

.plocal-nationwide-dot-field-left {
    top: 10%;
    left: -20px;
    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 82%
        );
    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 82%
        );
}

.plocal-nationwide-dot-field-right {
    right: 1%;
    bottom: 5%;
    animation-delay: 4s;
    mask-image:
        linear-gradient(
            315deg,
            #000,
            transparent 82%
        );
    -webkit-mask-image:
        linear-gradient(
            315deg,
            #000,
            transparent 82%
        );
}

@keyframes plocalNationwideDots {
    0%,
    100% {
        opacity: 0.26;
        transform: translateY(0);
    }

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

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

.plocal-nationwide-ring {
    position: absolute;
    border: 1px solid rgba(36, 189, 199, 0.07);
    border-radius: 50%;
    animation:
        plocalNationwideRingFloat
        12s
        ease-in-out
        infinite;
}

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

.plocal-nationwide-ring::before {
    inset: 32px;
}

.plocal-nationwide-ring::after {
    inset: 66px;
}

.plocal-nationwide-ring-left {
    bottom: -230px;
    left: -220px;
    width: 520px;
    height: 520px;
}

.plocal-nationwide-ring-right {
    top: -270px;
    right: -230px;
    width: 560px;
    height: 560px;
    animation-delay: 4s;
}

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

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

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

.plocal-nationwide-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:
        plocalNationwideLight
        4s
        ease-in-out
        infinite;
}

.plocal-nationwide-light-1 {
    top: 18%;
    left: 4%;
}

.plocal-nationwide-light-2 {
    top: 25%;
    right: 45%;
    animation-delay: 1s;
}

.plocal-nationwide-light-3 {
    right: 8%;
    bottom: 14%;
    animation-delay: 2s;
}

.plocal-nationwide-light-4 {
    bottom: 12%;
    left: 11%;
    animation-delay: 3s;
}

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

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

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

.plocal-nationwide-scan {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -35%;
    width: 18%;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.035),
            rgba(98, 211, 218, 0.025),
            transparent
        );
    filter: blur(9px);
    transform: skewX(-18deg);
    animation:
        plocalNationwideScan
        16s
        ease-in-out
        infinite;
}

@keyframes plocalNationwideScan {
    0%,
    15% {
        left: -35%;
        opacity: 0;
    }

    25% {
        opacity: 0.75;
    }

    62% {
        opacity: 0.5;
    }

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

/* ==========================================================
   LEFT CONTENT
========================================================== */

.plocal-nationwide-content {
    position: relative;
    z-index: 4;
    min-width: 0;
}

.plocal-nationwide .site-title-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 16px 7px 8px;
    margin-bottom: 21px;
    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-nationwide .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-nationwide-title {
    max-width: 820px;
    margin: 0 0 24px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

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

.plocal-nationwide-text {
    max-width: 780px;
    margin: 0 0 clamp(34px, 3vw, 45px);
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.85;
}

.plocal-nationwide-text strong {
    color: var(--theme-color2);
    font-weight: 700;
}

/* ==========================================================
   STATISTICS GRID
========================================================== */

.plocal-nationwide-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(13px, 1.4vw, 20px);
    width: 100%;
    max-width: 860px;
}

/* ==========================================================
   STATISTIC CARD
========================================================== */

.plocal-stat {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 220px;
    padding: 24px 14px 21px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-info-color);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 251, 255, 0.9)
        );
    box-shadow:
        0 15px 38px rgba(8, 29, 77, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition:
        transform 0.38s ease,
        border-color 0.38s ease,
        box-shadow 0.38s ease,
        background 0.38s ease;
}

/* Internal glow */

.plocal-stat::before {
    position: absolute;
    top: -75px;
    left: 50%;
    width: 170px;
    height: 170px;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.16),
            transparent 70%
        );
    transform: translateX(-50%);
    transition: opacity 0.4s ease;
}

/* Bottom line */

.plocal-stat::after {
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;
    height: 2px;
    content: "";
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--theme-color),
            transparent
        );
    transform: scaleX(0.3);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.plocal-stat:hover {
    border-color: rgba(36, 189, 199, 0.36);
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.065),
            var(--color-white) 65%
        );
    box-shadow:
        0 22px 48px rgba(8, 29, 77, 0.105),
        0 0 24px rgba(36, 189, 199, 0.07);
    transform: translateY(-7px);
}

.plocal-stat:hover::before {
    opacity: 1;
}

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

/* ==========================================================
   STAT ICON
========================================================== */

.plocal-stat-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 16px;
    color: var(--theme-color);
    font-size: 24px;
    border: 1px solid rgba(36, 189, 199, 0.12);
    border-radius: 50%;
    background: var(--theme-bg-light);
    transition:
        color 0.38s ease,
        background 0.38s ease,
        box-shadow 0.38s ease,
        transform 0.38s ease;
}

.plocal-stat-icon::after {
    position: absolute;
    inset: -5px;
    content: "";
    border: 1px solid rgba(36, 189, 199, 0);
    border-radius: inherit;
    transition:
        border-color 0.38s ease,
        transform 0.38s ease;
}

.plocal-stat:hover .plocal-stat-icon {
    color: var(--color-white);
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 13px 28px rgba(36, 189, 199, 0.2);
    transform: translateY(-3px) scale(1.04);
}

.plocal-stat:hover .plocal-stat-icon::after {
    border-color: rgba(36, 189, 199, 0.18);
    transform: scale(1.08);
}

/* ==========================================================
   STAT NUMBER
========================================================== */

.plocal-stat-num {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 7px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(34px, 2.8vw, 48px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.plocal-stat.is-counting .plocal-stat-num {
    animation:
        plocalStatNumberPulse
        0.8s
        ease-in-out
        infinite;
}

.plocal-stat.is-complete .plocal-stat-num {
    animation:
        plocalStatComplete
        0.55s
        ease;
}

@keyframes plocalStatNumberPulse {
    0%,
    100% {
        opacity: 0.82;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes plocalStatComplete {
    0% {
        transform: scale(1);
    }

    55% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.plocal-stat-label {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 38px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.plocal-stat-line {
    position: relative;
    z-index: 2;
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 13px;
    border-radius: 20px;
    background: var(--theme-color);
    transition: width 0.38s ease;
}

.plocal-stat:hover .plocal-stat-line {
    width: 58px;
}

/* ==========================================================
   MAP PANEL
========================================================== */

.plocal-map-panel {
    position: relative;
    z-index: 4;
    min-width: 0;
    padding: clamp(24px, 2.5vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(36, 189, 199, 0.22);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(248, 254, 255, 0.96),
            rgba(255, 255, 255, 0.94)
        );
    box-shadow:
        0 28px 70px rgba(8, 29, 77, 0.095),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Animated panel border */

.plocal-map-panel::before {
    position: absolute;
    z-index: 0;
    inset: -1px;
    content: "";
    pointer-events: none;
    border-radius: inherit;
    opacity: 0.42;
    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(36, 189, 199, 0.16),
            transparent 52%
        );
    background-size: 220% 100%;
    animation:
        plocalMapBorderMove
        8s
        linear
        infinite;
}

@keyframes plocalMapBorderMove {
    from {
        background-position: 120% 0;
    }

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

.plocal-map-panel-glow {
    position: absolute;
    z-index: 0;
    top: -190px;
    left: 42%;
    width: 450px;
    height: 450px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.12),
            transparent 70%
        );
    transform: translateX(-50%);
}

/* ==========================================================
   MAP HEADER
========================================================== */

.plocal-map-header {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 17px;
}

.plocal-map-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    color: var(--theme-color);
    font-size: 29px;
    border: 1px solid rgba(36, 189, 199, 0.12);
    border-radius: 50%;
    background: var(--theme-bg-light);
    box-shadow:
        0 12px 28px rgba(8, 29, 77, 0.055);
}

.plocal-map-heading-copy {
    min-width: 0;
}

.plocal-map-heading-copy h3 {
    margin: 0 0 5px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(23px, 1.8vw, 31px);
    font-weight: 700;
    line-height: 1.2;
}

.plocal-map-heading-copy p {
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.55;
}

/* ==========================================================
   MAP IMAGE
========================================================== */

.plocal-map-image-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(390px, 32vw, 570px);
    overflow: hidden;
    border: 1px solid rgba(36, 189, 199, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(36, 189, 199, 0.08),
            transparent 55%
        ),
        rgba(255, 255, 255, 0.55);
}

.plocal-map-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: contain;
    object-position: center;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

.plocal-map-panel:hover .plocal-map-image {
    filter:
        saturate(1.05)
        drop-shadow(
            0 18px 24px rgba(36, 189, 199, 0.08)
        );
    transform: scale(1.025);
}

/* ==========================================================
   MAP PULSES
========================================================== */

.plocal-map-pulse {
    position: absolute;
    width: 13px;
    height: 13px;
    pointer-events: none;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow:
        0 0 0 0 rgba(36, 189, 199, 0.25);
    animation:
        plocalMapPulse
        3s
        ease-out
        infinite;
}

.plocal-map-pulse-1 {
    top: 37%;
    left: 27%;
}

.plocal-map-pulse-2 {
    top: 51%;
    left: 54%;
    animation-delay: 1s;
}

.plocal-map-pulse-3 {
    right: 20%;
    bottom: 27%;
    animation-delay: 2s;
}

@keyframes plocalMapPulse {
    0% {
        opacity: 0.85;
        box-shadow:
            0 0 0 0 rgba(36, 189, 199, 0.28);
        transform: scale(0.8);
    }

    70% {
        opacity: 0.15;
        box-shadow:
            0 0 0 20px rgba(36, 189, 199, 0);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        box-shadow:
            0 0 0 26px rgba(36, 189, 199, 0);
    }
}

/* ==========================================================
   MAP LEGEND
========================================================== */

.plocal-map-legend {
    position: absolute;
    top: 28%;
    right: 3%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-width: 155px;
    padding: 16px 17px;
    border: 1px solid rgba(12, 44, 122, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 16px 34px rgba(8, 29, 77, 0.075);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.plocal-map-legend span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 600;
}

.plocal-map-legend i {
    width: 8px;
    height: 8px;
    border: 2px solid rgba(36, 189, 199, 0.22);
    border-radius: 50%;
    background: var(--theme-color);
}

/* ==========================================================
   NATIONWIDE REACH BADGE
========================================================== */

.plocal-map-reach {
    position: absolute;
    bottom: 4%;
    left: 3%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 215px;
    padding: 14px 16px;
    border: 1px solid rgba(12, 44, 122, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 16px 34px rgba(8, 29, 77, 0.075);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

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

.plocal-map-reach strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
}

.plocal-map-reach span {
    display: block;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 10px;
    line-height: 1.4;
}

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

@media (max-width: 1499px) {
    .plocal-nationwide-layout {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(520px, 1.08fr);
        gap: 52px;
    }

    .plocal-nationwide-shell {
        padding-right: 30px;
        padding-left: 30px;
    }

    .plocal-nationwide-stats {
        gap: 12px;
    }

    .plocal-stat {
        min-height: 205px;
        padding-right: 11px;
        padding-left: 11px;
    }

    .plocal-stat-icon {
        width: 59px;
        height: 59px;
        font-size: 21px;
    }
}

/* ==========================================================
   SMALL DESKTOP
========================================================== */

@media (max-width: 1199px) {
    .plocal-nationwide-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .plocal-nationwide-content {
        max-width: 1050px;
        margin: 0 auto;
        text-align: center;
    }

    .plocal-nationwide .site-title-tagline {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-nationwide-title,
    .plocal-nationwide-text {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-nationwide-stats {
        max-width: 960px;
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-map-panel {
        width: 100%;
        max-width: 1150px;
        margin: 0 auto;
    }
}

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

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

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

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

    .plocal-nationwide-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .plocal-nationwide-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .plocal-stat {
        min-height: 190px;
    }

    .plocal-map-panel {
        padding: 20px;
        border-radius: 23px;
    }

    .plocal-map-header {
        align-items: flex-start;
    }

    .plocal-map-heading-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .plocal-map-heading-copy h3 {
        font-size: 22px;
    }

    .plocal-map-image-wrap {
        min-height: 380px;
    }

    .plocal-map-legend {
        top: auto;
        right: 12px;
        bottom: 12px;
    }

    .plocal-map-reach {
        bottom: 12px;
        left: 12px;
    }

    .plocal-nationwide-dot-field-right,
    .plocal-nationwide-ring-right {
        display: none;
    }
}

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

@media (max-width: 520px) {
    .plocal-nationwide-stats {
        gap: 12px;
    }

    .plocal-stat {
        min-height: 175px;
        padding: 20px 9px;
        border-radius: 18px;
    }

    .plocal-stat-icon {
        width: 53px;
        height: 53px;
        margin-bottom: 13px;
        font-size: 19px;
    }

    .plocal-stat-num {
        font-size: 32px;
    }

    .plocal-stat-label {
        font-size: 11px;
    }

    .plocal-map-panel {
        padding: 17px;
    }

    .plocal-map-image-wrap {
        min-height: 330px;
    }

    .plocal-map-legend {
        display: none;
    }

    .plocal-map-reach {
        right: 12px;
        left: 12px;
        min-width: 0;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-nationwide-route,
    .plocal-nationwide-dot-field,
    .plocal-nationwide-ring,
    .plocal-nationwide-light,
    .plocal-nationwide-scan,
    .plocal-map-panel::before,
    .plocal-map-pulse,
    .plocal-stat-num {
        animation: none !important;
    }

    .plocal-nationwide-particle {
        display: none;
    }

    .plocal-stat,
    .plocal-stat-icon,
    .plocal-stat-line,
    .plocal-map-image {
        transition: none;
    }
}

/* ==========================================================
   PLOCAL — LEARN MORE / RESOURCES
   WHITE SECTION + FEATURED BADGE + COMPACT NAVY CARDS
========================================================== */

.plocal-resources {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 4% 12%,
            rgba(36, 189, 199, 0.045),
            transparent 23%
        ),
        radial-gradient(
            circle at 96% 88%,
            rgba(12, 44, 122, 0.035),
            transparent 27%
        ),
        var(--color-white);
}

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

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

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

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

/* Rings */

.plocal-resources-ring {
    position: absolute;
    border: 1px solid rgba(36, 189, 199, 0.07);
    border-radius: 50%;
    animation:
        plocalResourcesRingFloat
        13s
        ease-in-out
        infinite;
}

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

.plocal-resources-ring::before {
    inset: 40px;
}

.plocal-resources-ring::after {
    inset: 82px;
}

.plocal-resources-ring-left {
    top: -370px;
    left: -340px;
    width: 650px;
    height: 650px;
}

.plocal-resources-ring-right {
    right: -390px;
    bottom: -420px;
    width: 740px;
    height: 740px;
    animation-delay: 4s;
}

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

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

/* Dot fields */

.plocal-resources-dot-field {
    position: absolute;
    width: 180px;
    height: 180px;
    opacity: 0.34;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.26) 1.5px,
            transparent 1.5px
        );
    background-size: 18px 18px;
    animation:
        plocalResourcesDots
        8s
        ease-in-out
        infinite;
}

.plocal-resources-dot-field-left {
    top: 7%;
    left: 4%;
    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 80%
        );
    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent 80%
        );
}

.plocal-resources-dot-field-right {
    right: 3%;
    bottom: 7%;
    animation-delay: 4s;
    mask-image:
        linear-gradient(
            315deg,
            #000,
            transparent 80%
        );
    -webkit-mask-image:
        linear-gradient(
            315deg,
            #000,
            transparent 80%
        );
}

@keyframes plocalResourcesDots {
    0%,
    100% {
        opacity: 0.24;
        transform: translateY(0);
    }

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

/* Floating lights */

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

.plocal-resources-light-1 {
    top: 24%;
    left: 12%;
}

.plocal-resources-light-2 {
    top: 18%;
    right: 15%;
    animation-delay: 1.3s;
}

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

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

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

/* Scanning light */

.plocal-resources-scan {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -35%;
    width: 18%;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.035),
            rgba(98, 211, 218, 0.025),
            transparent
        );
    filter: blur(9px);
    transform: skewX(-18deg);
    animation:
        plocalResourcesScan
        16s
        ease-in-out
        infinite;
}

@keyframes plocalResourcesScan {
    0%,
    15% {
        left: -35%;
        opacity: 0;
    }

    25% {
        opacity: 0.7;
    }

    62% {
        opacity: 0.45;
    }

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

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

.plocal-resources-heading {
    position: relative;
    z-index: 3;
    max-width: 1020px;
    margin: 0 auto clamp(42px, 4vw, 60px);
}

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

.plocal-resources .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-resources .site-title {
    margin: 0 0 20px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

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

.plocal-resources-intro {
    max-width: 850px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.75;
}

/* ==========================================================
   FEATURED TRUST PANEL
========================================================== */

.plocal-featured-trust {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:
        minmax(230px, 0.48fr)
        minmax(420px, 1fr)
        minmax(130px, 0.24fr);
    align-items: center;
    gap: clamp(28px, 3vw, 54px);
    width: 100%;
    max-width: 1600px;
    min-height: 245px;
    padding:
        clamp(28px, 2.8vw, 43px)
        clamp(28px, 3.5vw, 58px);
    margin: 0 auto clamp(24px, 2.2vw, 34px);
    overflow: hidden;
    border: 1px solid var(--border-info-color);
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 14% 50%,
            rgba(36, 189, 199, 0.08),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            var(--color-white),
            #fbfdff
        );
    box-shadow:
        0 24px 60px rgba(8, 29, 77, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

/* Featured glows */

.plocal-featured-glow {
    position: absolute;
    z-index: 0;
    width: 350px;
    height: 350px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(6px);
}

.plocal-featured-glow-left {
    top: -190px;
    left: -160px;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.15),
            transparent 70%
        );
}

.plocal-featured-glow-right {
    right: -190px;
    bottom: -220px;
    background:
        radial-gradient(
            circle,
            rgba(12, 44, 122, 0.08),
            transparent 70%
        );
}

/* ==========================================================
   FEATURED BADGE
========================================================== */

.plocal-featured-badge-area {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 190px;
}

.plocal-featured-badge-platform {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 220px;
    height: 190px;
}

.plocal-featured-badge-platform::before {
    position: absolute;
    right: 25px;
    bottom: 1px;
    left: 25px;
    height: 43px;
    content: "";
    border: 1px solid rgba(12, 44, 122, 0.07);
    border-radius: 50%;
    background:
        linear-gradient(
            180deg,
            var(--color-white),
            var(--color-gray)
        );
    box-shadow:
        0 18px 27px rgba(8, 29, 77, 0.085);
    transform: perspective(300px) rotateX(62deg);
}

.plocal-featured-badge-image {
    position: relative;
    z-index: 3;
    display: block;
    width: min(185px, 100%);
    max-height: 190px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 16px 20px rgba(8, 29, 77, 0.13)
        );
    animation:
        plocalFeaturedBadgeFloat
        4.8s
        ease-in-out
        infinite;
}

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

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

.plocal-featured-orbit {
    position: absolute;
    z-index: 1;
    border: 1px dashed rgba(36, 189, 199, 0.22);
    border-radius: 50%;
    animation:
        plocalFeaturedOrbit
        18s
        linear
        infinite;
}

.plocal-featured-orbit-one {
    width: 215px;
    height: 215px;
}

.plocal-featured-orbit-two {
    width: 260px;
    height: 260px;
    opacity: 0.5;
    animation-duration: 26s;
    animation-direction: reverse;
}

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

/* ==========================================================
   FEATURED COPY
========================================================== */

.plocal-featured-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.plocal-featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.plocal-featured-copy h3 {
    margin: 0 0 12px;
    color: var(--theme-color2);
    font-family: var(--heading-font);
    font-size: clamp(27px, 2.2vw, 38px);
    font-weight: 700;
    line-height: 1.18;
}

.plocal-featured-copy p {
    max-width: 720px;
    margin: 0 0 18px;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.72;
}

.plocal-featured-values {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.plocal-featured-values span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 35px;
    padding: 8px 13px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(36, 189, 199, 0.13);
    border-radius: 50px;
    background: var(--theme-bg-light);
}

/* ==========================================================
   FEATURED SHIELD
========================================================== */

.plocal-featured-shield {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 125px;
    height: 145px;
    color: rgba(36, 189, 199, 0.19);
    font-size: 69px;
    border: 1px solid rgba(36, 189, 199, 0.07);
    border-radius: 42% 42% 48% 48% / 31% 31% 68% 68%;
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.04),
            rgba(255, 255, 255, 0.2)
        );
    animation:
        plocalFeaturedShieldPulse
        4s
        ease-in-out
        infinite;
}

@keyframes plocalFeaturedShieldPulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }

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

/* ==========================================================
   RESOURCE GRID
========================================================== */

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

.plocal-resource-item {
    min-width: 0;
}

/* ==========================================================
   COMPACT NAVY RESOURCE CARD
========================================================== */

.plocal-resource-card {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 19px;
    min-width: 0;
    min-height: 245px;
    padding:
        clamp(25px, 2vw, 32px);
    overflow: hidden;
    color: var(--color-white);
    border: 1px solid var(--border-white-color);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(36, 189, 199, 0.13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--theme-color2),
            var(--color-dark)
        );
    box-shadow:
        0 20px 46px rgba(8, 29, 77, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.plocal-resource-card:hover,
.plocal-resource-card:focus-visible {
    color: var(--color-white);
    border-color: rgba(36, 189, 199, 0.62);
    box-shadow:
        0 27px 58px rgba(8, 29, 77, 0.22),
        0 0 28px rgba(36, 189, 199, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    transform: translateY(-7px);
}

/* Animated internal turquoise glow */

.plocal-resource-card-glow {
    position: absolute;
    z-index: 0;
    top: -140px;
    right: -130px;
    width: 290px;
    height: 290px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.5;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.27),
            transparent 67%
        );
    transform: scale(0.75);
    transition:
        opacity 0.45s ease,
        transform 0.65s ease;
}

.plocal-resource-card:hover
.plocal-resource-card-glow {
    opacity: 0.95;
    transform: scale(1.08);
}

/* Bottom accent */

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

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

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

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

.plocal-resource-card:hover
.plocal-resource-card-shine {
    animation:
        plocalResourceCardShine
        0.9s
        ease
        forwards;
}

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

    25% {
        opacity: 0.7;
    }

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

/* ==========================================================
   RESOURCE NUMBER
========================================================== */

.plocal-resource-number {
    position: absolute;
    z-index: 4;
    top: 23px;
    right: 25px;
    color: rgba(98, 211, 218, 0.36);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

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

/* ==========================================================
   RESOURCE ICON
========================================================== */

.plocal-resource-icon {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--theme-color);
    font-size: 23px;
    border: 1px solid rgba(36, 189, 199, 0.24);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(36, 189, 199, 0.15),
            rgba(255, 255, 255, 0.055)
        );
    box-shadow:
        0 13px 27px rgba(0, 0, 0, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transition:
        color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.plocal-resource-icon::before {
    position: absolute;
    content: "";
    inset: 7px;
    border: 1px solid rgba(98, 211, 218, 0.1);
    border-radius: 12px;
}

.plocal-resource-card:hover
.plocal-resource-icon {
    color: var(--color-white);
    background:
        linear-gradient(
            145deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 16px 32px rgba(36, 189, 199, 0.22);
    transform: translateY(-3px);
}

/* ==========================================================
   RESOURCE CONTENT
========================================================== */

.plocal-resource-content {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
    min-height: 181px;
    padding-top: 1px;
    padding-right: 58px;
}

.plocal-resource-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.plocal-resource-content h3 {
    max-width: 350px;
    margin: 0 0 11px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: clamp(19px, 1.3vw, 23px);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -0.3px;
}

.plocal-resource-content p {
    max-width: 390px;
    margin: 0 0 21px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.7;
}

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

.plocal-resource-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.plocal-resource-card:hover
.plocal-resource-link i {
    transform: translateX(6px);
}

/* ==========================================================
   SUBTLE WATERMARK
========================================================== */

.plocal-resource-watermark {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    color: rgba(98, 211, 218, 0.085);
    font-size: 72px;
    pointer-events: none;
    transform: rotate(-5deg);
    transition:
        color 0.45s ease,
        opacity 0.45s ease,
        transform 0.55s ease;
}

.plocal-resource-card:hover
.plocal-resource-watermark {
    color: rgba(98, 211, 218, 0.16);
    transform:
        translateY(-5px)
        rotate(0deg)
        scale(1.04);
}

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

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

    .plocal-featured-trust {
        grid-template-columns:
            230px
            minmax(0, 1fr)
            120px;
    }

    .plocal-resource-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 17px;
        min-height: 245px;
        padding: 27px 24px;
    }

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

    .plocal-resource-content {
        padding-right: 42px;
    }

    .plocal-resource-watermark {
        right: 13px;
        bottom: 13px;
        width: 95px;
        height: 95px;
        font-size: 61px;
    }
}

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

@media (max-width: 991px) {
    .plocal-featured-trust {
        grid-template-columns:
            220px
            minmax(0, 1fr);
    }

    .plocal-featured-shield {
        display: none;
    }

    .plocal-resource-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .plocal-resource-item:last-child {
        grid-column: 1 / -1;
    }

    .plocal-resource-item:last-child
    .plocal-resource-card {
        max-width: 820px;
        margin: 0 auto;
    }
}

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

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

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

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

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

    .plocal-featured-trust {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        text-align: center;
    }

    .plocal-featured-values {
        justify-content: center;
    }

    .plocal-resource-grid {
        grid-template-columns: 1fr;
    }

    .plocal-resource-item:last-child {
        grid-column: auto;
    }

    .plocal-resource-item:last-child
    .plocal-resource-card {
        max-width: none;
    }

    .plocal-resource-card {
        min-height: 225px;
    }

    .plocal-resources-dot-field-right,
    .plocal-resources-ring-right {
        display: none;
    }
}

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

@media (max-width: 520px) {
    .plocal-featured-badge-platform {
        width: 185px;
        height: 180px;
    }

    .plocal-featured-badge-image {
        width: 160px;
    }

    .plocal-featured-orbit-one {
        width: 195px;
        height: 195px;
    }

    .plocal-featured-orbit-two {
        width: 235px;
        height: 235px;
    }

    .plocal-resource-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        min-height: 250px;
        padding: 23px 18px;
    }

    .plocal-resource-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        border-radius: 15px;
    }

    .plocal-resource-content {
        min-height: 202px;
        padding-right: 12px;
    }

    .plocal-resource-content h3 {
        padding-right: 15px;
        font-size: 18px;
    }

    .plocal-resource-content p {
        font-size: 12px;
    }

    .plocal-resource-watermark {
        right: 8px;
        bottom: 10px;
        width: 76px;
        height: 76px;
        font-size: 49px;
        opacity: 0.75;
    }

    .plocal-resource-number {
        top: 17px;
        right: 18px;
        font-size: 11px;
    }
}

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

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

    .plocal-resource-card-glow {
        opacity: 0.7;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-resources-ring,
    .plocal-resources-dot-field,
    .plocal-resources-light,
    .plocal-resources-scan,
    .plocal-featured-badge-image,
    .plocal-featured-orbit,
    .plocal-featured-shield,
    .plocal-resource-card-shine {
        animation: none !important;
    }

    .plocal-resource-card,
    .plocal-resource-card-glow,
    .plocal-resource-icon,
    .plocal-resource-number,
    .plocal-resource-link i,
    .plocal-resource-watermark {
        transition: none;
    }
}

/* ==========================================================
   PLOCAL — FINAL CTA
========================================================== */

.plocal-final-cta {
    position: relative;
    padding: clamp(70px, 7vw, 110px) 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--color-white);
}

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

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

/* ==========================================================
   MAIN NAVY PANEL
========================================================== */

.plocal-final-panel {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(600px, 1.05fr);
    align-items: center;
    gap: clamp(45px, 5vw, 95px);
    width: 100%;
    min-height: clamp(570px, 44vw, 680px);
    padding:
        clamp(48px, 5vw, 86px)
        clamp(34px, 5.2vw, 96px);
    overflow: hidden;
    border: 1px solid var(--border-white-color);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 83% 32%,
            rgba(36, 189, 199, 0.13),
            transparent 29%
        ),
        radial-gradient(
            circle at 54% 110%,
            rgba(36, 189, 199, 0.07),
            transparent 38%
        ),
        linear-gradient(
            125deg,
            var(--theme-color2),
            var(--color-dark)
        );
    box-shadow:
        0 32px 80px rgba(8, 29, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Soft inner border */

.plocal-final-panel::before {
    position: absolute;
    z-index: 0;
    inset: 12px;
    content: "";
    pointer-events: none;
    border: 1px solid var(--border-white-color2);
    border-radius: 24px;
}

/* Bottom digital terrain */

.plocal-final-panel::after {
    position: absolute;
    z-index: 0;
    right: -6%;
    bottom: -43%;
    width: 66%;
    height: 75%;
    content: "";
    pointer-events: none;
    opacity: 0.22;
    border-radius: 50%;
    background-image:
        radial-gradient(
            rgba(36, 189, 199, 0.6) 1px,
            transparent 1px
        );
    background-size: 13px 13px;
    transform:
        perspective(650px)
        rotateX(68deg)
        rotateZ(-6deg);
    animation:
        plocalFinalTerrain
        9s
        ease-in-out
        infinite;
}

@keyframes plocalFinalTerrain {
    0%,
    100% {
        opacity: 0.16;
        transform:
            perspective(650px)
            rotateX(68deg)
            rotateZ(-6deg)
            translateY(0);
    }

    50% {
        opacity: 0.28;
        transform:
            perspective(650px)
            rotateX(68deg)
            rotateZ(-4deg)
            translateY(-13px);
    }
}

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

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

.plocal-final-routes {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: calc(100% - clamp(36px, 5vw, 96px));
    max-width: 1824px;
    height: calc(100% - clamp(80px, 9vw, 150px));
    transform: translate(-50%, -50%);
}

.plocal-final-route {
    fill: none;
    stroke: url("#plocal-final-route-gradient");
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 16;
    opacity: 0.48;
    vector-effect: non-scaling-stroke;
    animation:
        plocalFinalRouteMove
        18s
        linear
        infinite;
}

.plocal-final-route-secondary {
    opacity: 0.34;
    animation-duration: 25s;
    animation-direction: reverse;
}

.plocal-final-route-tertiary {
    opacity: 0.16;
    animation-duration: 31s;
}

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

    to {
        stroke-dashoffset: -290;
    }
}

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

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

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

.plocal-final-dot-field {
    position: absolute;
    z-index: 1;
    width: 220px;
    height: 220px;
    opacity: 0.16;
    background-image:
        radial-gradient(
            rgba(98, 211, 218, 0.6) 1.3px,
            transparent 1.3px
        );
    background-size: 17px 17px;
    animation:
        plocalFinalDots
        8s
        ease-in-out
        infinite;
}

.plocal-final-dot-field-left {
    bottom: 10%;
    left: 4%;
}

.plocal-final-dot-field-right {
    top: 14%;
    right: 4%;
    animation-delay: 4s;
}

@keyframes plocalFinalDots {
    0%,
    100% {
        opacity: 0.11;
        transform: translateY(0);
    }

    50% {
        opacity: 0.24;
        transform: translateY(-9px);
    }
}

/* ==========================================================
   DECORATIVE RINGS
========================================================== */

.plocal-final-ring {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(36, 189, 199, 0.12);
    border-radius: 50%;
    animation:
        plocalFinalRingFloat
        13s
        ease-in-out
        infinite;
}

.plocal-final-ring::before,
.plocal-final-ring::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(98, 211, 218, 0.06);
    border-radius: inherit;
}

.plocal-final-ring::before {
    inset: 35px;
}

.plocal-final-ring::after {
    inset: 72px;
}

.plocal-final-ring-one {
    top: -240px;
    right: 4%;
    width: 520px;
    height: 520px;
}

.plocal-final-ring-two {
    bottom: -310px;
    left: 7%;
    width: 570px;
    height: 570px;
    animation-delay: 5s;
}

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

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

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

.plocal-final-bg-icon {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-skyblue);
    border: 1px solid rgba(98, 211, 218, 0.13);
    border-radius: 24px;
    opacity: 0;
    animation:
        plocalFinalIconFade
        14s
        ease-in-out
        infinite;
}

.plocal-final-bg-icon-store {
    top: 16%;
    right: 41%;
    width: 80px;
    height: 80px;
    font-size: 28px;
}

.plocal-final-bg-icon-users {
    right: 5%;
    bottom: 17%;
    width: 88px;
    height: 88px;
    font-size: 31px;
    animation-delay: 4.6s;
}

.plocal-final-bg-icon-shield {
    bottom: 12%;
    left: 52%;
    width: 70px;
    height: 70px;
    font-size: 25px;
    animation-delay: 9.2s;
}

@keyframes plocalFinalIconFade {
    0%,
    15%,
    100% {
        opacity: 0;
        transform:
            translateY(10px)
            scale(0.94);
    }

    27%,
    50% {
        opacity: 0.11;
        transform:
            translateY(0)
            scale(1);
    }

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

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

.plocal-final-scan {
    position: absolute;
    z-index: 1;
    top: 5%;
    bottom: 5%;
    left: -35%;
    width: 18%;
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.045),
            rgba(255, 255, 255, 0.035),
            transparent
        );
    filter: blur(8px);
    transform: skewX(-18deg);
    animation:
        plocalFinalScan
        13s
        ease-in-out
        infinite;
}

@keyframes plocalFinalScan {
    0%,
    15% {
        left: -35%;
        opacity: 0;
    }

    26% {
        opacity: 0.65;
    }

    65% {
        opacity: 0.42;
    }

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

/* ==========================================================
   LEFT CONTENT
========================================================== */

.plocal-final-content {
    position: relative;
    z-index: 5;
    min-width: 0;
}

.plocal-final-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    padding: 5px 18px 5px 7px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--body-font);
    font-size: 13px;
    border: 1px solid rgba(36, 189, 199, 0.6);
    border-radius: 50px;
    background: rgba(8, 29, 77, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.plocal-final-eyebrow strong {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    background: rgba(36, 189, 199, 0.1);
}

.plocal-final-title {
    max-width: 850px;
    margin: 0 0 25px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.plocal-final-title span {
    display: contents;
    color: var(--theme-color);
}

.plocal-final-text {
    max-width: 780px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--body-font);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.75;
}

.plocal-final-text strong {
    color: var(--color-white);
}

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

.plocal-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(35px, 4vw, 52px);
}

.plocal-final-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 60px;
    padding: 15px 25px;
    overflow: hidden;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    border-radius: 16px;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

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

.plocal-final-btn:hover::before {
    animation:
        plocalFinalButtonShine
        0.8s
        ease
        forwards;
}

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

    30% {
        opacity: 0.75;
    }

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

.plocal-final-btn-primary {
    color: var(--color-white);
    border: 1px solid rgba(98, 211, 218, 0.48);
    background:
        linear-gradient(
            135deg,
            var(--theme-color),
            var(--color-skyblue)
        );
    box-shadow:
        0 16px 35px rgba(36, 189, 199, 0.22);
}

.plocal-final-btn-primary:hover {
    color: var(--color-white);
    box-shadow:
        0 20px 43px rgba(36, 189, 199, 0.32);
    transform: translateY(-3px);
}

.plocal-final-btn-secondary {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background: rgba(8, 29, 77, 0.45);
}

.plocal-final-btn-secondary:hover {
    color: var(--color-white);
    border-color: var(--color-skyblue);
    background: rgba(36, 189, 199, 0.13);
    box-shadow:
        0 15px 34px rgba(36, 189, 199, 0.12);
    transform: translateY(-3px);
}

.plocal-final-btn-arrow {
    margin-left: 4px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.plocal-final-btn:hover
.plocal-final-btn-arrow {
    transform: translateX(5px);
}

/* ==========================================================
   BENEFIT ROW
========================================================== */

.plocal-final-benefits {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 850px;
}

.plocal-final-benefit {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding-right: 22px;
}

.plocal-final-benefit + .plocal-final-benefit {
    padding-left: 22px;
    border-left: 1px solid var(--border-white-color);
}

.plocal-final-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--theme-color);
    font-size: 23px;
}

.plocal-final-benefit strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
}

.plocal-final-benefit small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--body-font);
    font-size: 10px;
    line-height: 1.4;
}

/* ==========================================================
   RIGHT VISUAL SYSTEM
========================================================== */

.plocal-final-visual {
    position: relative;
    z-index: 5;
    min-width: 0;
    min-height: 475px;
}

.plocal-final-visual-glow {
    position: absolute;
    top: 35%;
    left: 48%;
    width: 480px;
    height: 480px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.16),
            transparent 68%
        );
    transform: translate(-50%, -50%);
    animation:
        plocalFinalVisualGlow
        5s
        ease-in-out
        infinite;
}

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

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

/* ==========================================================
   BUSINESS PROFILE CARD
========================================================== */

.plocal-final-business-card {
    position: absolute;
    z-index: 5;
    top: 75px;
    left: 3%;
    width: min(470px, 63%);
    min-height: 290px;
    padding: 23px;
    border: 1px solid rgba(36, 189, 199, 0.4);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 29, 77, 0.9),
            rgba(12, 44, 122, 0.72)
        );
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation:
        plocalFinalCardFloat
        5.5s
        ease-in-out
        infinite;
}

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

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

.plocal-final-business-top {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-white-color2);
}

.plocal-final-business-image-wrap {
    position: relative;
    width: 125px;
    height: 112px;
}

.plocal-final-business-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    filter: saturate(0.9);
    transition:
        filter 0.5s ease,
        transform 0.5s ease;
}

.plocal-final-business-card:hover
.plocal-final-business-image {
    filter: saturate(1.08);
    transform: scale(1.035);
}

.plocal-final-business-image-status {
    position: absolute;
    right: -6px;
    bottom: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--color-white);
    font-size: 9px;
    border: 4px solid var(--theme-color2);
    border-radius: 50%;
    background: var(--theme-color);
}

.plocal-final-business-info {
    min-width: 0;
}

.plocal-final-business-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.plocal-final-business-name-row h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
}

.plocal-final-business-name-row > i {
    color: var(--theme-color);
    font-size: 13px;
}

.plocal-final-business-info p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--body-font);
    font-size: 11px;
}

.plocal-final-business-info p span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--theme-color);
}

.plocal-final-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
    color: var(--theme-color);
    font-size: 12px;
}

.plocal-final-business-info small {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
}

.plocal-final-business-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-white-color2);
}

.plocal-final-business-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 6px 9px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--body-font);
    font-size: 9px;
    border: 1px solid rgba(36, 189, 199, 0.22);
    border-radius: 50px;
    background: rgba(36, 189, 199, 0.07);
}

.plocal-final-business-badges i {
    color: var(--theme-color);
}

.plocal-final-business-checks {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding-top: 14px;
}

.plocal-final-business-checks span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--body-font);
    font-size: 9px;
}

.plocal-final-business-checks i {
    color: var(--color-skyblue);
}

/* ==========================================================
   PROSCORE CARD
========================================================== */

.plocal-final-score-card {
    position: absolute;
    z-index: 6;
    top: 82px;
    right: 4%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 185px;
    min-height: 280px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(36, 189, 199, 0.48);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 29, 77, 0.94),
            rgba(12, 44, 122, 0.75)
        );
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation:
        plocalFinalScoreFloat
        5s
        0.8s
        ease-in-out
        infinite;
}

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

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

.plocal-final-score-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 145px;
    height: 145px;
    margin-bottom: 15px;
}

.plocal-final-score-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.plocal-final-score-track,
.plocal-final-score-progress {
    fill: none;
    stroke-width: 9;
}

.plocal-final-score-track {
    stroke: rgba(255, 255, 255, 0.09);
}

.plocal-final-score-progress {
    stroke: var(--theme-color);
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 8;
    filter:
        drop-shadow(
            0 0 6px rgba(36, 189, 199, 0.55)
        );
    transition:
        stroke-dashoffset
        2s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.plocal-final-score-value {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plocal-final-score-value strong {
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.plocal-final-score-value span {
    margin-left: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body-font);
    font-size: 10px;
}

.plocal-final-score-orbit {
    position: absolute;
    z-index: 4;
    inset: 0;
    opacity: 0;
}

.plocal-final-score-orbit i {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 9px;
    height: 9px;
    margin-left: -4.5px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow:
        0 0 5px var(--color-white),
        0 0 13px var(--theme-color),
        0 0 23px rgba(36, 189, 199, 0.8);
}

.plocal-final-score-card.is-loading
.plocal-final-score-orbit {
    opacity: 1;
    animation:
        plocalFinalScoreOrbit
        1.5s
        linear
        infinite;
}

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

.plocal-final-score-label {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--body-font);
    font-size: 13px;
}

.plocal-final-score-status {
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 14px;
}

/* ==========================================================
   SHIELD IMAGE PLACEHOLDER
========================================================== */

.plocal-final-shield-visual {
    position: absolute;
    z-index: 6;
    top: 315px;
    right: 4%;
    width: 135px;
    height: 145px;
    animation:
        plocalFinalShieldFloat
        4.4s
        ease-in-out
        infinite;
}

.plocal-final-shield-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(
            0 0 18px rgba(36, 189, 199, 0.4)
        );
}

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

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

/* ==========================================================
   LOCATION IMAGE PLACEHOLDER
========================================================== */

.plocal-final-location-visual {
    position: absolute;
    z-index: 4;
    right: 3%;
    bottom: 5px;
    display: grid;
    place-items: center;
    width: 175px;
    height: 175px;
}

.plocal-final-location-image {
    position: relative;
    z-index: 3;
    display: block;
    width: 100px;
    height: 130px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 15px 20px rgba(36, 189, 199, 0.28)
        );
    animation:
        plocalFinalPinFloat
        3.6s
        ease-in-out
        infinite;
}

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

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

.plocal-final-location-radar {
    position: absolute;
    z-index: 1;
    bottom: 2px;
    width: 125px;
    height: 45px;
    border: 2px solid rgba(36, 189, 199, 0.36);
    border-radius: 50%;
    box-shadow:
        0 0 0 13px rgba(36, 189, 199, 0.09),
        0 0 0 27px rgba(36, 189, 199, 0.035);
    animation:
        plocalFinalRadarPulse
        2.3s
        ease-out
        infinite;
}

@keyframes plocalFinalRadarPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.75);
    }

    70% {
        opacity: 0.15;
        transform: scale(1.12);
    }

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

/* ==========================================================
   TRUST NOTE
========================================================== */

.plocal-final-trust-note {
    position: absolute;
    z-index: 7;
    bottom: 10px;
    left: 11%;
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    width: min(410px, 58%);
    padding: 15px 18px;
    border: 1px solid rgba(36, 189, 199, 0.35);
    border-radius: 16px;
    background: rgba(8, 29, 77, 0.78);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plocal-final-trust-note > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: var(--theme-color);
    font-size: 23px;
}

.plocal-final-trust-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-white);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
}

.plocal-final-trust-note small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--body-font);
    font-size: 10px;
}

.plocal-final-trust-note b {
    color: var(--theme-color);
}

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

@media (max-width: 1499px) {
    .plocal-final-panel {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(540px, 1.08fr);
        gap: 45px;
        padding-right: 55px;
        padding-left: 55px;
    }

    .plocal-final-business-card {
        left: 0;
        width: 440px;
    }

    .plocal-final-score-card {
        right: 0;
        width: 170px;
    }

    .plocal-final-shield-visual {
        right: -8px;
    }

    .plocal-final-location-visual {
        right: -10px;
    }
}

/* ==========================================================
   SMALL DESKTOP / TABLET LANDSCAPE
========================================================== */

@media (max-width: 1199px) {
    .plocal-final-panel {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
    }

    .plocal-final-content {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .plocal-final-eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-final-title,
    .plocal-final-text {
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-final-actions,
    .plocal-final-benefits {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .plocal-final-visual {
        width: 100%;
        max-width: 850px;
        min-height: 500px;
        margin: 0 auto;
    }

    .plocal-final-business-card {
        left: 4%;
    }

    .plocal-final-score-card {
        right: 8%;
    }

    .plocal-final-shield-visual {
        right: 2%;
    }

    .plocal-final-location-visual {
        right: 5%;
    }
}

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

@media (max-width: 767px) {
    .plocal-final-cta {
        padding-top: 70px;
        padding-bottom: 70px;
    }

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

    .plocal-final-panel {
        padding: 50px 22px;
        border-radius: 24px;
    }

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

    .plocal-final-title span {
        display: inline;
    }

    .plocal-final-text {
        font-size: 15px;
    }

    .plocal-final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .plocal-final-btn {
        width: 100%;
    }

    .plocal-final-benefits {
        grid-template-columns: 1fr;
        gap: 17px;
        max-width: 430px;
    }

    .plocal-final-benefit,
    .plocal-final-benefit + .plocal-final-benefit {
        padding: 0;
        border: 0;
    }

    .plocal-final-visual {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
    }

    .plocal-final-business-card,
    .plocal-final-score-card,
    .plocal-final-shield-visual,
    .plocal-final-location-visual,
    .plocal-final-trust-note {
        position: relative;
        inset: auto;
    }

    .plocal-final-business-card {
        width: 100%;
    }

    .plocal-final-score-card {
        width: 100%;
        min-height: 270px;
    }

    .plocal-final-shield-visual,
    .plocal-final-location-visual {
        display: none;
    }

    .plocal-final-trust-note {
        width: 100%;
    }
}

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

@media (max-width: 480px) {
    .plocal-final-eyebrow {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        border-radius: 14px;
    }

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

    .plocal-final-business-top {
        grid-template-columns: 1fr;
    }

    .plocal-final-business-image-wrap {
        width: 100%;
        height: 170px;
    }

    .plocal-final-business-checks {
        grid-template-columns: 1fr;
    }

    .plocal-final-business-name-row h3 {
        font-size: 16px;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .plocal-final-panel::after,
    .plocal-final-route,
    .plocal-final-dot-field,
    .plocal-final-ring,
    .plocal-final-bg-icon,
    .plocal-final-scan,
    .plocal-final-visual-glow,
    .plocal-final-business-card,
    .plocal-final-score-card,
    .plocal-final-shield-visual,
    .plocal-final-location-image,
    .plocal-final-location-radar,
    .plocal-final-score-orbit {
        animation: none !important;
    }

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

    .plocal-final-btn,
    .plocal-final-business-image,
    .plocal-final-score-progress {
        transition: none;
    }
}


/* =========================================================
   PLOCAL HOME HERO
   TECHNICAL BACKGROUND ENHANCEMENT
========================================================= */

.plocal-hero {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 45%,
            rgba(36, 189, 199, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 12% 78%,
            rgba(98, 211, 218, 0.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--color-dark) 0%,
            var(--theme-color2) 52%,
            #0a4485 100%
        );
}


/* =========================================================
   EXISTING OVERLAY
========================================================= */

.plocal-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5, 20, 58, 0.06) 0%,
            rgba(5, 20, 58, 0.12) 100%
        );
}


/* =========================================================
   BACKGROUND DESIGN LAYER
========================================================= */

.plocal-hero-background-design {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}


/* =========================================================
   TECHNICAL GRID
========================================================= */

.plocal-hero-bg-grid {
    position: absolute;
    inset: 0;

    opacity: 0.30;

    background-image:
        linear-gradient(
            rgba(98, 211, 218, 0.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(98, 211, 218, 0.10) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.95) 50%,
            rgba(0, 0, 0, 0.45) 100%
        );

    -webkit-mask-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.95) 50%,
            rgba(0, 0, 0, 0.45) 100%
        );
}


/* =========================================================
   LARGE PLOCAL WATERMARK
========================================================= */

.plocal-hero-bg-watermark {
    position: absolute;

    left: 50%;
    bottom: -0.18em;

    transform: translateX(-50%);

    color: var(--color-white);

    opacity: 0.035;

    font-family: var(--heading-font);

    font-size: clamp(
        150px,
        20vw,
        330px
    );

    font-weight: 700;

    line-height: 0.82;

    letter-spacing: -0.07em;

    white-space: nowrap;

    user-select: none;
}


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

.plocal-hero-bg-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(10px);
}


/* Left glow */

.plocal-hero-bg-glow--left {
    left: -160px;
    bottom: -170px;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.11) 0%,
            rgba(36, 189, 199, 0.03) 45%,
            transparent 72%
        );
}


/* Right glow */

.plocal-hero-bg-glow--right {
    top: 50px;
    right: -170px;

    width: 580px;
    height: 580px;

    background:
        radial-gradient(
            circle,
            rgba(98, 211, 218, 0.11) 0%,
            rgba(36, 189, 199, 0.035) 46%,
            transparent 72%
        );
}


/* =========================================================
   TECHNICAL RINGS
========================================================= */

.plocal-hero-bg-ring {
    position: absolute;

    border:
        1px solid
        rgba(98, 211, 218, 0.15);

    border-radius: 50%;
}


/* Top-right ring */

.plocal-hero-bg-ring--01 {
    top: -170px;
    right: 6%;

    width: 450px;
    height: 450px;

    border-width: 1px;
}


/* Bottom-left ring */

.plocal-hero-bg-ring--02 {
    left: -120px;
    bottom: -210px;

    width: 500px;
    height: 500px;

    border-color:
        rgba(36, 189, 199, 0.10);
}


/* Additional inner rings */

.plocal-hero-bg-ring::before,
.plocal-hero-bg-ring::after {
    content: "";

    position: absolute;

    border:
        1px solid
        rgba(98, 211, 218, 0.10);

    border-radius: inherit;
}


.plocal-hero-bg-ring::before {
    inset: 55px;
}


.plocal-hero-bg-ring::after {
    inset: 110px;
}


/* =========================================================
   TECHNICAL ROUTES
========================================================= */

.plocal-hero-bg-route {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.34),
            rgba(98, 211, 218, 0.16),
            transparent
        );

    transform-origin: left center;

    opacity: 0.50;
}


/* Upper route */

.plocal-hero-bg-route--01 {
    top: 29%;
    left: 8%;

    width: 36%;

    transform: rotate(-8deg);
}


/* Lower route */

.plocal-hero-bg-route--02 {
    right: 5%;
    bottom: 25%;

    width: 33%;

    transform: rotate(8deg);
}


/* =========================================================
   NETWORK NODES
========================================================= */

.plocal-hero-bg-node {
    position: absolute;

    width: 7px;
    height: 7px;

    border:
        1px solid
        rgba(98, 211, 218, 0.75);

    border-radius: 50%;

    background: var(--theme-color);

    box-shadow:
        0 0 0 6px rgba(36, 189, 199, 0.06),
        0 0 16px rgba(36, 189, 199, 0.32);
}


/* Individual positions */

.plocal-hero-bg-node--01 {
    top: 25%;
    left: 29%;
}


.plocal-hero-bg-node--02 {
    top: 41%;
    right: 16%;
}


.plocal-hero-bg-node--03 {
    bottom: 17%;
    left: 18%;
}


/* Tiny line extending from nodes */

.plocal-hero-bg-node::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 12px;

    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(36, 189, 199, 0.42),
            transparent
        );
}


/* =========================================================
   DOT MATRIX
========================================================= */

.plocal-hero-bg-dots {
    position: absolute;

    width: 92px;
    height: 92px;

    opacity: 0.22;

    background-image:
        radial-gradient(
            circle,
            var(--theme-color) 1.6px,
            transparent 1.8px
        );

    background-size: 13px 13px;
}


/* Top-left */

.plocal-hero-bg-dots--01 {
    top: 22%;
    left: 5%;
}


/* Bottom-right */

.plocal-hero-bg-dots--02 {
    right: 5%;
    bottom: 9%;
}


/* =========================================================
   EXISTING CATEGORY IMAGES
   Ensure they remain above background
========================================================= */

.plocal-hero-visuals {
    position: absolute;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.plocal-hero > .container {
    position: relative;

    z-index: 5;
}


.plocal-hero-content {
    position: relative;

    z-index: 5;
}


/* =========================================================
   VERY SUBTLE CENTER FOCUS
   Keeps background from competing with title/search
========================================================= */

.plocal-hero-content::before {
    content: "";

    position: absolute;

    z-index: -1;

    top: 42%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(920px, 100vw);
    height: 520px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(12, 44, 122, 0.24) 0%,
            rgba(12, 44, 122, 0.09) 48%,
            transparent 73%
        );

    pointer-events: none;
}


/* =========================================================
   SUBTLE BACKGROUND MOTION
========================================================= */

@keyframes plocalHeroBackgroundFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }

}


.plocal-hero-bg-dots--01,
.plocal-hero-bg-ring--01 {
    animation:
        plocalHeroBackgroundFloat
        10s
        ease-in-out
        infinite;
}


.plocal-hero-bg-dots--02,
.plocal-hero-bg-ring--02 {
    animation:
        plocalHeroBackgroundFloat
        13s
        ease-in-out
        infinite reverse;
}


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

@media (max-width: 1199px) {

    .plocal-hero-bg-watermark {
        font-size: clamp(
            140px,
            22vw,
            260px
        );
    }


    .plocal-hero-bg-ring--01 {
        right: -90px;
    }

}


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

@media (max-width: 991px) {

    .plocal-hero-bg-watermark {
        bottom: -0.1em;

        font-size: clamp(
            120px,
            24vw,
            210px
        );

        opacity: 0.03;
    }


    .plocal-hero-bg-grid {
        background-size: 42px 42px;
    }


    .plocal-hero-bg-route {
        opacity: 0.32;
    }


    .plocal-hero-bg-ring--01 {
        top: -160px;
        right: -150px;
    }


    .plocal-hero-bg-ring--02 {
        left: -220px;
    }

}


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

@media (max-width: 767px) {

    .plocal-hero-bg-grid {
        opacity: 0.20;

        background-size: 36px 36px;
    }


    .plocal-hero-bg-watermark {
        bottom: 0;

        font-size: 31vw;

        opacity: 0.028;
    }


    .plocal-hero-bg-route--01,
    .plocal-hero-bg-route--02 {
        display: none;
    }


    .plocal-hero-bg-node--01,
    .plocal-hero-bg-node--02,
    .plocal-hero-bg-node--03 {
        opacity: 0.55;
    }


    .plocal-hero-bg-dots {
        width: 70px;
        height: 70px;

        background-size: 11px 11px;

        opacity: 0.16;
    }


    .plocal-hero-bg-ring--01 {
        width: 330px;
        height: 330px;

        top: -140px;
        right: -190px;
    }


    .plocal-hero-bg-ring--02 {
        width: 360px;
        height: 360px;

        left: -230px;
        bottom: -180px;
    }

}


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

@media (prefers-reduced-motion: reduce) {

    .plocal-hero-bg-dots--01,
    .plocal-hero-bg-dots--02,
    .plocal-hero-bg-ring--01,
    .plocal-hero-bg-ring--02 {
        animation: none;
    }

}