/* =====================================================
   SERVICE PAGE
   WHITE LABEL LINK BUILDING HERO
===================================================== */

.sv-link-hero {
    position: relative;
    min-height: 850px;
    padding: 165px 24px 115px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 8% 16%,
            rgba(201, 162, 91, 0.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND GRID
===================================================== */

.sv-link-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 9%,
        var(--charcoal) 91%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 9%,
        var(--charcoal) 91%,
        transparent
    );
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.sv-link-hero-glow {
    position: absolute;
    z-index: -3;

    width: 470px;
    height: 470px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-link-hero-glow-left {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-link-hero-glow-right {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.sv-link-hero-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(430px, 0.92fr)
        minmax(520px, 1.08fr);

    align-items: center;
    gap: 80px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.sv-link-hero-content {
    position: relative;
}

/* Label */

.sv-link-hero-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-link-label-line {
    width: 42px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main Heading */

.sv-link-hero-content h1 {
    max-width: 760px;
    margin-top: 32px;

    color: var(--primary-navy);

    font-size: clamp(48px, 5.2vw, 55px);
    line-height: 1.08;
    letter-spacing: -3.2px;
    font-weight: 800;
}

.sv-link-hero-content h1 span {
    color: var(--natural-oak);
}

/* Description */

.sv-link-hero-description {
    max-width: 690px;
    margin-top: 28px;

    color: var(--charcoal);

    font-size: 16px;
    line-height: 1.85;
}

/* =====================================================
   BENEFITS
===================================================== */

.sv-link-hero-benefits {
    margin-top: 30px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sv-link-benefit {
    min-height: 43px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--soft-beige);
    border-radius: 50px;

    background: var(--warm-ivory);

    box-shadow:
        0 9px 22px rgba(13, 28, 69, 0.06);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.sv-link-benefit:hover {
    transform: translateY(-4px);
    border-color: var(--brushed-gold);
}

.sv-link-benefit span {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 8px;
}

.sv-link-benefit p {
    color: var(--primary-navy);

    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.sv-link-hero-actions {
    margin-top: 38px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.sv-link-primary-btn,
.sv-link-outline-btn {
    min-height: 58px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 12px;

    font-size: 13px;
    line-height: 1;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Primary */

.sv-link-primary-btn {
    border: 1px solid var(--brushed-gold);

    background: var(--primary-navy);
    color: var(--warm-ivory);

    box-shadow:
        0 15px 32px rgba(13, 28, 69, 0.18);
}

.sv-link-primary-btn:hover {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(201, 162, 91, 0.23);
}

.sv-link-primary-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.sv-link-primary-btn:hover i {
    transform: translateX(5px);
}

/* Outline */

.sv-link-outline-btn {
    border: 1px solid var(--primary-navy);

    background: transparent;
    color: var(--primary-navy);
}

.sv-link-outline-btn:hover {
    border-color: var(--brushed-gold);

    background: var(--soft-beige);
    color: var(--primary-navy);

    transform: translateY(-4px);
}

.sv-link-outline-btn i {
    color: var(--natural-oak);
    font-size: 12px;
}

/* =====================================================
   RIGHT IMAGE VISUAL
===================================================== */

.sv-link-hero-visual {
    position: relative;

    min-height: 640px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}

/* Back Layer */

.sv-link-image-backdrop {
    position: absolute;
    inset: 60px 10px 25px 85px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--soft-beige),
            var(--warm-ivory)
        );

    box-shadow:
        0 30px 70px rgba(13, 28, 69, 0.11);

    transform:
        rotate(4deg)
        translate(15px, 5px);
}

/* Image Frame */

.sv-link-image-frame {
    position: relative;
    z-index: 4;

    width: calc(100% - 70px);
    min-height: 580px;

    border: 1px solid var(--soft-beige);
    border-radius: 28px;

    background: var(--primary-navy);

    box-shadow:
        0 38px 85px rgba(13, 28, 69, 0.21),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transform:
        rotateY(-5deg)
        rotateX(2deg);

    transform-style: preserve-3d;

    transition:
        transform 0.65s ease,
        box-shadow 0.65s ease;
}

.sv-link-hero-visual:hover .sv-link-image-frame {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

    box-shadow:
        0 48px 95px rgba(13, 28, 69, 0.25),
        inset 0 1px 0 var(--warm-ivory);
}

/* Main Image */

.sv-link-hero-image {
    width: 100%;
    height: 580px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.75s ease;
}

.sv-link-hero-visual:hover .sv-link-hero-image {
    transform: scale(1.045);
}

/* Image Overlay */

.sv-link-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.88) 0%,
            rgba(19, 40, 85, 0.28) 47%,
            rgba(19, 40, 85, 0.07) 100%
        );

    pointer-events: none;
}

/* Image Number */

.sv-link-image-number {
    position: absolute;
    top: 25px;
    right: 28px;
    z-index: 3;

    color: var(--warm-ivory);

    font-size: 92px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.11;
}

/* Image Badge */

.sv-link-image-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 4;

    min-height: 58px;
    padding: 0 18px 0 10px;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(201, 162, 91, 0.48);
    border-radius: 16px;

    background: rgba(13, 28, 69, 0.78);
    color: var(--warm-ivory);

    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.sv-link-image-badge-icon {
    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 13px;
}

/* Decorative Lines */

.sv-link-image-lines {
    position: absolute;
    right: 27px;
    bottom: 35px;
    z-index: 4;

    width: 145px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.sv-link-image-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brushed-gold)
        );
}

.sv-link-image-lines span:nth-child(1) {
    width: 100%;
}

.sv-link-image-lines span:nth-child(2) {
    width: 72%;
}

.sv-link-image-lines span:nth-child(3) {
    width: 44%;
}

/* =====================================================
   FLOATING MINI CARD
===================================================== */

.sv-link-floating-card {
    position: absolute;
    top: 30px;
    right: -5px;
    z-index: 8;

    min-width: 190px;
    padding: 15px 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background: var(--warm-ivory);

    box-shadow:
        0 20px 45px rgba(13, 28, 69, 0.16);

    transform: rotate(3deg);

    transition: transform 0.35s ease;
}

.sv-link-floating-card:hover {
    transform:
        rotate(0deg)
        translateY(-5px);
}

.sv-link-floating-card > span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;
}

.sv-link-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-link-floating-card strong {
    color: var(--primary-navy);

    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.sv-link-floating-card small {
    color: var(--charcoal);

    font-size: 9px;
    line-height: 1;

    opacity: 0.65;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1080px) {

    .sv-link-hero {
        min-height: auto;
    }

    .sv-link-hero-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .sv-link-hero-content {
        max-width: 850px;
    }

    .sv-link-hero-visual {
        width: min(850px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 700px) {

    .sv-link-hero {
        padding: 130px 18px 90px;
    }

    .sv-link-hero-content h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .sv-link-hero-description {
        font-size: 14px;
    }

    .sv-link-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sv-link-primary-btn,
    .sv-link-outline-btn {
        width: 100%;
    }

    .sv-link-hero-visual {
        min-height: 535px;
    }

    .sv-link-image-frame {
        width: calc(100% - 25px);
        min-height: 470px;

        transform: none;
    }

    .sv-link-hero-image {
        height: 470px;
    }

    .sv-link-image-backdrop {
        inset: 35px 0 20px 30px;
    }

    .sv-link-floating-card {
        top: -5px;
        right: 0;
    }

}

@media (max-width: 480px) {

        .sv-link-hero {
        padding: 120px 15px 80px;
    }

    .sv-link-hero-content h1 {
        font-size: 36px;
    }

    .sv-link-hero-benefits {
        align-items: stretch;
        flex-direction: column;
    }

    .sv-link-benefit {
        width: 100%;
    }

    .sv-link-hero-visual {
        min-height: 420px;
    }

    .sv-link-image-frame {
        width: 100%;
        min-height: 390px;
        border-radius: 21px;
    }

    .sv-link-hero-image {
        height: 390px;
    }

    .sv-link-image-backdrop,
    .sv-link-floating-card,
    .sv-link-image-lines {
        display: none;
    }

    .sv-link-image-badge {
        left: 18px;
        bottom: 18px;
    }

    .sv-link-image-number {
        font-size: 65px;
    }

}

/* =====================================================
   SERVICE STATS SECTION
===================================================== */

.sv-stats-section {
    position: relative;
    padding: 28px 24px;

    background:
        linear-gradient(
            135deg,
            var(--dark-navy),
            var(--primary-navy)
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-stats-grid {
    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

/* Main container */

.sv-stats-container {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    border: 1px solid rgba(231, 225, 216, 0.12);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.08),
            rgba(248, 247, 244, 0.025)
        );

    box-shadow:
        0 26px 60px rgba(30, 30, 30, 0.24),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
}

/* Individual stat */

.sv-stat-card {
    position: relative;

    min-height: 185px;
    padding: 27px 20px 23px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    border-right: 1px solid rgba(231, 225, 216, 0.12);

    overflow: hidden;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.sv-stat-card:last-child {
    border-right: none;
}

.sv-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transform: translateX(-50%);

    transition: width 0.35s ease;
}

.sv-stat-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.sv-stat-card:hover {
    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.15),
            rgba(248, 247, 244, 0.035)
        );
}

.sv-stat-card:hover::before {
    width: calc(100% - 40px);
}

/* Icon */

.sv-stat-icon {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;
    margin-bottom: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 14px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 16px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-stat-card:hover .sv-stat-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Value */

.sv-stat-value {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.sv-stat-card:nth-child(4) .sv-stat-value,
.sv-stat-card:nth-child(5) .sv-stat-value {
    color: var(--brushed-gold);
}

/* Label */

.sv-stat-card p {
    position: relative;
    z-index: 2;

    margin-top: 14px;

    color: var(--soft-beige);

    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.7;
}

/* Responsive */

@media (max-width: 1050px) {

    .sv-stats-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sv-stat-card:nth-child(3) {
        border-right: none;
    }

    .sv-stat-card:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(231, 225, 216, 0.12);
    }

}

@media (max-width: 700px) {

    .sv-stats-section {
        padding: 22px 18px;
    }

    .sv-stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sv-stat-card {
        min-height: 165px;
    }

    .sv-stat-card:nth-child(odd) {
        border-right: 1px solid rgba(231, 225, 216, 0.12);
    }

    .sv-stat-card:nth-child(even) {
        border-right: none;
    }

    .sv-stat-card:nth-child(-n + 4) {
        border-bottom: 1px solid rgba(231, 225, 216, 0.12);
    }

    .sv-stat-card:last-child {
        grid-column: 1 / -1;
        border-right: none;
    }

}

@media (max-width: 450px) {

    .sv-stats-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-stats-container {
        grid-template-columns: 1fr;
    }

    .sv-stat-card,
    .sv-stat-card:nth-child(odd),
    .sv-stat-card:nth-child(even) {
        border-right: none;
        border-bottom: 1px solid rgba(231, 225, 216, 0.12);
    }

    .sv-stat-card:last-child {
        grid-column: auto;
        border-bottom: none;
    }

}

/* =====================================================
   SERVICE SCOPE SECTION
===================================================== */

.sv-scope-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 16%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-scope-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Background glows */

.sv-scope-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-scope-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-scope-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-scope-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* Section label */

.sv-scope-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-scope-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main layout */

.sv-scope-layout {
    margin-top: 38px;

    display: grid;
    grid-template-columns:
        minmax(430px, 0.9fr)
        minmax(520px, 1.1fr);

    align-items: stretch;
    gap: 70px;
}

/* =====================================================
   LEFT IMAGE
===================================================== */

.sv-scope-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}

.sv-scope-image-backdrop {
    position: absolute;
    inset: 55px 30px 25px 72px;

    border: 1px solid var(--soft-beige);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--soft-beige),
            var(--warm-ivory)
        );

    box-shadow:
        0 28px 65px rgba(13, 28, 69, 0.1);

    transform:
        rotate(-4deg)
        translate(-10px, 8px);
}

.sv-scope-image-frame {
    position: relative;
    z-index: 4;

    width: calc(100% - 55px);
    min-height: 575px;

    border: 1px solid var(--soft-beige);
    border-radius: 27px;

    background: var(--primary-navy);

    box-shadow:
        0 38px 85px rgba(13, 28, 69, 0.2),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transform:
        rotateY(5deg)
        rotateX(1deg);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

.sv-scope-visual:hover .sv-scope-image-frame {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

    box-shadow:
        0 48px 95px rgba(13, 28, 69, 0.25),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-scope-image {
    width: 100%;
    height: 575px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.75s ease;
}

.sv-scope-visual:hover .sv-scope-image {
    transform: scale(1.045);
}

.sv-scope-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.96) 0%,
            rgba(19, 40, 85, 0.48) 47%,
            rgba(19, 40, 85, 0.08) 100%
        );

    pointer-events: none;
}

.sv-scope-image-number {
    position: absolute;
    top: 24px;
    right: 27px;
    z-index: 3;

    color: var(--warm-ivory);

    font-size: 90px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.1;
}

.sv-scope-image-heading {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 38px;
    z-index: 4;
}

.sv-scope-image-heading-line {
    display: block;

    width: 52px;
    height: 3px;
    margin-bottom: 20px;

    background: var(--brushed-gold);
}

.sv-scope-image-heading h2 {
    color: var(--warm-ivory);

    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1.12;
    letter-spacing: -2px;
    font-weight: 800;
}

.sv-scope-image-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

/* Floating badge */

.sv-scope-floating-badge {
    position: absolute;
    top: 28px;
    left: -2px;
    z-index: 8;

    min-width: 205px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background: var(--warm-ivory);

    box-shadow:
        0 20px 45px rgba(13, 28, 69, 0.16);

    transform: rotate(-3deg);

    transition: transform 0.35s ease;
}

.sv-scope-floating-badge:hover {
    transform:
        rotate(0deg)
        translateY(-5px);
}

.sv-scope-floating-badge > span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;
}

.sv-scope-floating-badge div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-scope-floating-badge strong {
    color: var(--primary-navy);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.sv-scope-floating-badge small {
    color: var(--charcoal);

    font-size: 8px;
    line-height: 1.3;

    opacity: 0.65;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.sv-scope-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

/* Definition box */

.sv-scope-definition {
    position: relative;

    padding: 29px 31px 29px 36px;

    border: 1px solid var(--soft-beige);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 20px 48px rgba(13, 28, 69, 0.08),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.sv-scope-definition-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.sv-scope-definition p {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}

.sv-scope-definition-circle {
    position: absolute;
    right: -70px;
    bottom: -80px;

    width: 175px;
    height: 175px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

/* Cards */

.sv-scope-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.sv-scope-card {
    position: relative;

    min-height: 230px;
    padding: 24px 20px 22px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 16px 38px rgba(13, 28, 69, 0.06),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-scope-card:nth-child(2) {
    transform: translateY(18px);
}

.sv-scope-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;

    width: 40px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-scope-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -58px;

    width: 125px;
    height: 125px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

.sv-scope-card:hover {
    transform: translateY(-6px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 24px 52px rgba(13, 28, 69, 0.12),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-scope-card:nth-child(2):hover {
    transform: translateY(12px);
}

.sv-scope-card:hover::before {
    width: calc(100% - 40px);
}

.sv-scope-card-number {
    position: absolute;
    top: 15px;
    right: 16px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

.sv-scope-card-icon {
    position: relative;
    z-index: 2;

    width: 47px;
    height: 47px;
    margin-bottom: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.sv-scope-card:hover .sv-scope-card-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

.sv-scope-card h3 {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.sv-scope-card p {
    position: relative;
    z-index: 2;

    margin-top: 11px;

    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.7;
}

/* Included box */

.sv-scope-included {
    position: relative;

    margin-top: 10px;
    padding: 24px 26px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 17px;

    border: 1px solid var(--soft-beige);
    border-left: 4px solid var(--brushed-gold);
    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            var(--soft-beige),
            var(--warm-ivory)
        );
}

.sv-scope-included-icon {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 14px;
}

.sv-scope-included p {
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1080px) {

    .sv-scope-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sv-scope-visual {
        width: min(800px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 760px) {

    .sv-scope-section {
        padding: 80px 18px 90px;
    }

    .sv-scope-visual {
        min-height: 530px;
    }

    .sv-scope-image-frame {
        width: calc(100% - 25px);
        min-height: 470px;

        transform: none;
    }

    .sv-scope-image {
        height: 470px;
    }

    .sv-scope-image-backdrop {
        inset: 35px 0 20px 30px;
    }

    .sv-scope-floating-badge {
        top: -5px;
        left: 0;
    }

    .sv-scope-cards {
        grid-template-columns: 1fr;
    }

    .sv-scope-card,
    .sv-scope-card:nth-child(2) {
        min-height: auto;
        transform: none;
    }

    .sv-scope-card:hover,
    .sv-scope-card:nth-child(2):hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 480px) {

    .sv-scope-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-scope-visual {
        min-height: 410px;
    }

    .sv-scope-image-frame {
        width: 100%;
        min-height: 390px;
        border-radius: 21px;
    }

    .sv-scope-image {
        height: 390px;
    }

    .sv-scope-image-backdrop,
    .sv-scope-floating-badge {
        display: none;
    }

    .sv-scope-image-heading {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }

    .sv-scope-image-heading h2 {
        font-size: 32px;
    }

    .sv-scope-definition {
        padding: 25px 22px 25px 27px;
    }

    .sv-scope-definition p {
        font-size: 14px;
    }

    .sv-scope-included {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .sv-scope-included p {
        font-size: 13px;
    }

}

/* =====================================================
   WHY GEO + AEO MATTERS
===================================================== */

.sv-geo-aeo-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 16%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-geo-aeo-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Glows */

.sv-geo-aeo-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-geo-aeo-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-geo-aeo-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-geo-aeo-container {
    position: relative;
    z-index: 3;

    width: min(1360px, 100%);
    margin: 0 auto;
}

/* Label */

.sv-geo-aeo-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-geo-aeo-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main layout */

.sv-geo-aeo-layout {
    margin-top: 40px;

    display: grid;
    grid-template-columns:
        minmax(470px, 1fr)
        minmax(500px, 1fr);

    align-items: center;
    gap: 75px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.sv-geo-aeo-content {
    position: relative;
}

.sv-geo-aeo-large-number {
    position: absolute;
    top: -100px;
    left: -18px;
    z-index: -1;

    color: var(--warm-ivory);

    font-size: 160px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

.sv-geo-aeo-content h2 {
    max-width: 690px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 4.8vw, 54px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-geo-aeo-content h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

/* Highlight box */

.sv-geo-aeo-highlight {
    position: relative;

    margin-top: 34px;
    padding: 28px 30px 28px 35px;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.11),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 20px 48px rgba(30, 30, 30, 0.2),
        inset 0 1px 0 rgba(248, 247, 244, 0.07);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    overflow: hidden;
}

.sv-geo-aeo-highlight-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.sv-geo-aeo-highlight::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;
}

.sv-geo-aeo-highlight p {
    position: relative;
    z-index: 2;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.92;
}

/* Description */

.sv-geo-aeo-description {
    margin-top: 25px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 17px;
}

.sv-geo-aeo-description-icon {
    width: 47px;
    height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.4);
    border-radius: 14px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 14px;

    transform: rotate(-4deg);
}

.sv-geo-aeo-description p {
    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.84;
}

/* =====================================================
   RIGHT IMAGE
===================================================== */

.sv-geo-aeo-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}

.sv-geo-aeo-image-backdrop {
    position: absolute;
    inset: 55px 35px 25px 72px;

    border: 1px solid rgba(231, 225, 216, 0.14);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.13),
            rgba(248, 247, 244, 0.035)
        );

    transform:
        rotate(4deg)
        translate(13px, 8px);
}

.sv-geo-aeo-image-frame {
    position: relative;
    z-index: 4;

    width: calc(100% - 55px);
    min-height: 575px;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 27px;

    background: var(--primary-navy);

    box-shadow:
        0 38px 85px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;

    transform:
        rotateY(-5deg)
        rotateX(1deg);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

.sv-geo-aeo-visual:hover .sv-geo-aeo-image-frame {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

    box-shadow:
        0 48px 95px rgba(30, 30, 30, 0.34),
        inset 0 1px 0 rgba(248, 247, 244, 0.09);
}

.sv-geo-aeo-image {
    width: 100%;
    height: 575px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.75s ease;
}

.sv-geo-aeo-visual:hover .sv-geo-aeo-image {
    transform: scale(1.045);
}

.sv-geo-aeo-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.9) 0%,
            rgba(19, 40, 85, 0.32) 46%,
            rgba(19, 40, 85, 0.08) 100%
        );

    pointer-events: none;
}

.sv-geo-aeo-image-number {
    position: absolute;
    top: 24px;
    right: 27px;
    z-index: 3;

    color: var(--warm-ivory);

    font-size: 90px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.1;
}

.sv-geo-aeo-image-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 4;

    min-width: 185px;
    padding: 13px 16px 13px 11px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid rgba(201, 162, 91, 0.48);
    border-radius: 16px;

    background: rgba(13, 28, 69, 0.78);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.sv-geo-aeo-image-badge-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 13px;
}

.sv-geo-aeo-image-badge div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-geo-aeo-image-badge strong {
    color: var(--warm-ivory);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.sv-geo-aeo-image-badge small {
    color: var(--soft-beige);

    font-size: 8px;
    line-height: 1.2;

    opacity: 0.7;
}

.sv-geo-aeo-image-lines {
    position: absolute;
    right: 27px;
    bottom: 35px;
    z-index: 4;

    width: 140px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.sv-geo-aeo-image-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brushed-gold)
        );
}

.sv-geo-aeo-image-lines span:nth-child(1) {
    width: 100%;
}

.sv-geo-aeo-image-lines span:nth-child(2) {
    width: 70%;
}

.sv-geo-aeo-image-lines span:nth-child(3) {
    width: 42%;
}

/* Floating card */

.sv-geo-aeo-floating-card {
    position: absolute;
    top: 28px;
    right: -4px;
    z-index: 8;

    min-width: 190px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background: var(--warm-ivory);

    box-shadow:
        0 20px 45px rgba(30, 30, 30, 0.2);

    transform: rotate(3deg);

    transition: transform 0.35s ease;
}

.sv-geo-aeo-floating-card:hover {
    transform:
        rotate(0deg)
        translateY(-5px);
}

.sv-geo-aeo-floating-card > span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;
}

.sv-geo-aeo-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-geo-aeo-floating-card strong {
    color: var(--primary-navy);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.sv-geo-aeo-floating-card small {
    color: var(--charcoal);

    font-size: 8px;
    line-height: 1.2;

    opacity: 0.65;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1080px) {

    .sv-geo-aeo-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sv-geo-aeo-content {
        max-width: 850px;
    }

    .sv-geo-aeo-visual {
        width: min(800px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 760px) {

    .sv-geo-aeo-section {
        padding: 80px 18px 90px;
    }

    .sv-geo-aeo-content h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-geo-aeo-large-number {
        display: none;
    }

    .sv-geo-aeo-description {
        grid-template-columns: 1fr;
    }

    .sv-geo-aeo-visual {
        min-height: 530px;
    }

    .sv-geo-aeo-image-frame {
        width: calc(100% - 25px);
        min-height: 470px;

        transform: none;
    }

    .sv-geo-aeo-image {
        height: 470px;
    }

    .sv-geo-aeo-image-backdrop {
        inset: 35px 0 20px 30px;
    }

    .sv-geo-aeo-floating-card {
        top: -5px;
        right: 0;
    }

}

@media (max-width: 480px) {

    .sv-geo-aeo-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-geo-aeo-content h2 {
        font-size: 35px;
    }

    .sv-geo-aeo-highlight {
        padding: 24px 21px 24px 26px;
    }

    .sv-geo-aeo-highlight p,
    .sv-geo-aeo-description p {
        font-size: 13px;
    }

    .sv-geo-aeo-visual {
        min-height: 410px;
    }

    .sv-geo-aeo-image-frame {
        width: 100%;
        min-height: 390px;
        border-radius: 21px;
    }

    .sv-geo-aeo-image {
        height: 390px;
    }

    .sv-geo-aeo-image-backdrop,
    .sv-geo-aeo-floating-card,
    .sv-geo-aeo-image-lines {
        display: none;
    }

    .sv-geo-aeo-image-badge {
        left: 18px;
        bottom: 18px;
    }

}

/* =====================================================
   WHAT OUTSOURCING DOES FOR YOUR AGENCY
===================================================== */

.sv-outsourcing-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-outsourcing-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Glows */

.sv-outsourcing-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-outsourcing-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-outsourcing-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-outsourcing-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Label */

.sv-outsourcing-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-outsourcing-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.sv-outsourcing-heading {
    position: relative;
    margin-top: 34px;
}

.sv-outsourcing-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 920px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 51px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-outsourcing-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.sv-outsourcing-large-number {
    position: absolute;
    top: -85px;
    right: 20px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
    pointer-events: none;
}

/* =====================================================
   CONNECTED BENEFIT MAP
===================================================== */

.sv-outsourcing-map {
    position: relative;

    min-height: 690px;
    margin-top: 50px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 30px 70px rgba(13, 28, 69, 0.1),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

/* Internal grid */

.sv-outsourcing-map::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    pointer-events: none;
}

/* Decorative circle */

.sv-outsourcing-map::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -150px;

    width: 350px;
    height: 350px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* Center hub */

.sv-outsourcing-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;

    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;

    border: 1px solid var(--brushed-gold);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(201, 162, 91, 0.25),
            var(--primary-navy) 58%,
            var(--dark-navy)
        );

    box-shadow:
        0 0 0 14px rgba(201, 162, 91, 0.08),
        0 28px 65px rgba(13, 28, 69, 0.24);

    transform: translate(-50%, -50%);
}

.sv-outsourcing-hub-icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 18px;
}

.sv-outsourcing-hub strong {
    color: var(--warm-ivory);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

/* =====================================================
   CONNECTORS
===================================================== */

.sv-outsourcing-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    width: 270px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            rgba(19, 40, 85, 0.14)
        );

    transform-origin: left center;
}

.connector-one {
    transform: rotate(-150deg);
}

.connector-two {
    transform: rotate(180deg);
}

.connector-three {
    transform: rotate(150deg);
}

.connector-four {
    transform: rotate(-30deg);
}

.connector-five {
    transform: rotate(0deg);
}

.connector-six {
    transform: rotate(30deg);
}

/* =====================================================
   BENEFIT NODES
===================================================== */

.sv-outsourcing-node {
    position: absolute;
    z-index: 5;

    width: 300px;
    min-height: 155px;
    padding: 22px 21px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 18px;

    background: var(--warm-ivory);

    box-shadow:
        0 18px 42px rgba(13, 28, 69, 0.09),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-outsourcing-node::before {
    content: "";
    position: absolute;
    top: 0;
    left: 21px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-outsourcing-node::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 135px;
    height: 135px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

.sv-outsourcing-node:hover {
    z-index: 10;

    border-color: var(--brushed-gold);

    box-shadow:
        0 26px 58px rgba(13, 28, 69, 0.15),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-outsourcing-node:hover::before {
    width: calc(100% - 42px);
}

/* Positions */

.sv-outsourcing-node-one {
    top: 45px;
    left: 55px;
}

.sv-outsourcing-node-two {
    top: 50%;
    left: 30px;

    transform: translateY(-50%);
}

.sv-outsourcing-node-three {
    left: 55px;
    bottom: 45px;
}

.sv-outsourcing-node-four {
    top: 45px;
    right: 55px;
}

.sv-outsourcing-node-five {
    top: 50%;
    right: 30px;

    transform: translateY(-50%);
}

.sv-outsourcing-node-six {
    right: 55px;
    bottom: 45px;
}

/* Hover */

.sv-outsourcing-node-one:hover,
.sv-outsourcing-node-three:hover,
.sv-outsourcing-node-four:hover,
.sv-outsourcing-node-six:hover {
    transform: translateY(-7px);
}

.sv-outsourcing-node-two:hover,
.sv-outsourcing-node-five:hover {
    transform:
        translateY(calc(-50% - 7px));
}

/* Node number */

.sv-outsourcing-node-number {
    position: absolute;
    top: 15px;
    right: 16px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* Node icon */

.sv-outsourcing-node-icon {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;
    margin-bottom: 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.sv-outsourcing-node:hover .sv-outsourcing-node-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

.sv-outsourcing-node p {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 14px;
    line-height: 1.55;
    font-weight: 800;
}

/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.sv-outsourcing-statement {
    margin-top: 28px;
    padding: 25px 28px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 17px;

    border: 1px solid var(--soft-beige);
    border-left: 4px solid var(--brushed-gold);
    border-radius: 17px;

    background:
        linear-gradient(
            110deg,
            var(--soft-beige),
            var(--warm-ivory)
        );

    box-shadow:
        0 16px 38px rgba(13, 28, 69, 0.06);
}

.sv-outsourcing-statement-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 15px;
}

.sv-outsourcing-statement p {
    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.8;
}

.sv-outsourcing-statement strong {
    color: var(--primary-navy);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .sv-outsourcing-map {
        min-height: auto;
        padding: 35px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sv-outsourcing-hub,
    .sv-outsourcing-connector {
        display: none;
    }

    .sv-outsourcing-node,
    .sv-outsourcing-node-one,
    .sv-outsourcing-node-two,
    .sv-outsourcing-node-three,
    .sv-outsourcing-node-four,
    .sv-outsourcing-node-five,
    .sv-outsourcing-node-six {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        min-height: 175px;

        transform: none;
    }

    .sv-outsourcing-node:hover,
    .sv-outsourcing-node-two:hover,
    .sv-outsourcing-node-five:hover {
        transform: translateY(-6px);
    }

}

@media (max-width: 700px) {

    .sv-outsourcing-section {
        padding: 80px 18px 90px;
    }

    .sv-outsourcing-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-outsourcing-large-number {
        display: none;
    }

    .sv-outsourcing-map {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .sv-outsourcing-statement {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .sv-outsourcing-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-outsourcing-heading h2 {
        font-size: 35px;
    }

    .sv-outsourcing-node {
        min-height: auto;
        padding: 22px 19px;
    }

    .sv-outsourcing-statement p {
        font-size: 13px;
    }

}

/* =====================================================
   PROBLEMS WE SOLVE
===================================================== */

.sv-problems-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-problems-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Glows */

.sv-problems-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-problems-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-problems-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-problems-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Label */

.sv-problems-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-problems-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.sv-problems-heading {
    position: relative;
    margin-top: 34px;
}

.sv-problems-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 990px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 55px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-problems-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.sv-problems-large-number {
    position: absolute;
    top: -85px;
    right: 20px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
    pointer-events: none;
}

/* =====================================================
   TRACK
===================================================== */

.sv-problems-track {
    position: relative;
    margin-top: 62px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sv-problems-track::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 1px;
    height: calc(100% - 80px);

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--brushed-gold),
            transparent
        );

    transform: translate(-50%, -50%);
    opacity: 0.28;
}

/* Individual row */

.sv-problem-row {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(330px, 1fr)
        120px
        minmax(380px, 1fr);

    align-items: stretch;
    gap: 18px;
}

.sv-problem-row:nth-child(even) {
    transform: translateX(22px);
}

/* =====================================================
   PROBLEM CARD
===================================================== */

.sv-problem-card {
    position: relative;

    min-height: 130px;
    padding: 24px 25px 22px 82px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(184, 133, 88, 0.14),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 18px 42px rgba(30, 30, 30, 0.19),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.sv-problem-card::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;

    width: 4px;
    height: 60%;

    border-radius: 0 4px 4px 0;

    background: var(--natural-oak);
}

.sv-problem-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 135px;
    height: 135px;

    border: 1px solid rgba(184, 133, 88, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-problem-row:hover .sv-problem-card {
    transform: translateX(-7px);

    border-color: var(--natural-oak);

    background:
        linear-gradient(
            145deg,
            rgba(184, 133, 88, 0.22),
            rgba(248, 247, 244, 0.045)
        );
}

/* Index */

.sv-problem-index {
    position: absolute;
    top: 15px;
    right: 17px;

    color: var(--warm-ivory);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* Problem icon */

.sv-problem-icon {
    position: absolute;
    top: 50%;
    left: 22px;

    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 133, 88, 0.55);
    border-radius: 13px;

    background: rgba(184, 133, 88, 0.13);
    color: var(--natural-oak);

    font-size: 14px;

    transform:
        translateY(-50%)
        rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-problem-row:hover .sv-problem-icon {
    background: var(--natural-oak);
    color: var(--warm-ivory);

    transform:
        translateY(-50%)
        rotate(0deg)
        scale(1.06);
}

.sv-problem-card h3 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
}

/* =====================================================
   CONNECTOR
===================================================== */

.sv-problem-connector {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-problem-connector-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--natural-oak),
            var(--brushed-gold)
        );

    transform: translateY(-50%);
    opacity: 0.5;
}

.sv-problem-connector-icon {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 12px;

    box-shadow:
        0 12px 28px rgba(30, 30, 30, 0.25);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-problem-row:hover .sv-problem-connector-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: translateX(5px) scale(1.08);
}

/* =====================================================
   SOLUTION CARD
===================================================== */

.sv-solution-card {
    position: relative;

    min-height: 130px;
    padding: 24px 26px 22px 82px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.14),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 18px 42px rgba(30, 30, 30, 0.19),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.sv-solution-card::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;

    width: 4px;
    height: 60%;

    border-radius: 0 4px 4px 0;

    background: var(--brushed-gold);
}

.sv-solution-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 135px;
    height: 135px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-problem-row:hover .sv-solution-card {
    transform: translateX(7px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.22),
            rgba(248, 247, 244, 0.05)
        );
}

/* Solution icon */

.sv-solution-icon {
    position: absolute;
    top: 50%;
    left: 22px;

    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.55);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.13);
    color: var(--brushed-gold);

    font-size: 14px;

    transform:
        translateY(-50%)
        rotate(4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-problem-row:hover .sv-solution-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        translateY(-50%)
        rotate(0deg)
        scale(1.06);
}

.sv-solution-card p {
    position: relative;
    z-index: 2;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.65;

    opacity: 0.9;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .sv-problems-track::before {
        display: none;
    }

    .sv-problem-row,
    .sv-problem-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 12px;

        transform: none;
    }

    .sv-problem-connector {
        min-height: 42px;
    }

    .sv-problem-connector-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;

        width: 1px;
        height: auto;

        background:
            linear-gradient(
                to bottom,
                var(--natural-oak),
                var(--brushed-gold)
            );

        transform: translateX(-50%);
    }

    .sv-problem-connector-icon {
        transform: rotate(90deg);
    }

    .sv-problem-row:hover .sv-problem-connector-icon {
        transform:
            rotate(90deg)
            translateX(5px)
            scale(1.08);
    }

    .sv-problem-row:hover .sv-problem-card,
    .sv-problem-row:hover .sv-solution-card {
        transform: translateY(-4px);
    }

}

@media (max-width: 700px) {

    .sv-problems-section {
        padding: 80px 18px 90px;
    }

    .sv-problems-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-problems-large-number {
        display: none;
    }

}

@media (max-width: 480px) {

    .sv-problems-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-problems-heading h2 {
        font-size: 35px;
    }

    .sv-problem-card,
    .sv-solution-card {
        min-height: auto;
        padding:
            76px 20px 22px;
    }

    .sv-problem-icon,
    .sv-solution-icon {
        top: 22px;
        left: 20px;

        transform: rotate(-4deg);
    }

    .sv-solution-icon {
        transform: rotate(4deg);
    }

    .sv-problem-row:hover .sv-problem-icon,
    .sv-problem-row:hover .sv-solution-icon {
        transform: rotate(0deg) scale(1.06);
    }

    .sv-problem-card h3 {
        font-size: 14px;
    }

    .sv-solution-card p {
        font-size: 13px;
    }

}

/* =====================================================
   FEATURES MOSAIC SECTION
===================================================== */

.sv-feature-mosaic-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-feature-mosaic-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Glows */

.sv-feature-mosaic-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-feature-mosaic-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-feature-mosaic-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-feature-mosaic-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* Label */

.sv-feature-mosaic-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-feature-mosaic-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.sv-feature-mosaic-heading {
    position: relative;
    margin-top: 34px;
}

.sv-feature-mosaic-heading h2 {
    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-feature-mosaic-heading p {
    max-width: 650px;
    margin-top: 18px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.8;
}

.sv-feature-mosaic-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
    pointer-events: none;
}

/* =====================================================
   MOSAIC LAYOUT
===================================================== */

.sv-feature-mosaic-layout {
    margin-top: 62px;

    display: grid;
    grid-template-columns:
        minmax(260px, 0.85fr)
        minmax(360px, 1fr)
        minmax(280px, 0.85fr);

    align-items: stretch;
    gap: 18px;
}

/* Columns */

.sv-feature-mosaic-left,
.sv-feature-mosaic-right {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sv-feature-mosaic-center {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* Shared card */

.sv-feature-mosaic-card {
    position: relative;

    padding: 27px 24px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 18px 42px rgba(13, 28, 69, 0.07),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.sv-feature-mosaic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;

    width: 44px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-feature-mosaic-card::after {
    content: "";
    position: absolute;
    right: -62px;
    bottom: -72px;

    width: 155px;
    height: 155px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.sv-feature-mosaic-card:hover {
    transform: translateY(-7px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--soft-beige)
        );

    box-shadow:
        0 28px 62px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-feature-mosaic-card:hover::before {
    width: calc(100% - 48px);
}

/* Card sizes */

.sv-feature-mosaic-card-large {
    min-height: 300px;
    justify-content: flex-end;
}

.sv-feature-mosaic-card-compact {
    min-height: 225px;
}

.sv-feature-mosaic-card-wide {
    min-height: 300px;
    justify-content: center;
}

/* Index */

.sv-feature-mosaic-index {
    position: absolute;
    top: 16px;
    right: 17px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* Icon */

.sv-feature-mosaic-icon {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;
    margin-bottom: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 15px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 16px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-feature-mosaic-card:hover .sv-feature-mosaic-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

/* Content */

.sv-feature-mosaic-content {
    position: relative;
    z-index: 2;
}

.sv-feature-mosaic-content h3 {
    color: var(--primary-navy);

    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.sv-feature-mosaic-content p {
    margin-top: 10px;

    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.7;
}

/* Decorative corner for large cards */

.sv-feature-mosaic-corner {
    position: absolute;
    top: 26px;
    right: 24px;

    width: 62px;
    height: 62px;

    border-top: 1px solid var(--brushed-gold);
    border-right: 1px solid var(--brushed-gold);

    border-radius: 0 14px 0 0;

    opacity: 0.45;
}

/* Decorative line for wide cards */

.sv-feature-mosaic-line {
    position: absolute;
    left: 24px;
    bottom: 22px;

    width: 85px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

/* Alternate visual emphasis */

.sv-feature-mosaic-left .sv-feature-mosaic-card:first-child,
.sv-feature-mosaic-right .sv-feature-mosaic-card:last-child {
    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    border-color: rgba(201, 162, 91, 0.28);

    box-shadow:
        0 24px 55px rgba(13, 28, 69, 0.2),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-feature-mosaic-left
.sv-feature-mosaic-card:first-child
.sv-feature-mosaic-content h3,
.sv-feature-mosaic-right
.sv-feature-mosaic-card:last-child
.sv-feature-mosaic-content h3 {
    color: var(--warm-ivory);
}

.sv-feature-mosaic-left
.sv-feature-mosaic-card:first-child
.sv-feature-mosaic-content p,
.sv-feature-mosaic-right
.sv-feature-mosaic-card:last-child
.sv-feature-mosaic-content p {
    color: var(--soft-beige);
}

.sv-feature-mosaic-left
.sv-feature-mosaic-card:first-child
.sv-feature-mosaic-index,
.sv-feature-mosaic-right
.sv-feature-mosaic-card:last-child
.sv-feature-mosaic-index {
    color: var(--warm-ivory);
}

.sv-feature-mosaic-left
.sv-feature-mosaic-card:first-child
.sv-feature-mosaic-card::after {
    border-color: rgba(201, 162, 91, 0.14);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1080px) {

    .sv-feature-mosaic-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sv-feature-mosaic-left,
    .sv-feature-mosaic-right {
        grid-template-rows: auto;
    }

    .sv-feature-mosaic-center {
        grid-column: 1 / -1;
        order: 3;
    }

}

@media (max-width: 760px) {

    .sv-feature-mosaic-section {
        padding: 80px 18px 90px;
    }

    .sv-feature-mosaic-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-feature-mosaic-number {
        display: none;
    }

    .sv-feature-mosaic-layout {
        grid-template-columns: 1fr;
    }

    .sv-feature-mosaic-left,
    .sv-feature-mosaic-center,
    .sv-feature-mosaic-right {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sv-feature-mosaic-card-large,
    .sv-feature-mosaic-card-compact,
    .sv-feature-mosaic-card-wide {
        min-height: auto;
    }

}

@media (max-width: 480px) {

    .sv-feature-mosaic-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-feature-mosaic-heading h2 {
        font-size: 35px;
    }

    .sv-feature-mosaic-card {
        padding: 24px 20px;
        border-radius: 17px;
    }

    .sv-feature-mosaic-corner,
    .sv-feature-mosaic-line {
        display: none;
    }

    .sv-feature-mosaic-content h3 {
        font-size: 15px;
    }

    .sv-feature-mosaic-content p {
        font-size: 12px;
    }

}

/* =====================================================
   BENEFITS SECTION
   SPLIT DASHBOARD / METER LAYOUT
===================================================== */

.sv-benefit-meter-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 16%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-benefit-meter-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Background glows */

.sv-benefit-meter-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-benefit-meter-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-benefit-meter-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-benefit-meter-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Section label */

.sv-benefit-meter-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-benefit-meter-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main layout */

.sv-benefit-meter-layout {
    margin-top: 42px;

    display: grid;
    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(620px, 1.28fr);

    align-items: stretch;
    gap: 65px;
}

/* =====================================================
   LEFT INTRO PANEL
===================================================== */

.sv-benefit-meter-intro {
    position: relative;

    min-height: 620px;
    padding: 42px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.12),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 32px 75px rgba(30, 30, 30, 0.27),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);

    overflow: hidden;
}

.sv-benefit-meter-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38px;

    width: 90px;
    height: 3px;

    background: var(--brushed-gold);
}

.sv-benefit-meter-intro::after {
    content: "";
    position: absolute;
    right: -135px;
    bottom: -155px;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-benefit-meter-big-number {
    position: absolute;
    top: 20px;
    right: 26px;

    color: var(--warm-ivory);

    font-size: 130px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.045;
}

.sv-benefit-meter-intro-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;
    margin-bottom: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 19px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 24px;

    transform: rotate(-5deg);
}

.sv-benefit-meter-intro h2 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: clamp(48px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
}

.sv-benefit-meter-intro p {
    position: relative;
    z-index: 2;

    max-width: 420px;
    margin-top: 23px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.86;
}

.sv-benefit-meter-intro-lines {
    position: relative;
    z-index: 2;

    width: 190px;
    margin-top: 60px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-benefit-meter-intro-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

.sv-benefit-meter-intro-lines span:nth-child(1) {
    width: 100%;
}

.sv-benefit-meter-intro-lines span:nth-child(2) {
    width: 68%;
}

.sv-benefit-meter-intro-lines span:nth-child(3) {
    width: 38%;
}

/* =====================================================
   RIGHT BENEFIT LIST
===================================================== */

.sv-benefit-meter-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

/* Individual meter */

.sv-benefit-meter-item {
    position: relative;

    min-height: 78px;
    padding: 13px 20px 13px 13px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.1),
            rgba(248, 247, 244, 0.03)
        );

    box-shadow:
        0 16px 38px rgba(30, 30, 30, 0.18),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.sv-benefit-meter-item:nth-child(even) {
    margin-left: 34px;
}

.sv-benefit-meter-item::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -62px;

    width: 125px;
    height: 125px;

    border: 1px solid rgba(201, 162, 91, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.sv-benefit-meter-item:hover {
    transform: translateX(8px);

    border-color: rgba(201, 162, 91, 0.62);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.15),
            rgba(248, 247, 244, 0.04)
        );
}

/* Icon */

.sv-benefit-meter-icon {
    position: relative;
    z-index: 2;

    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.45);
    border-radius: 14px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 15px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-benefit-meter-item:hover .sv-benefit-meter-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Content */

.sv-benefit-meter-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.sv-benefit-meter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sv-benefit-meter-top h3 {
    color: var(--warm-ivory);

    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.sv-benefit-meter-top > span {
    color: var(--soft-beige);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.32;
}

/* Track */

.sv-benefit-meter-track {
    position: relative;

    width: 100%;
    height: 5px;
    margin-top: 11px;

    border-radius: 30px;

    background: rgba(231, 225, 216, 0.1);

    overflow: hidden;
}

.sv-benefit-meter-fill {
    position: absolute;
    inset: 0 auto 0 0;

    width: var(--meter-width);

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--natural-oak),
            var(--brushed-gold)
        );

    box-shadow:
        0 0 15px rgba(201, 162, 91, 0.28);

    transform-origin: left center;

    transition: width 0.55s ease;
}

.sv-benefit-meter-item:hover .sv-benefit-meter-fill {
    width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .sv-benefit-meter-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sv-benefit-meter-intro {
        min-height: auto;
        padding: 40px 34px;
    }

    .sv-benefit-meter-intro-lines,
    .sv-benefit-meter-big-number {
        display: none;
    }

}

@media (max-width: 700px) {

    .sv-benefit-meter-section {
        padding: 80px 18px 90px;
    }

    .sv-benefit-meter-intro {
        padding: 32px 25px;
        border-radius: 22px;
    }

    .sv-benefit-meter-intro h2 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .sv-benefit-meter-item,
    .sv-benefit-meter-item:nth-child(even) {
        margin-left: 0;
    }

}

@media (max-width: 480px) {

    .sv-benefit-meter-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-benefit-meter-intro h2 {
        font-size: 36px;
    }

    .sv-benefit-meter-intro p {
        font-size: 13px;
    }

    .sv-benefit-meter-item {
        padding: 15px;
        grid-template-columns: 1fr;
    }

    .sv-benefit-meter-icon {
        width: 46px;
        height: 46px;
    }

    .sv-benefit-meter-top h3 {
        font-size: 14px;
    }

}

/* =====================================================
   PROCESS OVERVIEW
   SERPENTINE WORKFLOW BOARD
===================================================== */

.sv-process-board-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-process-board-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

.sv-process-board-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-process-board-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-process-board-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-process-board-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.sv-process-board-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-process-board-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-process-board-heading {
    position: relative;
    margin-top: 34px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.sv-process-board-heading h2 {
    max-width: 900px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-process-board-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.sv-process-board-heading p {
    max-width: 700px;
    margin-top: 18px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.8;
}

.sv-process-board-large-number {
    color: var(--primary-navy);

    font-size: 145px;
    line-height: 0.75;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   PROCESS BOARD
===================================================== */

.sv-process-board {
    position: relative;

    margin-top: 65px;
    padding: 42px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "step1 step2 step3"
        "step6 step5 step4";

    gap: 46px 55px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 32px 75px rgba(13, 28, 69, 0.11),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

/* Internal grid */

.sv-process-board::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.04) 1px,
            transparent 1px
        );

    background-size: 56px 56px;

    pointer-events: none;
}

/* Decorative circle */

.sv-process-board::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -165px;

    width: 380px;
    height: 380px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* =====================================================
   FLOW LINES
===================================================== */

.sv-process-flow-line {
    position: absolute;
    z-index: 1;

    background: var(--brushed-gold);

    opacity: 0.45;
}

.sv-process-flow-top {
    top: 50%;
    left: 16%;

    width: 68%;
    height: 1px;

    transform: translateY(-178px);
}

.sv-process-flow-right {
    top: 50%;
    right: 16%;

    width: 1px;
    height: 85px;

    transform: translateY(-42px);
}

.sv-process-flow-bottom {
    top: 50%;
    left: 16%;

    width: 68%;
    height: 1px;

    transform: translateY(178px);
}

/* =====================================================
   STEP POSITIONS
===================================================== */

.sv-process-step-one {
    grid-area: step1;
}

.sv-process-step-two {
    grid-area: step2;
}

.sv-process-step-three {
    grid-area: step3;
}

.sv-process-step-four {
    grid-area: step4;
}

.sv-process-step-five {
    grid-area: step5;
}

.sv-process-step-six {
    grid-area: step6;
}

/* =====================================================
   PROCESS STEP
===================================================== */

.sv-process-step {
    position: relative;
    z-index: 3;

    min-height: 245px;
    padding: 27px 25px 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 20px;

    background: var(--warm-ivory);

    box-shadow:
        0 19px 44px rgba(13, 28, 69, 0.09),
        inset 0 1px 0 var(--warm-ivory);

    overflow: visible;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;

    width: 45px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-process-step::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 135px;
    height: 135px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.sv-process-step:hover {
    z-index: 10;

    transform: translateY(-7px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 29px 65px rgba(13, 28, 69, 0.15),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-process-step:hover::before {
    width: calc(100% - 48px);
}

/* Highlight first and last */

.sv-process-step-one,
.sv-process-step-six {
    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    border-color: rgba(201, 162, 91, 0.28);

    box-shadow:
        0 24px 55px rgba(13, 28, 69, 0.2),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

/* =====================================================
   STEP NUMBER
===================================================== */

.sv-process-step-number {
    position: absolute;
    top: 17px;
    right: 18px;

    color: var(--primary-navy);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.3px;
    font-weight: 800;

    opacity: 0.28;
}

.sv-process-step-one .sv-process-step-number,
.sv-process-step-six .sv-process-step-number {
    color: var(--warm-ivory);
}

/* =====================================================
   ICON
===================================================== */

.sv-process-step-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;
    margin-bottom: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 16px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 16px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-process-step:hover .sv-process-step-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

.sv-process-step-one .sv-process-step-icon,
.sv-process-step-six .sv-process-step-icon {
    background: rgba(201, 162, 91, 0.14);
    color: var(--brushed-gold);
}

/* =====================================================
   CONTENT
===================================================== */

.sv-process-step-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}

.sv-process-step-content h3 {
    color: var(--primary-navy);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.sv-process-step-content p {
    margin-top: 10px;

    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.75;
}

.sv-process-step-one .sv-process-step-content h3,
.sv-process-step-six .sv-process-step-content h3 {
    color: var(--warm-ivory);
}

.sv-process-step-one .sv-process-step-content p,
.sv-process-step-six .sv-process-step-content p {
    color: var(--soft-beige);
}

/* =====================================================
   ARROWS
===================================================== */

.sv-process-step-arrow,
.sv-process-complete-icon {
    position: absolute;
    z-index: 7;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 11px;

    box-shadow:
        0 12px 28px rgba(13, 28, 69, 0.2);
}

.sv-process-step-arrow {
    top: 50%;
    right: -49px;

    transform: translateY(-50%);
}

.sv-process-step-arrow-down {
    top: auto;
    right: 50%;
    bottom: -45px;

    transform: translateX(50%);
}

.sv-process-step-arrow-left {
    right: auto;
    left: -49px;
}

.sv-process-complete-icon {
    right: 20px;
    bottom: 20px;

    background: var(--brushed-gold);
    color: var(--dark-navy);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .sv-process-board {
        padding: 32px;

        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "step1 step2"
            "step3 step4"
            "step5 step6";

        gap: 18px;
    }

    .sv-process-flow-line,
    .sv-process-step-arrow {
        display: none;
    }

}

@media (max-width: 700px) {

    .sv-process-board-section {
        padding: 80px 18px 90px;
    }

    .sv-process-board-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-process-board-large-number {
        display: none;
    }

    .sv-process-board {
        padding: 20px;

        grid-template-columns: 1fr;
        grid-template-areas:
            "step1"
            "step2"
            "step3"
            "step4"
            "step5"
            "step6";

        border-radius: 22px;
    }

    .sv-process-step {
        min-height: auto;
    }

}

@media (max-width: 480px) {

    .sv-process-board-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-process-board-heading h2 {
        font-size: 35px;
    }

    .sv-process-board-heading p {
        font-size: 13px;
    }

    .sv-process-step {
        padding: 24px 20px;
    }

    .sv-process-step-content h3 {
        font-size: 16px;
    }

    .sv-process-step-content p {
        font-size: 12px;
    }

}

/* =====================================================
   DELIVERABLES & WHITE-LABEL REPORTING
===================================================== */

.sv-reporting-section {
    position: relative;
    padding: 115px 24px 135px;

    background:
        radial-gradient(
            circle at 10% 16%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-reporting-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

.sv-reporting-glow {
    position: absolute;
    z-index: -3;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-reporting-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-reporting-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-reporting-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.sv-reporting-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-reporting-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-reporting-heading {
    position: relative;
    margin-top: 34px;
}

.sv-reporting-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-reporting-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.sv-reporting-large-number {
    position: absolute;
    top: -85px;
    right: 18px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.sv-reporting-layout {
    margin-top: 62px;

    display: grid;
    grid-template-columns:
        minmax(520px, 1.02fr)
        minmax(480px, 0.98fr);

    align-items: center;
    gap: 75px;
}

/* =====================================================
   LEFT DELIVERABLE LIST
===================================================== */

.sv-reporting-deliverables {
    display: flex;
    flex-direction: column;
}

/* Column header */

.sv-reporting-column-head {
    padding: 0 18px 17px 80px;

    display: grid;
    grid-template-columns:
        minmax(190px, 0.72fr)
        minmax(280px, 1.28fr);

    gap: 25px;

    border-bottom: 1px solid rgba(231, 225, 216, 0.17);
}

.sv-reporting-column-head span {
    color: var(--soft-beige);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-transform: uppercase;

    opacity: 0.65;
}

/* Deliverable */

.sv-reporting-deliverable {
    position: relative;

    min-height: 105px;
    padding: 18px 18px 18px 80px;

    display: grid;
    grid-template-columns:
        minmax(190px, 0.72fr)
        minmax(280px, 1.28fr);

    align-items: center;
    gap: 25px;

    border-bottom: 1px solid rgba(231, 225, 216, 0.13);

    transition:
        padding-left 0.35s ease,
        background 0.35s ease;
}

.sv-reporting-deliverable::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;

    width: 3px;
    height: 56%;

    border-radius: 0 4px 4px 0;

    background: var(--brushed-gold);

    transform: scaleY(0);
    transform-origin: center;

    transition: transform 0.35s ease;
}

.sv-reporting-deliverable:hover {
    padding-left: 88px;

    background:
        linear-gradient(
            90deg,
            rgba(201, 162, 91, 0.12),
            transparent
        );
}

.sv-reporting-deliverable:hover::before {
    transform: scaleY(1);
}

/* Number */

.sv-reporting-item-number {
    position: absolute;
    top: 16px;
    right: 15px;

    color: var(--warm-ivory);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.22;
}

/* Icon */

.sv-reporting-item-icon {
    position: absolute;
    top: 50%;
    left: 17px;

    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 14px;

    transform:
        translateY(-50%)
        rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-reporting-deliverable:hover .sv-reporting-item-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        translateY(-50%)
        rotate(0deg)
        scale(1.06);
}

.sv-reporting-deliverable h3 {
    color: var(--warm-ivory);

    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.sv-reporting-deliverable p {
    color: var(--soft-beige);

    font-size: 14px;
    line-height: 1.7;

    opacity: 0.84;
}

/* =====================================================
   RIGHT REPORT VISUAL
===================================================== */

.sv-reporting-visual {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1300px;
}

/* Report back layer */

.sv-reporting-report-backdrop {
    position: absolute;
    inset: 75px 20px 35px 72px;

    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.12),
            rgba(248, 247, 244, 0.035)
        );

    transform:
        rotate(4deg)
        translate(10px, 8px);
}

/* Main report */

.sv-reporting-report {
    position: relative;
    z-index: 5;

    width: calc(100% - 45px);
    min-height: 465px;
    padding: 30px 30px 25px;

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.13),
            rgba(248, 247, 244, 0.045)
        );

    box-shadow:
        0 40px 90px rgba(30, 30, 30, 0.32),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(120px)
        rotateX(7deg)
        scale(0.93);

    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

/* Report becomes visible */

.sv-reporting-section.sv-reporting-visible
.sv-reporting-report {
    opacity: 1;

    transform:
        translateY(0)
        rotateX(0deg)
        scale(1);
}

/* Floating animation starts after entrance */

.sv-reporting-section.sv-reporting-visible
.sv-reporting-report.sv-report-floating {
    animation:
        svReportFloat 10s ease-in-out infinite;
}

@keyframes svReportFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

/* Decorative report circle */

.sv-reporting-report::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -100px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

/* =====================================================
   REPORT TOP
===================================================== */

.sv-reporting-report-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sv-reporting-report-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-reporting-report-title-icon {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 13px;
}

.sv-reporting-report-title div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-reporting-report-title span,
.sv-reporting-agency-logo span {
    color: var(--soft-beige);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.3px;
    font-weight: 800;
    text-transform: uppercase;

    opacity: 0.6;
}

.sv-reporting-report-title strong {
    color: var(--warm-ivory);

    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

/* Agency logo */

.sv-reporting-agency-logo {
    padding: 10px 13px;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 10px;

    background: rgba(248, 247, 244, 0.04);
}

/* =====================================================
   CHART
===================================================== */

.sv-reporting-chart {
    position: relative;
    z-index: 2;

    height: 185px;
    margin-top: 30px;
    padding: 15px 0 0;

    display: flex;
    align-items: flex-end;
    gap: 11px;

    border-bottom: 1px solid rgba(231, 225, 216, 0.16);
}

.sv-reporting-chart::before,
.sv-reporting-chart::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(231, 225, 216, 0.07);
}

.sv-reporting-chart::before {
    top: 34%;
}

.sv-reporting-chart::after {
    top: 67%;
}

.sv-reporting-chart-bar {
    position: relative;
    z-index: 2;

    flex: 1;

    height: 0;

    border-radius: 8px 8px 0 0;

    background:
        linear-gradient(
            to top,
            var(--natural-oak),
            var(--brushed-gold)
        );

    box-shadow:
        0 0 18px rgba(201, 162, 91, 0.13);

    transition:
        height 0.85s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ) var(--bar-delay);
}

/* Bars grow when visible */

.sv-reporting-section.sv-reporting-visible
.sv-reporting-chart-bar {
    height: var(--bar-height);
}

/* =====================================================
   REPORT DATA
===================================================== */

.sv-reporting-report-data {
    position: relative;
    z-index: 2;

    margin-top: 4px;
}

.sv-reporting-report-row {
    min-height: 53px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(231, 225, 216, 0.12);
}

.sv-reporting-report-row span {
    color: var(--warm-ivory);

    font-size: 10px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.sv-reporting-report-row strong {
    color: var(--brushed-gold);

    font-size: 12px;
    font-weight: 800;
}

/* Report footer */

.sv-reporting-report-footer {
    position: relative;
    z-index: 2;

    margin-top: 21px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-reporting-report-footer span {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 9px;
}

.sv-reporting-report-footer p {
    color: var(--soft-beige);

    font-size: 9px;
    letter-spacing: 1.1px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =====================================================
   FLOATING CARDS
===================================================== */

.sv-reporting-floating-metric,
.sv-reporting-floating-status {
    position: absolute;
    z-index: 8;

    min-width: 165px;
    padding: 13px 15px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid var(--soft-beige);
    border-radius: 15px;

    background: var(--warm-ivory);

    box-shadow:
        0 20px 45px rgba(30, 30, 30, 0.23);

    opacity: 0;

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.sv-reporting-floating-metric {
    top: 50px;
    right: -5px;

    transform:
        translateY(35px)
        rotate(3deg);
}

.sv-reporting-floating-status {
    left: -8px;
    bottom: 55px;

    transform:
        translateY(35px)
        rotate(-3deg);
}

.sv-reporting-section.sv-reporting-visible
.sv-reporting-floating-metric {
    opacity: 1;

    transform:
        translateY(0)
        rotate(3deg);

    transition-delay: 0.55s;
}

.sv-reporting-section.sv-reporting-visible
.sv-reporting-floating-status {
    opacity: 1;

    transform:
        translateY(0)
        rotate(-3deg);

    transition-delay: 0.7s;
}

.sv-reporting-floating-metric > span,
.sv-reporting-floating-status > span {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 13px;
}

.sv-reporting-floating-metric div,
.sv-reporting-floating-status div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sv-reporting-floating-metric small,
.sv-reporting-floating-status small {
    color: var(--charcoal);

    font-size: 7px;
    line-height: 1;
    letter-spacing: 0.7px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.6;
}

.sv-reporting-floating-metric strong,
.sv-reporting-floating-status strong {
    color: var(--primary-navy);

    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .sv-reporting-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sv-reporting-visual {
        width: min(800px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 700px) {

    .sv-reporting-section {
        padding: 80px 18px 90px;
    }

    .sv-reporting-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-reporting-large-number {
        display: none;
    }

    .sv-reporting-column-head {
        display: none;
    }

    .sv-reporting-deliverable {
        min-height: auto;
        padding:
            22px 20px 22px 76px;

        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sv-reporting-deliverable:hover {
        padding-left: 80px;
    }

    .sv-reporting-visual {
        min-height: 520px;
    }

    .sv-reporting-report {
        width: calc(100% - 20px);
    }

}

@media (max-width: 480px) {

    .sv-reporting-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-reporting-heading h2 {
        font-size: 35px;
    }

    .sv-reporting-deliverable h3 {
        font-size: 14px;
    }

    .sv-reporting-deliverable p {
        font-size: 12px;
    }

    .sv-reporting-visual {
        min-height: 465px;
    }

    .sv-reporting-report {
        width: 100%;
        min-height: 420px;
        padding: 23px 18px 20px;
        border-radius: 20px;
    }

    .sv-reporting-report-backdrop,
    .sv-reporting-floating-metric,
    .sv-reporting-floating-status {
        display: none;
    }

    .sv-reporting-chart {
        height: 150px;
    }

    .sv-reporting-agency-logo {
        display: none;
    }

}

/* =====================================================
   INDUSTRIES WE SERVE
   BLUEPRINT DIRECTORY LAYOUT
===================================================== */

.sv-industries-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-industries-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Glows */

.sv-industries-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-industries-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-industries-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-industries-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.sv-industries-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-industries-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.sv-industries-layout {
    margin-top: 42px;

    display: grid;
    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(650px, 1.28fr);

    align-items: stretch;
    gap: 70px;
}

/* =====================================================
   LEFT INTRO PANEL
===================================================== */

.sv-industries-intro {
    position: relative;

    min-height: 620px;
    padding: 43px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 34px 80px rgba(13, 28, 69, 0.22),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;
}

.sv-industries-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38px;

    width: 88px;
    height: 3px;

    background: var(--brushed-gold);
}

.sv-industries-intro::after {
    content: "";
    position: absolute;
    right: -135px;
    bottom: -155px;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

/* Large number */

.sv-industries-big-number {
    position: absolute;
    top: 18px;
    right: 26px;

    color: var(--warm-ivory);

    font-size: 135px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.045;
}

/* Intro icon */

.sv-industries-intro-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;
    margin-bottom: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 19px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 23px;

    transform: rotate(-5deg);
}

/* Intro heading */

.sv-industries-intro h2 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: clamp(47px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 800;
}

.sv-industries-intro h2 span {
    display: block;
    margin-top: 6px;

    color: var(--brushed-gold);
}

/* Intro paragraph */

.sv-industries-intro p {
    position: relative;
    z-index: 2;

    max-width: 430px;
    margin-top: 25px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.86;
}

/* Decorative lines */

.sv-industries-intro-lines {
    position: relative;
    z-index: 2;

    width: 190px;
    margin-top: 58px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-industries-intro-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

.sv-industries-intro-lines span:nth-child(1) {
    width: 100%;
}

.sv-industries-intro-lines span:nth-child(2) {
    width: 68%;
}

.sv-industries-intro-lines span:nth-child(3) {
    width: 38%;
}

/* =====================================================
   INDUSTRY DIRECTORY
===================================================== */

.sv-industries-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 14px;
}

/* Industry row */

.sv-industry-item {
    position: relative;

    min-height: 104px;
    padding: 18px 58px 18px 82px;

    display: flex;
    align-items: center;

    border: 1px solid var(--soft-beige);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 16px 38px rgba(13, 28, 69, 0.07),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Alternate offset */

.sv-industry-item:nth-child(4n + 2),
.sv-industry-item:nth-child(4n + 3) {
    transform: translateX(20px);
}

/* Gold top accent */

.sv-industry-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

/* Decorative circle */

.sv-industry-item::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -62px;

    width: 128px;
    height: 128px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.sv-industry-item:hover {
    transform: translateY(-6px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--soft-beige)
        );

    box-shadow:
        0 25px 55px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-industry-item:nth-child(4n + 2):hover,
.sv-industry-item:nth-child(4n + 3):hover {
    transform:
        translateX(20px)
        translateY(-6px);
}

.sv-industry-item:hover::before {
    width: calc(100% - 44px);
}

/* Number */

.sv-industry-number {
    position: absolute;
    top: 15px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* Icon */

.sv-industry-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 14px;

    transform:
        translateY(-50%)
        rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-industry-item:hover .sv-industry-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform:
        translateY(-50%)
        rotate(0deg)
        scale(1.06);
}

/* Industry name */

.sv-industry-item h3 {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

/* Arrow */

.sv-industry-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 2;

    width: 35px;
    height: 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    background: var(--warm-ivory);
    color: var(--natural-oak);

    font-size: 9px;

    transform: translateY(-50%);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.sv-industry-item:hover .sv-industry-arrow {
    border-color: var(--brushed-gold);

    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform:
        translateY(-50%)
        translateX(5px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .sv-industries-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sv-industries-intro {
        min-height: auto;
        padding: 42px 35px;
    }

    .sv-industries-big-number,
    .sv-industries-intro-lines {
        display: none;
    }

}

@media (max-width: 700px) {

    .sv-industries-section {
        padding: 80px 18px 90px;
    }

    .sv-industries-intro {
        padding: 32px 25px;
        border-radius: 22px;
    }

    .sv-industries-intro h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .sv-industries-directory {
        grid-template-columns: 1fr;
    }

    .sv-industry-item,
    .sv-industry-item:nth-child(4n + 2),
    .sv-industry-item:nth-child(4n + 3) {
        transform: none;
    }

    .sv-industry-item:hover,
    .sv-industry-item:nth-child(4n + 2):hover,
    .sv-industry-item:nth-child(4n + 3):hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 480px) {

    .sv-industries-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-industries-intro h2 {
        font-size: 36px;
    }

    .sv-industries-intro p {
        font-size: 13px;
    }

    .sv-industry-item {
        min-height: 90px;
        padding:
            17px 50px 17px 72px;
    }

    .sv-industry-icon {
        left: 16px;

        width: 42px;
        height: 42px;
    }

    .sv-industry-arrow {
        right: 14px;

        width: 31px;
        height: 31px;
    }

    .sv-industry-item h3 {
        font-size: 14px;
    }

}

/* =====================================================
   WHITE LABEL PROGRAM OVERVIEW
===================================================== */

.sv-tier-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-tier-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

.sv-tier-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-tier-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-tier-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-tier-container {
    position: relative;
    z-index: 3;

    width: min(1360px, 100%);
    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.sv-tier-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-tier-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-tier-heading {
    position: relative;
    margin-top: 34px;
}

.sv-tier-heading h2 {
    max-width: 950px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 60px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-tier-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.sv-tier-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   TIER DECK
===================================================== */

.sv-tier-deck {
    margin-top: 62px;

    display: grid;
    grid-template-columns:
        minmax(260px, 0.72fr)
        minmax(760px, 1.28fr);

    gap: 24px;
}

/* =====================================================
   LEFT TIER INDEX
===================================================== */

.sv-tier-index {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sv-tier-index-item {
    position: relative;

    min-height: 132px;
    padding: 24px 58px 22px 25px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;

    border: 1px solid var(--soft-beige);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 16px 38px rgba(13, 28, 69, 0.07),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-tier-index-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;

    width: 44px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-tier-index-item:hover {
    transform: translateX(7px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 24px 52px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-tier-index-item:hover::before {
    width: calc(100% - 48px);
}

.sv-tier-index-item-active {
    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 25px 60px rgba(13, 28, 69, 0.22),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-tier-index-number {
    width: 47px;
    height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 10px;
    font-weight: 800;
}

.sv-tier-index-item-active .sv-tier-index-number {
    background: var(--brushed-gold);
    color: var(--dark-navy);
}

.sv-tier-index-item div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sv-tier-index-item small {
    color: var(--natural-oak);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-tier-index-item strong {
    color: var(--primary-navy);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.sv-tier-index-item-active strong {
    color: var(--warm-ivory);
}

.sv-tier-index-arrow {
    position: absolute;
    top: 50%;
    right: 17px;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    background: var(--warm-ivory);
    color: var(--natural-oak);

    font-size: 9px;

    transform: translateY(-50%);
}

.sv-tier-index-item-active .sv-tier-index-arrow {
    border-color: var(--brushed-gold);

    background: var(--brushed-gold);
    color: var(--dark-navy);
}

/* =====================================================
   RIGHT TIER PANELS
===================================================== */

.sv-tier-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.sv-tier-panel {
    position: relative;

    min-height: 470px;
    padding: 29px 25px 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 20px 48px rgba(13, 28, 69, 0.08),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-tier-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;

    width: 48px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-tier-panel::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -85px;

    width: 180px;
    height: 180px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

.sv-tier-panel:hover {
    transform: translateY(-7px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 30px 68px rgba(13, 28, 69, 0.14),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-tier-panel:hover::before {
    width: calc(100% - 50px);
}

/* Featured panel */

.sv-tier-panel-featured {
    transform: translateY(-16px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 34px 78px rgba(13, 28, 69, 0.25),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-tier-panel-featured:hover {
    transform: translateY(-24px);
}

/* Popular tag */

.sv-tier-popular-tag {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 11px;

    border-radius: 30px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Panel top */

.sv-tier-panel-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.sv-tier-panel-top div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-tier-panel-top small {
    color: var(--natural-oak);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-tier-panel-top h3 {
    color: var(--primary-navy);

    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.7px;
    font-weight: 800;
}

.sv-tier-panel-featured .sv-tier-panel-top h3 {
    color: var(--warm-ivory);
}

/* Panel icon */

.sv-tier-panel-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 15px;

    transform: rotate(-4deg);
}

.sv-tier-panel-featured .sv-tier-panel-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);
}

/* Panel meta */

.sv-tier-panel-meta {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    color: var(--charcoal);

    font-size: 12px;
    line-height: 1.7;

    opacity: 0.72;
}

.sv-tier-panel-featured .sv-tier-panel-meta {
    color: var(--soft-beige);
}

/* List */

.sv-tier-list {
    position: relative;
    z-index: 2;

    margin-top: 24px;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.sv-tier-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 9px;

    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.55;
}

.sv-tier-panel-featured .sv-tier-list li {
    color: var(--soft-beige);
}

.sv-tier-list i {
    margin-top: 4px;

    color: var(--brushed-gold);

    font-size: 9px;
}

/* Buttons */

.sv-tier-btn {
    position: relative;
    z-index: 2;

    min-height: 52px;
    margin-top: auto;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.sv-tier-btn-outline {
    border: 1px solid var(--primary-navy);

    background: transparent;
    color: var(--primary-navy);
}

.sv-tier-btn-outline:hover {
    background: var(--primary-navy);
    color: var(--warm-ivory);

    transform: translateY(-3px);
}

.sv-tier-btn-primary {
    border: 1px solid var(--brushed-gold);

    background: var(--brushed-gold);
    color: var(--dark-navy);
}

.sv-tier-btn-primary:hover {
    background: var(--natural-oak);
    color: var(--warm-ivory);

    transform: translateY(-3px);
}

/* =====================================================
   ONBOARDING FLOW
===================================================== */

.sv-tier-onboarding {
    margin-top: 45px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;

    border: 1px solid var(--soft-beige);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 16px 38px rgba(13, 28, 69, 0.07);
}

.sv-tier-onboarding > i {
    color: var(--brushed-gold);

    font-size: 10px;
}

.sv-tier-onboarding-step {
    min-height: 50px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background: var(--warm-ivory);
}

.sv-tier-onboarding-step span {
    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 8px;
    font-weight: 800;
}

.sv-tier-onboarding-step strong {
    color: var(--primary-navy);

    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1120px) {

    .sv-tier-deck {
        grid-template-columns: 1fr;
    }

    .sv-tier-index {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {

    .sv-tier-panels {
        grid-template-columns: 1fr;
    }

    .sv-tier-panel,
    .sv-tier-panel-featured {
        min-height: auto;
        transform: none;
    }

    .sv-tier-panel-featured:hover {
        transform: translateY(-7px);
    }

    .sv-tier-onboarding {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 700px) {

    .sv-tier-section {
        padding: 80px 18px 90px;
    }

    .sv-tier-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-tier-large-number {
        display: none;
    }

    .sv-tier-index {
        grid-template-columns: 1fr;
    }

    .sv-tier-onboarding > i {
        display: none;
    }

    .sv-tier-onboarding-step {
        width: 100%;
        justify-content: flex-start;
    }

}

@media (max-width: 480px) {

    .sv-tier-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-tier-heading h2 {
        font-size: 35px;
    }

    .sv-tier-index-item {
        min-height: 110px;
    }

    .sv-tier-panel {
        padding: 25px 20px;
    }

    .sv-tier-panel-top h3 {
        font-size: 22px;
    }

}

/* =====================================================
   COMPARISON SECTION V2
   THREE PROFILE PANELS
===================================================== */

.sv-compare-v2-section {
    position: relative;
    padding: 115px 24px 135px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-compare-v2-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

.sv-compare-v2-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-compare-v2-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-compare-v2-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-compare-v2-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.sv-compare-v2-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-compare-v2-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-compare-v2-heading {
    position: relative;
    margin-top: 34px;
}

.sv-compare-v2-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 1050px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 52px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-compare-v2-heading h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.sv-compare-v2-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   THREE COLUMN LAYOUT
===================================================== */

.sv-compare-v2-layout {
    margin-top: 68px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

/* =====================================================
   PANEL
===================================================== */

.sv-compare-v2-panel {
    position: relative;

    min-height: 660px;
    padding: 28px 24px 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 22px 52px rgba(13, 28, 69, 0.09),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sv-compare-v2-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;

    width: 55px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.4s ease;
}

.sv-compare-v2-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -105px;

    width: 220px;
    height: 220px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.sv-compare-v2-panel:hover {
    transform: translateY(-8px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 34px 75px rgba(13, 28, 69, 0.16),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-compare-v2-panel:hover::before {
    width: calc(100% - 50px);
}

/* =====================================================
   FEATURED PANEL
===================================================== */

.sv-compare-v2-panel-featured {
    min-height: 700px;

    transform: translateY(-20px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 40px 90px rgba(13, 28, 69, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-compare-v2-panel-featured::after {
    border-color: rgba(201, 162, 91, 0.14);
}

.sv-compare-v2-panel-featured:hover {
    transform: translateY(-28px);
}

/* Best badge */

.sv-compare-v2-best-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;

    padding: 8px 12px;

    border-radius: 30px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =====================================================
   PANEL HEADER
===================================================== */

.sv-compare-v2-panel-header {
    position: relative;
    z-index: 3;

    min-height: 110px;

    display: flex;
    align-items: center;
    gap: 16px;

    border-bottom: 1px solid var(--soft-beige);
}

.sv-compare-v2-panel-featured
.sv-compare-v2-panel-header {
    border-color: rgba(231, 225, 216, 0.15);
}

.sv-compare-v2-panel-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 17px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 18px;

    transform: rotate(-5deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-compare-v2-panel:hover
.sv-compare-v2-panel-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

.sv-compare-v2-panel-featured
.sv-compare-v2-panel-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);
}

.sv-compare-v2-panel-header > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sv-compare-v2-panel-number {
    color: var(--natural-oak);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;
}

.sv-compare-v2-panel-header h3 {
    color: var(--primary-navy);

    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.sv-compare-v2-panel-featured
.sv-compare-v2-panel-header h3 {
    color: var(--warm-ivory);
}

/* =====================================================
   FEATURE LIST
===================================================== */

.sv-compare-v2-feature-list {
    position: relative;
    z-index: 3;

    margin-top: 13px;

    display: flex;
    flex-direction: column;
}

/* Feature row */

.sv-compare-v2-feature-row {
    position: relative;

    min-height: 91px;
    padding: 15px 0;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;

    border-bottom: 1px solid var(--soft-beige);

    transition:
        padding-left 0.35s ease,
        background 0.35s ease;
}

.sv-compare-v2-feature-row:last-child {
    border-bottom: none;
}

.sv-compare-v2-panel-featured
.sv-compare-v2-feature-row {
    border-color: rgba(231, 225, 216, 0.13);
}

.sv-compare-v2-feature-row:hover {
    padding-left: 8px;

    background:
        linear-gradient(
            90deg,
            rgba(201, 162, 91, 0.09),
            transparent
        );
}

/* Feature icon */

.sv-compare-v2-feature-icon {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 12px;

    background: var(--light-gray);
    color: var(--primary-navy);

    font-size: 12px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.sv-compare-v2-feature-row:hover
.sv-compare-v2-feature-icon {
    border-color: var(--brushed-gold);

    background: var(--primary-navy);
    color: var(--brushed-gold);
}

.sv-compare-v2-panel-featured
.sv-compare-v2-feature-icon {
    border-color: rgba(201, 162, 91, 0.28);

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);
}

/* Feature name */

.sv-compare-v2-feature-name {
    color: var(--primary-navy);

    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

.sv-compare-v2-panel-featured
.sv-compare-v2-feature-name {
    color: var(--warm-ivory);
}

/* =====================================================
   STATUS
===================================================== */

.sv-compare-v2-status {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Check */

.sv-compare-v2-status-check {
    width: 38px;
    height: 38px;

    border: 1px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 11px;

    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.07);

    transition: transform 0.35s ease;
}

.sv-compare-v2-feature-row:hover
.sv-compare-v2-status-check {
    transform: scale(1.1);
}

/* Cross */

.sv-compare-v2-status-cross {
    width: 36px;
    height: 36px;

    border: 1px solid var(--natural-oak);
    border-radius: 50%;

    background: rgba(184, 133, 88, 0.1);
    color: var(--natural-oak);

    font-size: 10px;
}

/* Text status */

.sv-compare-v2-status-text {
    min-width: 72px;
    min-height: 34px;
    padding: 0 12px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background: var(--light-gray);
    color: var(--charcoal);

    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .sv-compare-v2-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sv-compare-v2-panel,
    .sv-compare-v2-panel-featured {
        min-height: auto;
        transform: none;
    }

    .sv-compare-v2-panel-featured:hover {
        transform: translateY(-8px);
    }

}

@media (max-width: 700px) {

    .sv-compare-v2-section {
        padding: 80px 18px 90px;
    }

    .sv-compare-v2-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-compare-v2-large-number {
        display: none;
    }

    .sv-compare-v2-panel {
        padding: 25px 20px 21px;
        border-radius: 21px;
    }

    .sv-compare-v2-best-badge {
        top: 14px;
        right: 14px;
    }

}

@media (max-width: 480px) {

    .sv-compare-v2-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-compare-v2-heading h2 {
        font-size: 35px;
    }

    .sv-compare-v2-panel-header {
        min-height: 100px;
    }

    .sv-compare-v2-panel-icon {
        width: 51px;
        height: 51px;

        flex-basis: 51px;
    }

    .sv-compare-v2-panel-header h3 {
        font-size: 18px;
    }

    .sv-compare-v2-feature-row {
        grid-template-columns: auto 1fr;
        min-height: auto;
    }

    .sv-compare-v2-status {
        grid-column: 2;
        justify-self: start;
    }

    .sv-compare-v2-feature-name {
        font-size: 12px;
    }

}

/* =====================================================
   ACTIVE WHITE LABEL PARTNER RESULTS
===================================================== */

.sv-case-section {
    position: relative;
    padding: 115px 24px 135px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-case-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

.sv-case-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-case-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-case-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-case-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.sv-case-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-case-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-case-heading {
    position: relative;
    margin-top: 34px;
}

.sv-case-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 950px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 58px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-case-heading h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.sv-case-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   CASE STUDY LAYOUT
===================================================== */

.sv-case-layout {
    margin-top: 68px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 25px;
}

/* =====================================================
   SHARED CASE CARD
===================================================== */

.sv-case-card {
    position: relative;

    min-height: 550px;
    padding: 34px 32px 31px;

    display: flex;
    flex-direction: column;

    border-radius: 26px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* First card */

.sv-case-card-primary {
    border: 1px solid rgba(201, 162, 91, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.12),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 34px 80px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.07);

    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

/* Second card */

.sv-case-card-secondary {
    margin-top: 55px;

    border: 1px solid var(--soft-beige);

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 30px 70px rgba(30, 30, 30, 0.24),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;

    width: 70px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.4s ease;
}

.sv-case-card::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;

    width: 270px;
    height: 270px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

.sv-case-card:hover {
    transform: translateY(-9px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 43px 95px rgba(30, 30, 30, 0.34),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-case-card:hover::before {
    width: calc(100% - 64px);
}

/* =====================================================
   CARD INDEX
===================================================== */

.sv-case-card-index {
    position: absolute;
    top: 23px;
    right: 25px;

    font-size: 80px;
    line-height: 1;
    font-weight: 800;

    pointer-events: none;
}

.sv-case-card-primary .sv-case-card-index {
    color: var(--warm-ivory);
    opacity: 0.035;
}

.sv-case-card-secondary .sv-case-card-index {
    color: var(--primary-navy);
    opacity: 0.045;
}

/* =====================================================
   CARD TOP
===================================================== */

.sv-case-card-top {
    position: relative;
    z-index: 2;

    min-height: 110px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
}

.sv-case-card-icon {
    width: 62px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 18px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 19px;

    transform: rotate(-5deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-case-card-secondary .sv-case-card-icon {
    background: var(--soft-beige);
    color: var(--primary-navy);
}

.sv-case-card:hover .sv-case-card-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

.sv-case-card-top > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-case-card-type {
    color: var(--brushed-gold);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-case-card h3 {
    max-width: 470px;

    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.sv-case-card-primary h3 {
    color: var(--warm-ivory);
}

.sv-case-card-secondary h3 {
    color: var(--primary-navy);
}

/* =====================================================
   CHALLENGE BLOCK
===================================================== */

.sv-case-challenge {
    position: relative;
    z-index: 2;

    margin-top: 24px;
    padding: 24px 24px 24px 29px;

    display: grid;
    grid-template-columns: 95px 1fr;
    align-items: start;
    gap: 18px;

    border-radius: 17px;

    overflow: hidden;
}

.sv-case-card-primary .sv-case-challenge {
    border: 1px solid rgba(231, 225, 216, 0.14);

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.08),
            rgba(248, 247, 244, 0.025)
        );
}

.sv-case-card-secondary .sv-case-challenge {
    border: 1px solid var(--soft-beige);

    background: var(--light-gray);
}

.sv-case-challenge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.sv-case-detail-label {
    color: var(--natural-oak);

    font-size: 8px;
    line-height: 1.4;
    letter-spacing: 1.35px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-case-challenge p {
    font-size: 14px;
    line-height: 1.75;
}

.sv-case-card-primary .sv-case-challenge p {
    color: var(--soft-beige);
}

.sv-case-card-secondary .sv-case-challenge p {
    color: var(--charcoal);
}

/* =====================================================
   METRICS
===================================================== */

.sv-case-metrics {
    position: relative;
    z-index: 2;

    margin-top: 26px;
}

.sv-case-result-grid {
    margin-top: 15px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.sv-case-result {
    position: relative;

    min-height: 145px;
    padding: 21px 18px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.sv-case-card-primary .sv-case-result {
    border: 1px solid rgba(201, 162, 91, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.11),
            rgba(248, 247, 244, 0.025)
        );
}

.sv-case-card-secondary .sv-case-result {
    border: 1px solid var(--soft-beige);

    background: var(--warm-ivory);
}

.sv-case-result::after {
    content: "";
    position: absolute;
    right: -43px;
    bottom: -50px;

    width: 105px;
    height: 105px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;
}

.sv-case-result:hover {
    transform: translateY(-5px);
    border-color: var(--brushed-gold);
}

.sv-case-result-icon {
    position: absolute;
    top: 17px;
    left: 17px;

    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 12px;
}

.sv-case-result strong {
    position: relative;
    z-index: 2;

    color: var(--brushed-gold);

    font-size: 35px;
    line-height: 1;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.sv-case-result small {
    position: relative;
    z-index: 2;

    margin-top: 9px;

    font-size: 10px;
    line-height: 1.45;
    font-weight: 700;
}

.sv-case-card-primary .sv-case-result small {
    color: var(--soft-beige);
}

.sv-case-card-secondary .sv-case-result small {
    color: var(--charcoal);
}

/* =====================================================
   BOTTOM DECORATIVE LINE
===================================================== */

.sv-case-card-line {
    position: absolute;
    left: 32px;
    bottom: 0;

    width: 145px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .sv-case-layout {
        grid-template-columns: 1fr;
    }

    .sv-case-card,
    .sv-case-card-secondary {
        min-height: auto;
        margin-top: 0;
    }

}

@media (max-width: 700px) {

    .sv-case-section {
        padding: 80px 18px 90px;
    }

    .sv-case-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-case-large-number {
        display: none;
    }

    .sv-case-card {
        padding: 28px 23px 25px;
        border-radius: 22px;
    }

    .sv-case-card::before {
        left: 23px;
    }

    .sv-case-card:hover::before {
        width: calc(100% - 46px);
    }

    .sv-case-challenge {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}

@media (max-width: 480px) {

    .sv-case-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-case-heading h2 {
        font-size: 35px;
    }

    .sv-case-card-top {
        grid-template-columns: 1fr;
    }

    .sv-case-card h3 {
        font-size: 20px;
    }

    .sv-case-result-grid {
        grid-template-columns: 1fr;
    }

    .sv-case-challenge p {
        font-size: 13px;
    }

    .sv-case-card-index {
        font-size: 60px;
    }

}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */

.sv-testimonial-section {
    position: relative;
    padding: 115px 24px 135px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background grid */

.sv-testimonial-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 10%,
        var(--charcoal) 90%,
        transparent
    );
}

/* Background glows */

.sv-testimonial-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.sv-testimonial-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-testimonial-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.sv-testimonial-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* Label */

.sv-testimonial-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-testimonial-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.sv-testimonial-heading {
    position: relative;
    margin-top: 34px;
}

.sv-testimonial-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 980px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 56px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-testimonial-heading h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.sv-testimonial-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   TESTIMONIAL LAYOUT
===================================================== */

.sv-testimonial-layout {
    margin-top: 68px;

    display: grid;
    grid-template-columns:
        minmax(480px, 1.08fr)
        minmax(430px, 0.92fr);

    align-items: stretch;
    gap: 22px;
}

.sv-testimonial-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* =====================================================
   SHARED TESTIMONIAL CARD
===================================================== */

.sv-testimonial-card {
    position: relative;

    border-radius: 25px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sv-testimonial-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -105px;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-testimonial-card:hover {
    transform: translateY(-8px);
}

/* =====================================================
   FEATURED CARD
===================================================== */

.sv-testimonial-card-featured {
    min-height: 570px;
    padding: 45px 42px 38px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 38px 88px rgba(13, 28, 69, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-testimonial-card-featured:hover {
    box-shadow:
        0 48px 100px rgba(13, 28, 69, 0.34),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

/* Large quotation icon */

.sv-testimonial-quote-icon {
    width: 76px;
    height: 76px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.48);
    border-radius: 21px;

    background: rgba(201, 162, 91, 0.13);
    color: var(--brushed-gold);

    font-size: 28px;

    transform: rotate(-5deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-testimonial-card-featured:hover
.sv-testimonial-quote-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

.sv-testimonial-card-featured blockquote {
    position: relative;
    z-index: 2;

    max-width: 730px;
    margin: 58px 0 55px;

    color: var(--warm-ivory);

    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.45;
    letter-spacing: -1.2px;
    font-weight: 800;
}

/* =====================================================
   SMALL CARDS
===================================================== */

.sv-testimonial-card-small {
    min-height: 274px;
    padding: 31px 30px 27px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 22px 52px rgba(13, 28, 69, 0.09),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-testimonial-card-small:hover {
    border-color: var(--brushed-gold);

    box-shadow:
        0 32px 72px rgba(13, 28, 69, 0.15),
        inset 0 1px 0 var(--warm-ivory);
}

.sv-testimonial-small-quote {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 14px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 17px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-testimonial-card-small:hover
.sv-testimonial-small-quote {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.05);
}

.sv-testimonial-card-small blockquote {
    position: relative;
    z-index: 2;

    margin: 26px 0 30px;

    color: var(--primary-navy);

    font-size: 17px;
    line-height: 1.65;
    font-weight: 800;
}

/* =====================================================
   INDEX
===================================================== */

.sv-testimonial-index {
    position: absolute;
    top: 22px;
    right: 24px;

    font-size: 76px;
    line-height: 1;
    font-weight: 800;

    pointer-events: none;
}

.sv-testimonial-card-featured .sv-testimonial-index {
    color: var(--warm-ivory);
    opacity: 0.035;
}

.sv-testimonial-card-small .sv-testimonial-index {
    color: var(--primary-navy);
    opacity: 0.045;
}

/* =====================================================
   AUTHOR
===================================================== */

.sv-testimonial-author {
    position: relative;
    z-index: 2;

    margin-top: auto;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
}

.sv-testimonial-avatar {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 15px;

    box-shadow:
        0 0 0 6px rgba(201, 162, 91, 0.09);
}

.sv-testimonial-card-small .sv-testimonial-avatar {
    background: var(--primary-navy);
    color: var(--brushed-gold);
}

.sv-testimonial-author > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sv-testimonial-author strong {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.sv-testimonial-card-featured
.sv-testimonial-author strong {
    color: var(--warm-ivory);
}

.sv-testimonial-card-small
.sv-testimonial-author strong {
    color: var(--primary-navy);
}

.sv-testimonial-author small {
    font-size: 10px;
    line-height: 1.4;
}

.sv-testimonial-card-featured
.sv-testimonial-author small {
    color: var(--soft-beige);
    opacity: 0.68;
}

.sv-testimonial-card-small
.sv-testimonial-author small {
    color: var(--charcoal);
    opacity: 0.62;
}

/* Featured bottom line */

.sv-testimonial-card-line {
    position: absolute;
    left: 42px;
    bottom: 0;

    width: 180px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 980px) {

    .sv-testimonial-layout {
        grid-template-columns: 1fr;
    }

    .sv-testimonial-card-featured {
        min-height: auto;
    }

    .sv-testimonial-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

}

@media (max-width: 700px) {

    .sv-testimonial-section {
        padding: 80px 18px 90px;
    }

    .sv-testimonial-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-testimonial-large-number {
        display: none;
    }

    .sv-testimonial-stack {
        grid-template-columns: 1fr;
    }

    .sv-testimonial-card-featured {
        padding: 35px 27px 31px;
        border-radius: 22px;
    }

    .sv-testimonial-card-featured blockquote {
        margin: 45px 0;

        font-size: 27px;
    }

    .sv-testimonial-card-small {
        min-height: auto;
    }

}

@media (max-width: 480px) {

    .sv-testimonial-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-testimonial-heading h2 {
        font-size: 35px;
    }

    .sv-testimonial-card-featured blockquote {
        font-size: 23px;
    }

    .sv-testimonial-card-small {
        padding: 27px 22px 24px;
    }

    .sv-testimonial-card-small blockquote {
        font-size: 15px;
    }

    .sv-testimonial-author {
        grid-template-columns: auto 1fr;
    }

    .sv-testimonial-avatar {
        width: 47px;
        height: 47px;
    }

}

/* =====================================================
   WHY AGENCIES CHOOSE US
   STICKY LEFT + SCROLLING RIGHT
===================================================== */

.sv-reasons-section {
    position: relative;

    padding: 120px 24px 135px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: clip;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-reasons-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );
}

.sv-reasons-glow {
    position: absolute;
    z-index: -3;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-reasons-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-reasons-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-reasons-container {
    position: relative;
    z-index: 3;

    width: min(1360px, 100%);
    margin: 0 auto;

    overflow: visible;
}

/* =====================================================
   LABEL
===================================================== */

.sv-reasons-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sv-reasons-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.sv-reasons-layout {
    margin-top: 45px;

    display: grid;
    grid-template-columns:
        minmax(350px, 0.72fr)
        minmax(680px, 1.28fr);

    align-items: stretch;
    gap: 80px;

    overflow: visible;
}

/* =====================================================
   LEFT STICKY INTRO
===================================================== */

.sv-reasons-intro {
    position: sticky;
    top: 120px;

    align-self: start;

    min-height: 610px;
    max-height: calc(100vh - 150px);

    padding: 46px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 35px 85px rgba(13, 28, 69, 0.24),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;
}

.sv-reasons-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;

    width: 85px;
    height: 3px;

    background: var(--brushed-gold);
}

.sv-reasons-intro::after {
    content: "";
    position: absolute;
    right: -155px;
    bottom: -170px;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-reasons-big-number {
    position: absolute;
    top: 22px;
    right: 28px;

    color: var(--warm-ivory);

    font-size: 140px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.045;
}

.sv-reasons-intro-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;
    margin-bottom: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 20px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 23px;

    transform: rotate(-5deg);
}

.sv-reasons-intro h2 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 800;
}

.sv-reasons-intro h2 span {
    display: block;
    margin-top: 6px;

    color: var(--brushed-gold);
}

.sv-reasons-intro p {
    position: relative;
    z-index: 2;

    max-width: 410px;
    margin-top: 24px;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;

    opacity: 0.82;
}

.sv-reasons-intro-lines {
    position: relative;
    z-index: 2;

    width: 190px;
    margin-top: 65px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-reasons-intro-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

.sv-reasons-intro-lines span:nth-child(1) {
    width: 100%;
}

.sv-reasons-intro-lines span:nth-child(2) {
    width: 66%;
}

.sv-reasons-intro-lines span:nth-child(3) {
    width: 36%;
}

/* =====================================================
   RIGHT SCROLLING FLOW
===================================================== */

.sv-reasons-flow {
    position: relative;

    min-height: 1120px;
    padding: 30px 0 55px;

    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* Central spine */

.sv-reasons-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--brushed-gold) 8%,
            var(--brushed-gold) 92%,
            transparent
        );

    box-shadow:
        0 0 18px rgba(201, 162, 91, 0.22);

    transform: translateX(-50%);
}

/* =====================================================
   REASON ROW
===================================================== */

.sv-reason-row {
    position: relative;

    min-height: 150px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        76px
        minmax(0, 1fr);

    align-items: center;
}

.sv-reason-row-left .sv-reason-content {
    grid-column: 1;
}

.sv-reason-row-left .sv-reason-marker {
    grid-column: 2;
}

.sv-reason-row-right .sv-reason-marker {
    grid-column: 2;
}

.sv-reason-row-right .sv-reason-content {
    grid-column: 3;
}

/* Connector line */

.sv-reason-row::before {
    content: "";
    position: absolute;
    top: 50%;

    width: 74px;
    height: 1px;

    opacity: 0.65;
}

.sv-reason-row-left::before {
    left: calc(50% - 74px);

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            var(--soft-beige)
        );
}

.sv-reason-row-right::before {
    left: 50%;

    background:
        linear-gradient(
            90deg,
            var(--soft-beige),
            var(--brushed-gold)
        );
}

/* =====================================================
   REASON CONTENT
===================================================== */

.sv-reason-content {
    position: relative;

    min-height: 135px;
    padding: 25px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 17px;

    border-top: 1px solid var(--soft-beige);
    border-bottom: 1px solid var(--soft-beige);

    transition:
        padding-left 0.35s ease,
        padding-right 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.sv-reason-row-left .sv-reason-content {
    border-left: 4px solid var(--brushed-gold);

    background:
        linear-gradient(
            90deg,
            var(--soft-beige),
            transparent
        );
}

.sv-reason-row-right .sv-reason-content {
    border-right: 4px solid var(--brushed-gold);

    background:
        linear-gradient(
            270deg,
            var(--soft-beige),
            transparent
        );
}

.sv-reason-row-left:hover .sv-reason-content {
    padding-left: 34px;

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            90deg,
            var(--soft-beige),
            var(--warm-ivory)
        );
}

.sv-reason-row-right:hover .sv-reason-content {
    padding-right: 34px;

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            270deg,
            var(--soft-beige),
            var(--warm-ivory)
        );
}

/* =====================================================
   MARKER
===================================================== */

.sv-reason-marker {
    position: relative;
    z-index: 4;

    width: 56px;
    height: 56px;
    margin: 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 800;

    box-shadow:
        0 0 0 8px var(--light-gray),
        0 12px 28px rgba(13, 28, 69, 0.2);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-reason-row:hover .sv-reason-marker {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: scale(1.1);
}

/* =====================================================
   ICON
===================================================== */

.sv-reason-icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 15px;

    background: var(--warm-ivory);
    color: var(--primary-navy);

    font-size: 15px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-reason-row:hover .sv-reason-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform:
        rotate(0deg)
        scale(1.07);
}

/* =====================================================
   CONTENT TEXT
===================================================== */

.sv-reason-content h3 {
    color: var(--primary-navy);

    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.sv-reason-content p {
    margin-top: 8px;

    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.7;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .sv-reasons-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sv-reasons-intro {
        position: relative;
        top: auto;

        min-height: auto;
        max-height: none;

        padding: 42px 36px;
    }

    .sv-reasons-big-number,
    .sv-reasons-intro-lines {
        display: none;
    }

    .sv-reasons-flow {
        min-height: auto;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .sv-reasons-section {
        padding: 80px 18px 90px;
    }

    .sv-reasons-intro {
        padding: 34px 26px;
        border-radius: 23px;
    }

    .sv-reasons-intro h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .sv-reasons-flow {
        padding: 15px 0 15px 70px;
        gap: 18px;
    }

    .sv-reasons-spine {
        left: 27px;
        transform: none;
    }

    .sv-reason-row {
        min-height: auto;
        display: block;
    }

    .sv-reason-row::before,
    .sv-reason-row-left::before,
    .sv-reason-row-right::before {
        top: 50%;
        left: -43px;

        width: 43px;

        background:
            linear-gradient(
                90deg,
                var(--brushed-gold),
                var(--soft-beige)
            );
    }

    .sv-reason-marker {
        position: absolute;
        top: 50%;
        left: -70px;

        width: 54px;
        height: 54px;

        transform: translateY(-50%);
    }

    .sv-reason-row:hover .sv-reason-marker {
        transform:
            translateY(-50%)
            scale(1.08);
    }

    .sv-reason-row-left .sv-reason-content,
    .sv-reason-row-right .sv-reason-content {
        border-right: none;
        border-left: 4px solid var(--brushed-gold);

        background:
            linear-gradient(
                90deg,
                var(--soft-beige),
                var(--warm-ivory)
            );
    }

    .sv-reason-row-right:hover .sv-reason-content {
        padding-right: 25px;
        padding-left: 34px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sv-reasons-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-reasons-intro h2 {
        font-size: 36px;
    }

    .sv-reasons-intro p {
        font-size: 14px;
    }

    .sv-reasons-flow {
        padding-left: 58px;
    }

    .sv-reasons-spine {
        left: 22px;
    }

    .sv-reason-marker {
        left: -58px;

        width: 46px;
        height: 46px;

        box-shadow:
            0 0 0 5px var(--light-gray),
            0 10px 22px rgba(13, 28, 69, 0.17);
    }

    .sv-reason-row::before,
    .sv-reason-row-left::before,
    .sv-reason-row-right::before {
        left: -34px;
        width: 34px;
    }

    .sv-reason-content {
        min-height: auto;
        padding: 23px 19px;

        grid-template-columns: 1fr;
    }

    .sv-reason-row-left:hover .sv-reason-content,
    .sv-reason-row-right:hover .sv-reason-content {
        padding-left: 25px;
    }

    .sv-reason-content h3 {
        font-size: 15px;
    }

    .sv-reason-content p {
        font-size: 12px;
    }

}

/* =====================================================
   FAQ SECTION
   QUESTION NAVIGATION + ANSWER PANEL
===================================================== */

.sv-faq-section {
    position: relative;
    padding: 120px 24px 135px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: clip;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-faq-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );
}

.sv-faq-glow {
    position: absolute;
    z-index: -3;

    width: 470px;
    height: 470px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-faq-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-faq-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-faq-container {
    position: relative;
    z-index: 3;

    width: min(1360px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.sv-faq-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-faq-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-faq-heading {
    position: relative;
    margin-top: 34px;
}

.sv-faq-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 55px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-faq-heading h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.sv-faq-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   MAIN FAQ LAYOUT
===================================================== */

.sv-faq-layout {
    margin-top: 68px;

    display: grid;
    grid-template-columns:
        minmax(500px, 1.02fr)
        minmax(470px, 0.98fr);

    align-items: stretch;
    gap: 40px;
}

/* =====================================================
   LEFT FAQ NAVIGATION
===================================================== */

.sv-faq-navigation {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

/* Question button */

.sv-faq-nav-item {
    position: relative;

    width: 100%;
    min-height: 92px;
    padding: 17px 66px 17px 18px;

    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.1),
            rgba(248, 247, 244, 0.03)
        );

    color: inherit;
    text-align: left;
    cursor: pointer;

    box-shadow:
        0 16px 38px rgba(30, 30, 30, 0.19),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-faq-nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-faq-nav-item::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 135px;
    height: 135px;

    border: 1px solid rgba(201, 162, 91, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.sv-faq-nav-item:hover {
    transform: translateX(6px);

    border-color: rgba(201, 162, 91, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.14),
            rgba(248, 247, 244, 0.035)
        );
}

.sv-faq-nav-item:hover::before,
.sv-faq-nav-item.active::before {
    width: calc(100% - 36px);
}

/* Active question */

.sv-faq-nav-item.active {
    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.2),
            rgba(248, 247, 244, 0.045)
        );

    box-shadow:
        0 24px 55px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

/* Question number */

.sv-faq-nav-number {
    color: var(--brushed-gold);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Question icon */

.sv-faq-nav-icon {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.43);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 13px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-faq-nav-item.active .sv-faq-nav-icon,
.sv-faq-nav-item:hover .sv-faq-nav-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.05);
}

/* Question text */

.sv-faq-nav-question {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

/* Arrow */

.sv-faq-nav-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 2;

    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 225, 216, 0.14);
    border-radius: 50%;

    background: rgba(248, 247, 244, 0.035);
    color: var(--soft-beige);

    font-size: 9px;

    transform: translateY(-50%);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-faq-nav-item.active .sv-faq-nav-arrow {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        translateY(-50%)
        translateX(4px);
}

/* =====================================================
   RIGHT ANSWER PANEL
===================================================== */

.sv-faq-answer-panel {
    position: relative;

    min-height: 620px;
    padding: 46px 42px 34px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--soft-beige);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 35px 85px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.sv-faq-answer-panel::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    pointer-events: none;
}

.sv-faq-answer-panel::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -160px;

    width: 360px;
    height: 360px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* FAQ decorative number */

.sv-faq-answer-panel-number {
    position: absolute;
    top: 15px;
    right: 22px;

    color: var(--primary-navy);

    font-size: 105px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* Top accent line */

.sv-faq-answer-panel-line {
    position: absolute;
    top: 0;
    left: 42px;

    width: 90px;
    height: 3px;

    background: var(--brushed-gold);
}

/* =====================================================
   INDIVIDUAL ANSWER
===================================================== */

.sv-faq-answer {
    position: absolute;
    top: 46px;
    right: 42px;
    left: 42px;

    visibility: hidden;
    opacity: 0;

    transform:
        translateY(24px)
        scale(0.98);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        visibility 0.45s ease;
}

.sv-faq-answer.active {
    position: relative;
    top: auto;
    right: auto;
    left: auto;

    visibility: visible;
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

/* Answer icon */

.sv-faq-answer-icon {
    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;
    margin-bottom: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 20px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 22px;

    transform: rotate(-5deg);

    box-shadow:
        0 16px 35px rgba(13, 28, 69, 0.1);
}

/* Answer index */

.sv-faq-answer-index {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 17px;

    color: var(--natural-oak);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Answer title */

.sv-faq-answer h3 {
    position: relative;
    z-index: 2;

    max-width: 530px;

    color: var(--primary-navy);

    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
    letter-spacing: -1px;
    font-weight: 800;
}

/* Answer text */

.sv-faq-answer p {
    position: relative;
    z-index: 2;

    max-width: 570px;
    margin-top: 26px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.9;
}

/* =====================================================
   ANSWER FOOTER
===================================================== */

.sv-faq-answer-footer {
    position: relative;
    z-index: 3;

    margin-top: auto;
    padding-top: 30px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-top: 1px solid var(--soft-beige);
}

.sv-faq-answer-footer-icon {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 11px;
}

.sv-faq-answer-footer > span:last-child {
    color: var(--primary-navy);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .sv-faq-layout {
        grid-template-columns: 1fr;
    }

    .sv-faq-answer-panel {
        min-height: 520px;
    }

}

/* =====================================================
   MOBILE ACCORDION STYLE
===================================================== */

@media (max-width: 700px) {

    .sv-faq-section {
        padding: 80px 18px 90px;
    }

    .sv-faq-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-faq-large-number {
        display: none;
    }

    .sv-faq-layout {
        margin-top: 48px;
    }

    .sv-faq-nav-item {
        min-height: 82px;
        padding:
            14px 57px 14px 14px;

        grid-template-columns: auto 1fr;
    }

    .sv-faq-nav-number {
        display: none;
    }

    .sv-faq-answer-panel {
        min-height: 460px;
        padding: 34px 26px 28px;

        border-radius: 22px;
    }

    .sv-faq-answer-panel-line {
        left: 26px;
    }

    .sv-faq-answer-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 32px;

        font-size: 18px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sv-faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-faq-heading h2 {
        font-size: 35px;
    }

    .sv-faq-nav-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sv-faq-nav-icon {
        width: 42px;
        height: 42px;
    }

    .sv-faq-nav-question {
        max-width: calc(100% - 10px);

        font-size: 13px;
    }

    .sv-faq-answer-panel {
        min-height: 440px;
    }

    .sv-faq-answer h3 {
        font-size: 25px;
    }

    .sv-faq-answer p {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* =====================================================
   WHERE WE WORK
   US COVERAGE NETWORK
===================================================== */

.sv-coverage-section {
    position: relative;
    padding: 120px 24px 140px;

    background:
        radial-gradient(
            circle at 9% 15%,
            rgba(201, 162, 91, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 55%,
            var(--soft-beige) 100%
        );

    overflow: clip;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-coverage-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.05) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );
}

.sv-coverage-glow {
    position: absolute;
    z-index: -3;

    width: 470px;
    height: 470px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-coverage-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-coverage-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-coverage-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.sv-coverage-label {
    display: flex;
    align-items: center;
    gap: 14px;

      color: var(--natural-oak);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-coverage-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   LAYOUT
===================================================== */

.sv-coverage-layout {
    margin-top: 45px;

    display: grid;
    grid-template-columns:
        minmax(380px, 0.76fr)
        minmax(680px, 1.24fr);

    align-items: center;
    gap: 70px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.sv-coverage-content {
    position: relative;

    min-height: 575px;
    padding: 48px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 35px 85px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.sv-coverage-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 42px;

    width: 90px;
    height: 3px;

    background: var(--brushed-gold);
}

.sv-coverage-content::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -170px;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.sv-coverage-large-number {
    position: absolute;
    top: 20px;
    right: 28px;

     color: var(--primary-navy);

    font-size: 125px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

.sv-coverage-content-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;
    margin-bottom: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 20px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 23px;

    transform: rotate(-5deg);
}

.sv-coverage-content h2 {
    position: relative;
    z-index: 2;

      color: var(--primary-navy);

    font-size: clamp(43px, 4.3vw, 48px);
    line-height: 1.08;
    letter-spacing: -2.6px;
    font-weight: 800;
}

.sv-coverage-content h2 span {
    display: block;
    margin-top: 7px;

  color: var(--brushed-gold);
}

.sv-coverage-content p {
    position: relative;
    z-index: 2;

    max-width: 520px;
    margin-top: 26px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.83;
}

.sv-coverage-content-lines {
    position: relative;
    z-index: 2;

    width: 190px;
    margin-top: 60px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-coverage-content-lines span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

.sv-coverage-content-lines span:nth-child(1) {
    width: 100%;
}

.sv-coverage-content-lines span:nth-child(2) {
    width: 66%;
}

.sv-coverage-content-lines span:nth-child(3) {
    width: 36%;
}

/* =====================================================
   RIGHT COVERAGE MAP
===================================================== */

.sv-coverage-map {
    position: relative;

    min-height: 650px;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 35px 85px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.sv-coverage-map::before {
    content: "";
    position: absolute;
    inset: 0;

     background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size: 54px 54px;

    pointer-events: none;
}

.sv-coverage-map::after {
    content: "US";
    position: absolute;
    top: 50%;
    left: 50%;

    color: var(--primary-navy);
    opacity: 0.035;

    font-size: 210px;
    line-height: 1;
    font-weight: 800;


    transform: translate(-50%, -50%);
}

/* =====================================================
   MAP NETWORK
===================================================== */

.sv-coverage-map-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    width: 410px;
    height: 280px;

    border: 1px dashed rgba(201, 162, 91, 0.3);
    border-radius:
        42% 58% 51% 49% /
        48% 40% 60% 52%;

    transform:
        translate(-50%, -50%)
        rotate(-4deg);
}

.sv-coverage-map-center {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 76px;
    height: 76px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 22px;

    box-shadow:
        0 0 0 12px rgba(201, 162, 91, 0.07),
        0 20px 45px rgba(30, 30, 30, 0.3);

    transform: translate(-50%, -50%);
}

.sv-coverage-map-center::after {
    content: "";
    position: absolute;
    inset: -25px;

    border: 1px dashed rgba(201, 162, 91, 0.25);
    border-radius: 50%;

    animation: svCoverageRotate 18s linear infinite;
}

@keyframes svCoverageRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.sv-coverage-map-line {
    position: absolute;
    top: 50%;
    left: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );

    transform-origin: left center;

    opacity: 0.45;
}

.sv-coverage-map-line-one {
    width: 195px;
    transform: rotate(-35deg);
}

.sv-coverage-map-line-two {
    width: 205px;
    transform: rotate(145deg);
}

.sv-coverage-map-line-three {
    width: 175px;
    transform: rotate(48deg);
}

/* =====================================================
   LOCATION ITEMS
===================================================== */

.sv-coverage-location {
    position: absolute;
    z-index: 5;

    width: 285px;
    min-height: 110px;
    padding: 20px 54px 20px 68px;

    display: flex;
    align-items: center;

    border: 1px solid var(--soft-beige);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 20px 48px rgba(13, 28, 69, 0.11),
        inset 0 1px 0 var(--warm-ivory);

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-coverage-location::before {
    content: "";
    position: absolute;
    top: 0;
    left: 19px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.sv-coverage-location::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -62px;

    width: 128px;
    height: 128px;

    border: 1px solid rgba(201, 162, 91, 0.1);
    border-radius: 50%;
}

.sv-coverage-location:hover {
    z-index: 10;

    transform: translateY(-7px);

    border-color: var(--brushed-gold);

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--soft-beige)
        );

    box-shadow:
        0 30px 68px rgba(13, 28, 69, 0.16),
        inset 0 1px 0 var(--warm-ivory);
}
.sv-coverage-location:hover::before {
    width: calc(100% - 38px);
}

/* Location positions */

.sv-coverage-location-new-york {
    top: 48px;
    right: 38px;
}

.sv-coverage-location-california {
    top: 115px;
    left: 35px;
}

.sv-coverage-location-charlotte {
    right: 55px;
    bottom: 70px;
}

.sv-coverage-location-los-angeles {
    left: 65px;
    bottom: 40px;
}

/* Number */

.sv-coverage-location-number {
    position: absolute;
    top: 13px;
    right: 14px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* Icon */

.sv-coverage-location-icon {
    position: absolute;
    top: 50%;
    left: 17px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.48);
    border-radius: 12px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 12px;

    transform:
        translateY(-50%)
        rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.sv-coverage-location:hover .sv-coverage-location-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        translateY(-50%)
        rotate(0deg)
        scale(1.06);
}

/* Text */

.sv-coverage-location-text {
    position: relative;
    z-index: 2;

       color: var(--primary-navy);

    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
}

/* Arrow */

.sv-coverage-location-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 2;

    width: 31px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

 
    border-radius: 50%;

border: 1px solid var(--soft-beige);
    background: var(--warm-ivory);
    color: var(--natural-oak);

    font-size: 8px;

    transform: translateY(-50%);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-coverage-location:hover .sv-coverage-location-arrow {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        translateY(-50%)
        translateX(3px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1080px) {

    .sv-coverage-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sv-coverage-content {
        min-height: auto;
    }

    .sv-coverage-map {
        min-height: 650px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .sv-coverage-section {
        padding: 80px 18px 90px;
    }

    .sv-coverage-content {
        padding: 35px 27px;
        border-radius: 23px;
    }

    .sv-coverage-content h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-coverage-large-number,
    .sv-coverage-content-lines,
    .sv-coverage-map-shape {
        display: none;
    }

    .sv-coverage-map {
        min-height: auto;
        padding: 20px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;

        border-radius: 23px;
    }

    .sv-coverage-location,
    .sv-coverage-location-new-york,
    .sv-coverage-location-california,
    .sv-coverage-location-charlotte,
    .sv-coverage-location-los-angeles {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sv-coverage-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-coverage-content h2 {
        font-size: 35px;
    }

    .sv-coverage-content p {
        font-size: 13px;
    }

    .sv-coverage-location {
        min-height: 95px;
        padding:
            18px 48px 18px 63px;
    }

    .sv-coverage-location-text {
        font-size: 12px;
    }

}

/* =====================================================
   RELATED RESOURCES
   CLEAN NORMAL CARD LAYOUT
===================================================== */

.sv-related-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: clip;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.sv-related-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 10%,
            var(--charcoal) 90%,
            transparent
        );
}

.sv-related-glow {
    position: absolute;
    z-index: -3;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.sv-related-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.sv-related-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-related-container {
    position: relative;
    z-index: 3;

    width: min(1340px, 100%);
    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.sv-related-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.76;
}

.sv-related-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.sv-related-heading {
    position: relative;
    margin-top: 34px;
}

.sv-related-heading h2 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 56px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.sv-related-heading h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.sv-related-large-number {
    position: absolute;
    top: -85px;
    right: 15px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* =====================================================
   CARD GRID
===================================================== */

.sv-related-grid-layout {
    margin-top: 65px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* =====================================================
   RESOURCE CARD
===================================================== */

.sv-related-card {
    position: relative;

    min-height: 390px;
    padding: 30px 28px 27px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.11),
            rgba(248, 247, 244, 0.03)
        );

    box-shadow:
        0 24px 58px rgba(30, 30, 30, 0.24),
        inset 0 1px 0 rgba(248, 247, 244, 0.07);

    color: inherit;
    text-decoration: none;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

/* Top gold line */

.sv-related-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;

    width: 55px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.4s ease;
}

/* Decorative circle */

.sv-related-card::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -110px;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.sv-related-card:hover {
    transform: translateY(-9px);

    border-color: rgba(201, 162, 91, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.16),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 36px 80px rgba(30, 30, 30, 0.33),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);
}

.sv-related-card:hover::before {
    width: calc(100% - 56px);
}

/* =====================================================
   CARD NUMBER
===================================================== */

.sv-related-card-number {
    position: absolute;
    top: 18px;
    right: 20px;

    color: var(--warm-ivory);

    font-size: 82px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
}

/* =====================================================
   CARD TOP
===================================================== */

.sv-related-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Icon */

.sv-related-icon {
    width: 62px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 18px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 19px;

    transform: rotate(-5deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.sv-related-card:hover .sv-related-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform:
        rotate(0deg)
        scale(1.06);
}

/* Category */

.sv-related-category {
    padding: 8px 11px;

    border: 1px solid rgba(201, 162, 91, 0.3);
    border-radius: 30px;

    background: rgba(201, 162, 91, 0.08);
    color: var(--brushed-gold);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.3px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =====================================================
   CONTENT
===================================================== */

.sv-related-content {
    position: relative;
    z-index: 2;

    margin-top: 45px;
}

.sv-related-content h3 {
    color: var(--warm-ivory);

    font-size: 23px;
    line-height: 1.35;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.sv-related-content p {
    margin-top: 14px;

    color: var(--soft-beige);

    font-size: 13px;
    line-height: 1.75;

    opacity: 0.8;
}

/* =====================================================
   ACTION
===================================================== */

.sv-related-action {
    position: relative;
    z-index: 2;

    width: fit-content;
    min-height: 45px;
    margin-top: auto;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid rgba(201, 162, 91, 0.5);
    border-radius: 30px;

    background: rgba(201, 162, 91, 0.08);
    color: var(--brushed-gold);

    font-size: 10px;
    line-height: 1;
    font-weight: 800;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.sv-related-card:hover .sv-related-action {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: translateX(5px);
}

.sv-related-action i {
    font-size: 8px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .sv-related-grid-layout {
        grid-template-columns: 1fr;
    }

    .sv-related-card {
        min-height: 320px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .sv-related-section {
        padding: 80px 18px 90px;
    }

    .sv-related-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .sv-related-large-number {
        display: none;
    }

    .sv-related-card {
        min-height: auto;
        padding: 27px 23px 24px;

        border-radius: 21px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sv-related-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-related-heading h2 {
        font-size: 35px;
    }

    .sv-related-icon {
        width: 54px;
        height: 54px;

        font-size: 16px;
    }

    .sv-related-content {
        margin-top: 35px;
    }

    .sv-related-content h3 {
        font-size: 19px;
    }

    .sv-related-content p {
        font-size: 12px;
    }

}

/* =====================================================
   FINAL LINK BUILDING CTA
   BACKGROUND IMAGE + OVERLAY
===================================================== */

.sv-final-cta-section {
    position: relative;

    min-height: 670px;
    padding: 120px 24px;

    display: flex;
    align-items: center;

    background: var(--dark-navy);

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.sv-final-cta-background {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image:
        url("../images/link-building-cta-bg.webp");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    transform: scale(1.04);

    transition: transform 8s ease;
}

.sv-final-cta-section:hover
.sv-final-cta-background {
    transform: scale(1.09);
}

/* =====================================================
   DARK IMAGE OVERLAY
===================================================== */

.sv-final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(13, 28, 69, 0.94) 0%,
            rgba(19, 40, 85, 0.88) 50%,
            rgba(13, 28, 69, 0.94) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(30, 30, 30, 0.23),
            rgba(13, 28, 69, 0.48)
        );
}

/* =====================================================
   DECORATIVE GRID
===================================================== */

.sv-final-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.045) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 13%,
            var(--charcoal) 87%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            var(--charcoal) 13%,
            var(--charcoal) 87%,
            transparent
        );
}

/* =====================================================
   DECORATIVE CIRCLES
===================================================== */

.sv-final-cta-circle {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(201, 162, 91, 0.16);
    border-radius: 50%;

    pointer-events: none;
}

.sv-final-cta-circle-one {
    top: -190px;
    left: -185px;

    width: 430px;
    height: 430px;
}

.sv-final-cta-circle-one::before,
.sv-final-cta-circle-one::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;
}

.sv-final-cta-circle-one::before {
    inset: 40px;
}

.sv-final-cta-circle-one::after {
    inset: 80px;
}

.sv-final-cta-circle-two {
    right: -220px;
    bottom: -245px;

    width: 520px;
    height: 520px;
}

.sv-final-cta-circle-two::before,
.sv-final-cta-circle-two::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.1);
    border-radius: 50%;
}

.sv-final-cta-circle-two::before {
    inset: 52px;
}

.sv-final-cta-circle-two::after {
    inset: 104px;
}

/* =====================================================
   CONTAINER
===================================================== */

.sv-final-cta-container {
    position: relative;
    z-index: 3;

    width: min(1180px, 100%);
    margin: 0 auto;
}

/* =====================================================
   CTA CONTENT PANEL
===================================================== */

.sv-final-cta-content {
    position: relative;

    max-width: 1040px;
    margin: 0 auto;
    padding: 70px 55px;

    text-align: center;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 31px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.115),
            rgba(248, 247, 244, 0.025)
        );

    box-shadow:
        0 42px 100px rgba(30, 30, 30, 0.42),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;
}

.sv-final-cta-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 140px;
    height: 3px;

    background: var(--brushed-gold);

    transform: translateX(-50%);
}

.sv-final-cta-content::after {
    content: "";
    position: absolute;
    right: -155px;
    bottom: -180px;

    width: 390px;
    height: 390px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

/* =====================================================
   SMALL LABEL
===================================================== */

.sv-final-cta-label {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sv-final-cta-label > span {
    width: 37px;
    height: 1px;

    background: var(--brushed-gold);
}

.sv-final-cta-label p {
    color: var(--brushed-gold);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.3px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =====================================================
   HEADING
===================================================== */

.sv-final-cta-content h2 {
    position: relative;
    z-index: 2;

    max-width: 940px;
    margin: 37px auto 0;

    color: var(--warm-ivory);

    font-size: clamp(43px, 5.5vw, 55px);
    line-height: 1.12;
    letter-spacing: -3px;
    font-weight: 800;
}

.sv-final-cta-content h2 span {
    display: block;
    margin-top: 8px;

    color: var(--brushed-gold);
}

/* =====================================================
   PARAGRAPH
===================================================== */

.sv-final-cta-description {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 29px auto 0;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.85;

    opacity: 0.88;
}

/* =====================================================
   BUTTON WRAPPER
===================================================== */

.sv-final-cta-buttons {
    position: relative;
    z-index: 2;

    margin-top: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =====================================================
   SHARED BUTTON
===================================================== */

.sv-final-cta-btn {
    min-height: 58px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border-radius: 12px;

    font-size: 13px;
    line-height: 1;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.sv-final-cta-btn i {
    font-size: 10px;

    transition: transform 0.35s ease;
}

.sv-final-cta-btn:hover i {
    transform: translateX(4px);
}

/* Primary button */

.sv-final-cta-btn-primary {
    border: 1px solid var(--brushed-gold);

    background: var(--brushed-gold);
    color: var(--dark-navy);

    box-shadow:
        0 18px 38px rgba(201, 162, 91, 0.2);
}

.sv-final-cta-btn-primary:hover {
    transform: translateY(-4px);

    border-color: var(--natural-oak);

    background: var(--natural-oak);
    color: var(--warm-ivory);

    box-shadow:
        0 25px 50px rgba(184, 133, 88, 0.28);
}

/* Outline button */

.sv-final-cta-btn-outline {
    border: 1px solid rgba(231, 225, 216, 0.3);

    background: rgba(248, 247, 244, 0.045);
    color: var(--warm-ivory);
}

.sv-final-cta-btn-outline:hover {
    transform: translateY(-4px);

    border-color: var(--brushed-gold);

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .sv-final-cta-section {
        min-height: 620px;
    }

    .sv-final-cta-content {
        padding: 60px 40px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .sv-final-cta-section {
        min-height: auto;
        padding: 85px 18px;
    }

    .sv-final-cta-content {
        padding: 50px 25px;

        border-radius: 24px;
    }

    .sv-final-cta-content h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .sv-final-cta-description {
        font-size: 14px;
    }

    .sv-final-cta-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .sv-final-cta-btn {
        width: 100%;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sv-final-cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sv-final-cta-content {
        padding: 44px 19px;
    }

    .sv-final-cta-label {
        gap: 9px;
    }

    .sv-final-cta-label > span {
        width: 22px;
    }

    .sv-final-cta-label p {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .sv-final-cta-content h2 {
        font-size: 35px;
    }

    .sv-final-cta-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .sv-final-cta-btn {
        min-height: 55px;
        padding: 0 15px;

        font-size: 12px;
    }

}

