/* =====================================================
   CONTRACTOR VISIBILITY
   MAIN WEBSITE STYLES
===================================================== */

:root {
    --primary-navy: #132855;
    --dark-navy: #0D1C45;
    --warm-ivory: #F8F7F4;
    --soft-beige: #E7E1D8;
    --natural-oak: #B88558;
    --brushed-gold: #C9A25B;
    --charcoal: #1E1E1E;
    --light-gray: #F3F3F3;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--warm-ivory);
    color: var(--charcoal);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* =====================================================
   HEADER
===================================================== */

.cv-header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 24px;
}

.cv-header-container {
    width: min(1240px, 100%);
    min-height: 78px;
    margin: 0 auto;
    padding: 12px 16px 12px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: var(--warm-ivory);
    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    box-shadow: 0 16px 50px rgba(13, 28, 69, 0.1);
}

.cv-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cv-logo-icon {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--dark-navy);
    color: var(--warm-ivory);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;

    box-shadow: 0 6px 15px rgba(13, 28, 69, 0.25);
}

.cv-logo-text {
    color: var(--primary-navy);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.cv-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.cv-navigation a {
    position: relative;
    color: var(--primary-navy);
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cv-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--brushed-gold);
    transition: width 0.3s ease;
}

.cv-navigation a:hover {
    color: var(--natural-oak);
}

.cv-navigation a:hover::after {
    width: 100%;
}

.cv-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cv-header-outline-btn,
.cv-header-primary-btn {
    min-height: 46px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.cv-header-outline-btn {
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
    background: var(--warm-ivory);
}

.cv-header-outline-btn:hover {
    background: var(--soft-beige);
    transform: translateY(-2px);
}

.cv-header-primary-btn {
    border: 1px solid var(--dark-navy);
    background: var(--dark-navy);
    color: var(--warm-ivory);

    box-shadow: 0 10px 22px rgba(13, 28, 69, 0.22);
}

.cv-header-primary-btn:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

.cv-mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;

    border: 1px solid var(--soft-beige);
    border-radius: 9px;

    background: var(--warm-ivory);
    cursor: pointer;
}

.cv-mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--dark-navy);
    transition: 0.3s ease;
}

/* =====================================================
   HERO SECTION
===================================================== */

.cv-hero {
    position: relative;
    min-height: 760px;
    padding: 145px 24px 70px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(231, 225, 216, 0.75),
            transparent 36%
        ),
        linear-gradient(
            115deg,
            var(--warm-ivory) 0%,
            var(--warm-ivory) 55%,
            var(--light-gray) 100%
        );

    overflow: hidden;
}

.cv-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 44%;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent,
        var(--soft-beige),
        transparent
    );
}

.cv-hero-container {
    position: relative;
    z-index: 5;

    width: min(1302px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 62px;
}

.cv-hero-content {
    position: relative;
    z-index: 10;
}

.cv-hero-eyebrow {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--natural-oak);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cv-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--brushed-gold);
}

.cv-hero h1 {
    max-width: 620px;

    color: var(--primary-navy);

    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 800;
}

.cv-hero h1 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-hero-description {
    max-width: 600px;
    margin-top: 24px;

    color: var(--charcoal);

    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.cv-hero-buttons {
    margin-top: 30px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cv-primary-btn,
.cv-secondary-btn {
    min-height: 54px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.cv-primary-btn {
    background: var(--dark-navy);
    border: 1px solid var(--dark-navy);
    color: var(--warm-ivory);

    box-shadow: 0 12px 28px rgba(13, 28, 69, 0.24);
}

.cv-primary-btn:hover {
    background: var(--primary-navy);
    transform: translateY(-3px);
}

.cv-primary-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.cv-primary-btn:hover i {
    transform: translateX(4px);
}

.cv-secondary-btn {
    border: 1px solid var(--primary-navy);
    background: var(--warm-ivory);
    color: var(--primary-navy);
}

.cv-secondary-btn:hover {
    background: var(--soft-beige);
    transform: translateY(-3px);
}

.cv-hero-features {
    margin-top: 28px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-feature-pill {
    min-height: 36px;
    padding: 6px 13px 6px 8px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid var(--soft-beige);
    border-radius: 50px;

    background: var(--warm-ivory);
    color: var(--charcoal);

    font-size: 11px;
    font-weight: 600;
}

.cv-feature-icon {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--soft-beige);
    color: var(--natural-oak);

    font-size: 10px;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.cv-hero-image-wrap {
    position: relative;
    width: 100%;
    min-height: 535px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;
    overflow: hidden;

    background: var(--light-gray);
    border: 1px solid var(--soft-beige);

    box-shadow: 0 30px 70px rgba(13, 28, 69, 0.12);
}

.cv-hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    border-radius: inherit;
    border: 1px solid var(--warm-ivory);

    pointer-events: none;
}

.cv-hero-image {
    position: relative;
    z-index: 0;

    display: block;
    width: 100%;
    height: 535px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.cv-hero-image-wrap:hover .cv-hero-image {
    transform: scale(1.025);
}
 

/* =====================================================
   DECORATIVE LINES
===================================================== */

.cv-hero-lines {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;
    border: 1px solid var(--soft-beige);

    opacity: 0.85;
}

.cv-hero-lines::before,
.cv-hero-lines::after {
    content: "";
    position: absolute;

    border-radius: 50%;
    border: 1px solid var(--soft-beige);
}

.cv-hero-lines::before {
    inset: 22px;
}

.cv-hero-lines::after {
    inset: 44px;
}

.cv-lines-left {
    left: -150px;
    top: 100px;
}

.cv-lines-right {
    right: -140px;
    top: 150px;
}

/* =====================================================
   PLACEHOLDER SECTION
===================================================== */

.cv-placeholder-section {
    padding: 110px 24px;
    background: var(--dark-navy);
    text-align: center;
}

.cv-section-container {
    width: min(850px, 100%);
    margin: 0 auto;
}

.cv-placeholder-section span {
    color: var(--brushed-gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cv-placeholder-section h2 {
    margin-top: 16px;

    color: var(--warm-ivory);

    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
}

.cv-placeholder-section p {
    max-width: 650px;
    margin: 20px auto 0;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   FOOTER
===================================================== */

.cv-footer {
    padding: 65px 24px 20px;
    background: var(--primary-navy);
    color: var(--warm-ivory);
}

.cv-footer-container {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.cv-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cv-footer .cv-logo-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);
}

.cv-footer .cv-logo-text {
    color: var(--warm-ivory);
}

.cv-footer-brand p {
    max-width: 460px;
    margin-top: 20px;

    color: var(--soft-beige);

    font-size: 14px;
    line-height: 1.8;
}

.cv-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cv-footer-links a {
    color: var(--soft-beige);
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cv-footer-links a:hover {
    color: var(--brushed-gold);
}

.cv-footer-bottom {
    width: min(1200px, 100%);
    margin: 45px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(231, 225, 216, 0.25);

    text-align: center;
}

.cv-footer-bottom p {
    color: var(--soft-beige);
    font-size: 12px;
}

/* =====================================================
   RESPONSIVE - LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .cv-navigation {
        gap: 18px;
    }

    .cv-navigation a {
        font-size: 12px;
    }

    .cv-header-outline-btn {
        display: none;
    }

    .cv-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .cv-hero h1 {
        font-size: 50px;
    }

    .cv-hero-image-wrap {
    min-height: 480px;
}

.cv-hero-image {
    height: 480px;
}

}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {

    .cv-header {
        top: 12px;
        padding: 0 14px;
    }

    .cv-header-container {
        min-height: 68px;
        padding: 10px 12px 10px 16px;
    }

    .cv-navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;

        width: 100%;
        padding: 18px;

        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

        background: var(--warm-ivory);
        border: 1px solid var(--soft-beige);
        border-radius: 14px;

        box-shadow: 0 18px 40px rgba(13, 28, 69, 0.15);
    }

    .cv-navigation.cv-menu-active {
        display: flex;
    }

    .cv-navigation a {
        width: 100%;
        font-size: 14px;
    }

    .cv-header-actions {
        margin-left: auto;
    }

    .cv-header-primary-btn {
        display: none;
    }

    .cv-mobile-menu-btn {
        display: block;
    }

    .cv-hero {
        min-height: auto;
        padding-top: 125px;
    }

    .cv-hero::before {
        display: none;
    }

    .cv-hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cv-hero-content {
        text-align: center;
    }

    .cv-hero-eyebrow,
    .cv-hero-buttons,
    .cv-hero-features {
        justify-content: center;
    }

    .cv-hero h1,
    .cv-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

   .cv-hero-image-wrap {
    width: min(650px, 100%);
    min-height: auto;
    margin: 0 auto;
    }
    
    .cv-hero-image {
        height: auto;
        min-height: 420px;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 600px) {

    .cv-logo-text {
        font-size: 14px;
    }

    .cv-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .cv-hero {
        padding: 115px 16px 55px;
    }

    .cv-hero-eyebrow {
        justify-content: flex-start;
        text-align: left;
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .cv-hero-content {
        text-align: left;
    }

    .cv-hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .cv-hero-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .cv-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .cv-primary-btn,
    .cv-secondary-btn {
        width: 100%;
    }

    .cv-hero-features {
        justify-content: flex-start;
    }

    .cv-feature-pill {
        width: 100%;
    }

    .cv-hero-image-wrap {
    min-height: auto;
    border-radius: 18px;
}

.cv-hero-image {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

    .cv-footer-container {
        flex-direction: column;
    }

    .cv-footer-links {
        gap: 16px;
    }

}

/* =====================================================
   COMPACT AUTO COUNT STATS
===================================================== */

.cv-compact-stats {
    position: relative;
    padding: 30px 24px 38px;
    background: var(--warm-ivory);
    overflow: hidden;
}

.cv-compact-stats::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 80%;
    height: 80%;

    background: var(--soft-beige);
    border-radius: 50%;

    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.cv-compact-stats-container {
    position: relative;
    z-index: 2;

    width: min(1440px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

/* Individual Card */

.cv-compact-stat-card {
    position: relative;

    min-height: 118px;
    padding: 22px 18px;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    background: var(--light-gray);
    border: 1px solid var(--soft-beige);
    border-radius: 14px;

    box-shadow:
        0 8px 22px rgba(13, 28, 69, 0.06),
        0 2px 8px rgba(30, 30, 30, 0.04);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.cv-compact-stat-card::before {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -38px;

    width: 95px;
    height: 95px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-compact-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--brushed-gold);
}

.cv-compact-stat-card:hover::before {
    opacity: 1;
}

/* Icon */

.cv-compact-stat-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--warm-ivory);
    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    color: var(--primary-navy);
    font-size: 18px;

    box-shadow: 0 6px 15px rgba(13, 28, 69, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cv-compact-stat-card:hover .cv-compact-stat-icon {
    background: var(--primary-navy);
    color: var(--warm-ivory);
    transform: rotate(-5deg) scale(1.05);
}

/* Content */

.cv-compact-stat-content {
    min-width: 0;
    padding-top: 1px;
}

.cv-compact-counter {
    color: var(--primary-navy);

    font-size: clamp(23px, 2vw, 30px);
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 800;

    white-space: nowrap;
}

.cv-compact-counter-suffix {
    color: var(--brushed-gold);
}

.cv-compact-stat-content p {
    margin-top: 11px;

    color: var(--charcoal);

    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0.35px;
    font-weight: 600;
    text-transform: uppercase;

    white-space: nowrap;
}

.cv-compact-stat-line {
    display: block;

    width: 22px;
    height: 2px;
    margin-top: 9px;

    background: var(--brushed-gold);

    transition: width 0.3s ease;
}

.cv-compact-stat-card:hover .cv-compact-stat-line {
    width: 45px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .cv-compact-stats-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .cv-compact-stat-card:nth-child(4),
    .cv-compact-stat-card:nth-child(5) {
        grid-column: span 1;
    }

}

@media (max-width: 800px) {

    .cv-compact-stats {
        padding: 25px 18px 32px;
    }

    .cv-compact-stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cv-compact-stat-card:last-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 540px) {

    .cv-compact-stats {
        padding: 22px 15px 28px;
    }

    .cv-compact-stats-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cv-compact-stat-card,
    .cv-compact-stat-card:last-child {
        grid-column: auto;
        min-height: 105px;
        padding: 18px;
    }

    .cv-compact-stat-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .cv-compact-counter {
        font-size: 27px;
    }

    .cv-compact-stat-content p {
        white-space: normal;
    }

}

/* =====================================================
   FREE DOWNLOAD POPUP
===================================================== */

.cv-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(30, 30, 30, 0.78);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.cv-popup-overlay.cv-popup-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cv-popup-box {
    position: relative;

    width: min(610px, 100%);
    padding: 54px 42px 40px;

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 26px;

    box-shadow:
        0 35px 90px rgba(30, 30, 30, 0.45),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;

    transform:
        translateY(35px)
        scale(0.94);

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cv-popup-overlay.cv-popup-active .cv-popup-box {
    transform:
        translateY(0)
        scale(1);
}

/* Gold top line */

.cv-popup-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 54%;
    height: 3px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        var(--brushed-gold),
        transparent
    );
}

/* Decorative circles */

.cv-popup-decoration {
    position: absolute;

    border-radius: 50%;
    border: 1px solid rgba(201, 162, 91, 0.17);

    pointer-events: none;
}

.cv-popup-decoration-one {
    width: 230px;
    height: 230px;

    top: -120px;
    right: -75px;
}

.cv-popup-decoration-one::before,
.cv-popup-decoration-one::after {
    content: "";
    position: absolute;

    border-radius: 50%;
    border: 1px solid rgba(201, 162, 91, 0.13);
}

.cv-popup-decoration-one::before {
    inset: 25px;
}

.cv-popup-decoration-one::after {
    inset: 50px;
}

.cv-popup-decoration-two {
    width: 180px;
    height: 180px;

    left: -105px;
    bottom: -95px;
}

/* Close button */

.cv-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 12px;

    background: rgba(248, 247, 244, 0.05);
    color: var(--soft-beige);

    font-size: 17px;
    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cv-popup-close:hover {
    background: var(--brushed-gold);
    color: var(--dark-navy);
    transform: rotate(90deg);
}

/* Content */

.cv-popup-content {
    position: relative;
    z-index: 2;
}

.cv-popup-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--brushed-gold);

    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.cv-popup-eyebrow span {
    width: 28px;
    height: 2px;

    background: var(--brushed-gold);
}

.cv-popup-content h2 {
    max-width: 510px;
    margin-top: 20px;

    color: var(--warm-ivory);

    font-size: clamp(30px, 4vw, 36px);
    line-height: 1.2;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.cv-popup-content h2 span {
    color: var(--brushed-gold);
}

.cv-popup-content > p {
    max-width: 510px;
    margin-top: 18px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.8;
}

/* Form */

.cv-popup-form {
    margin-top: 28px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.cv-popup-input-wrap {
    position: relative;
}

.cv-popup-input-wrap i {
    position: absolute;
    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--brushed-gold);
    font-size: 15px;

    pointer-events: none;
}

.cv-popup-input-wrap input {
    width: 100%;
    height: 58px;
    padding: 0 18px 0 48px;

    border: 1px solid rgba(231, 225, 216, 0.2);
    border-radius: 12px;
    outline: none;

    background: rgba(30, 30, 30, 0.35);
    color: var(--warm-ivory);

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.cv-popup-input-wrap input::placeholder {
    color: var(--soft-beige);
    opacity: 0.65;
}

.cv-popup-input-wrap input:focus {
    border-color: var(--brushed-gold);
    background: rgba(30, 30, 30, 0.5);

    box-shadow:
        0 0 0 4px rgba(201, 162, 91, 0.12);
}

.cv-popup-submit {
    min-width: 145px;
    height: 58px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid var(--brushed-gold);
    border-radius: 12px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 12px 25px rgba(201, 162, 91, 0.18);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cv-popup-submit:hover {
    background: var(--natural-oak);
    color: var(--warm-ivory);
    transform: translateY(-2px);
}

.cv-popup-submit i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.cv-popup-submit:hover i {
    transform: translateX(4px);
}

/* Success/error message */

.cv-popup-message {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;

    border: 1px solid rgba(201, 162, 91, 0.35);
    border-radius: 9px;

    background: rgba(201, 162, 91, 0.08);
    color: var(--warm-ivory);

    font-size: 12px;
    line-height: 1.6;
}

.cv-popup-message.cv-popup-message-show {
    display: block;
}

/* Bottom notes */

.cv-popup-note {
    margin-top: 19px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

    color: var(--soft-beige);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    opacity: 0.72;
}

.cv-popup-note span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cv-popup-note i {
    color: var(--brushed-gold);
    font-size: 9px;
}

/* Prevent page scrolling while popup is open */

body.cv-popup-open {
    overflow: hidden;
}

/* =====================================================
   POPUP RESPONSIVE
===================================================== */

@media (max-width: 650px) {

    .cv-popup-overlay {
        padding: 14px;
        align-items: flex-end;
    }

    .cv-popup-box {
        width: 100%;
        padding: 50px 22px 28px;

        border-radius: 22px 22px 14px 14px;
    }

    .cv-popup-content h2 {
        font-size: 31px;
    }

    .cv-popup-content > p {
        font-size: 14px;
    }

    .cv-popup-form {
        grid-template-columns: 1fr;
    }

    .cv-popup-submit {
        width: 100%;
    }

    .cv-popup-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

}

/* =====================================================
   AGENCY POSITIONING SECTION
===================================================== */

.cv-positioning-section {
    position: relative;
    padding: 110px 24px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 162, 91, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(184, 133, 88, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 58%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Grid Background */

.cv-positioning-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.055) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 18%,
        var(--charcoal) 82%,
        transparent
    );
}

/* Background Glows */

.cv-positioning-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(120px);

    pointer-events: none;
}

.cv-positioning-glow-one {
    top: -180px;
    left: -180px;

    background: var(--brushed-gold);
    opacity: 0.17;
}

.cv-positioning-glow-two {
    right: -200px;
    bottom: -220px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Decorative Rings */

.cv-positioning-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(201, 162, 91, 0.15);
    border-radius: 50%;

    pointer-events: none;
}

.cv-positioning-ring::before,
.cv-positioning-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.11);
    border-radius: inherit;
}

.cv-positioning-ring::before {
    inset: 28px;
}

.cv-positioning-ring::after {
    inset: 56px;
}

.cv-positioning-ring-one {
    width: 270px;
    height: 270px;

    top: 80px;
    right: -135px;
}

.cv-positioning-ring-two {
    width: 220px;
    height: 220px;

    left: -120px;
    bottom: 75px;
}

/* Main Container */

.cv-positioning-container {
    position: relative;
    z-index: 3;

    width: min(1240px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-positioning-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--soft-beige);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.4px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.72;
}

.cv-positioning-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main Layout */

.cv-positioning-main {
    margin-top: 34px;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 75px;
}

/* Left Content */

.cv-positioning-content h2 {
    color: var(--warm-ivory);

    font-size: clamp(38px, 4.7vw, 50px);
    line-height: 1.1;
    letter-spacing: -2.6px;
    font-weight: 800;
}

.cv-positioning-content h2 span {
    color: var(--brushed-gold);
}

.cv-positioning-content > p {
    max-width: 740px;
    margin-top: 28px;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.85;

    opacity: 0.85;
}

/* Benefit Area */

.cv-positioning-benefits {
    position: relative;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.cv-positioning-benefits::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 27px;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(201, 162, 91, 0.45),
        transparent
    );
}

.cv-positioning-benefit {
    position: relative;

    min-height: 74px;
    padding: 17px 20px 17px 16px;

    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid rgba(231, 225, 216, 0.14);
    border-radius: 15px;

    background:
        linear-gradient(
            110deg,
            rgba(248, 247, 244, 0.08),
            rgba(248, 247, 244, 0.025)
        );

    box-shadow:
        0 16px 35px rgba(30, 30, 30, 0.16),
        inset 0 1px 0 rgba(248, 247, 244, 0.06);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.cv-positioning-benefit:nth-child(2),
.cv-positioning-benefit:nth-child(4) {
    transform: translateX(22px);
}

.cv-positioning-benefit:hover {
    transform: translateX(8px);
    border-color: rgba(201, 162, 91, 0.55);

    background:
        linear-gradient(
            110deg,
            rgba(201, 162, 91, 0.13),
            rgba(248, 247, 244, 0.04)
        );
}

.cv-positioning-benefit:nth-child(2):hover,
.cv-positioning-benefit:nth-child(4):hover {
    transform: translateX(30px);
}

/* Check Icon */

.cv-positioning-check {
    position: relative;
    z-index: 2;
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 12px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 13px;

    box-shadow: 0 8px 18px rgba(30, 30, 30, 0.14);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cv-positioning-benefit:hover .cv-positioning-check {
    background: var(--brushed-gold);
    color: var(--dark-navy);
    transform: rotate(-5deg) scale(1.05);
}

.cv-positioning-benefit p {
    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

/* Bottom Note */

.cv-positioning-note {
    position: relative;

    margin-top: 70px;
    padding: 30px 90px 30px 30px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;

    border: 1px solid rgba(201, 162, 91, 0.3);
    border-radius: 20px;

    background:
        linear-gradient(
            105deg,
            rgba(201, 162, 91, 0.13),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 25px 60px rgba(30, 30, 30, 0.2),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;
}

.cv-positioning-note::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;

    width: 4px;
    height: 60%;

    background: var(--brushed-gold);
    border-radius: 0 5px 5px 0;
}

.cv-positioning-note-icon {
    width: 64px;
    height: 64px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 18px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 24px;
}

.cv-positioning-note-content h3 {
    color: var(--warm-ivory);

    font-size: 19px;
    line-height: 1.4;
    font-weight: 800;
}

.cv-positioning-note-content p {
    margin-top: 10px;

    color: var(--soft-beige);

    font-size: 14px;
    line-height: 1.8;

    opacity: 0.86;
}

.cv-positioning-note-content p span,
.cv-positioning-note-content a {
    color: var(--brushed-gold);
}

.cv-positioning-note-content a {
    font-weight: 700;
    border-bottom: 1px solid rgba(201, 162, 91, 0.55);
}

.cv-positioning-note-number {
    position: absolute;
    right: 24px;
    bottom: -16px;

    color: var(--warm-ivory);

    font-size: 88px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.045;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .cv-positioning-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cv-positioning-content {
        max-width: 900px;
    }

    .cv-positioning-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cv-positioning-benefits::before {
        display: none;
    }

    .cv-positioning-benefit:nth-child(2),
    .cv-positioning-benefit:nth-child(4) {
        transform: none;
    }

    .cv-positioning-benefit:hover,
    .cv-positioning-benefit:nth-child(2):hover,
    .cv-positioning-benefit:nth-child(4):hover {
        transform: translateY(-4px);
    }

    .cv-positioning-benefit:last-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 700px) {

    .cv-positioning-section {
        padding: 80px 18px;
    }

    .cv-positioning-main {
        margin-top: 28px;
    }

    .cv-positioning-content h2 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .cv-positioning-content > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .cv-positioning-benefits {
        grid-template-columns: 1fr;
    }

    .cv-positioning-benefit,
    .cv-positioning-benefit:last-child {
        grid-column: auto;
    }

    .cv-positioning-note {
        margin-top: 48px;
        padding: 26px 22px;

        grid-template-columns: 1fr;
    }

    .cv-positioning-note-icon {
        width: 56px;
        height: 56px;
    }

    .cv-positioning-note-number {
        font-size: 68px;
    }

}

@media (max-width: 450px) {

    .cv-positioning-content h2 {
        font-size: 34px;
    }

    .cv-positioning-benefit {
        padding: 15px;
    }

    .cv-positioning-benefit p {
        font-size: 13px;
    }

    .cv-positioning-note-content h3 {
        font-size: 17px;
    }

    .cv-positioning-note-content p {
        font-size: 13px;
    }

}

/* =====================================================
   AGENCY PAIN POINTS SECTION
===================================================== */

.cv-pain-section {
    position: relative;
    padding: 105px 24px 115px;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(201, 162, 91, 0.11),
            transparent 26%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(184, 133, 88, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 52%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Decorative Grid */

.cv-pain-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    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: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 18%,
        var(--charcoal) 82%,
        transparent
    );
}

/* Background Glow */

.cv-pain-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(115px);

    pointer-events: none;
}

.cv-pain-glow-one {
    top: -230px;
    right: -150px;

    background: var(--brushed-gold);
    opacity: 0.19;
}

.cv-pain-glow-two {
    left: -220px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Decorative Lines */

.cv-pain-line {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(19, 40, 85, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.cv-pain-line::before,
.cv-pain-line::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(19, 40, 85, 0.06);
    border-radius: inherit;
}

.cv-pain-line::before {
    inset: 26px;
}

.cv-pain-line::after {
    inset: 52px;
}

.cv-pain-line-one {
    width: 250px;
    height: 250px;

    top: 65px;
    right: -130px;
}

.cv-pain-line-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 50px;
}

/* Main Container */

.cv-pain-container {
    position: relative;
    z-index: 3;

    width: min(1240px, 100%);
    margin: 0 auto;
}

/* Intro */

.cv-pain-intro {
    position: relative;
    max-width: 820px;
}

.cv-pain-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;
}

.cv-pain-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

.cv-pain-heading-row {
    position: relative;
    margin-top: 30px;
}

.cv-pain-intro h2 {
    position: relative;
    z-index: 2;

    max-width: 800px;

    color: var(--primary-navy);

    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-pain-intro h2 span {
    color: var(--brushed-gold);
}

.cv-pain-heading-mark {
    position: absolute;
    top: -70px;
    right: -10px;
    z-index: 1;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

.cv-pain-intro > p {
    max-width: 790px;
    margin-top: 25px;

    color: var(--charcoal);

    font-size: 16px;
    line-height: 1.85;
}

/* Cards Layout */

.cv-pain-cards {
    margin-top: 64px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* Individual Card */

.cv-pain-card {
    position: relative;

    min-height: 335px;
    padding: 30px 26px 27px;

    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 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;
}

/* Gold top border */

.cv-pain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;

    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--brushed-gold),
        transparent
    );

    transition:
        left 0.35s ease,
        right 0.35s ease;
}

/* Background shape */

.cv-pain-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;

    width: 180px;
    height: 180px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    opacity: 0.7;
    pointer-events: none;
}

.cv-pain-card:hover {
    transform: translateY(-10px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 30px 65px rgba(13, 28, 69, 0.14),
        inset 0 1px 0 var(--warm-ivory);
}

.cv-pain-card:hover::before {
    left: 0;
    right: 0;
}

/* Card Number */

.cv-pain-card-number {
    position: absolute;
    top: 19px;
    right: 21px;

    color: var(--primary-navy);

    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.4px;
    font-weight: 800;

    opacity: 0.35;
}

/* Card Icon */

.cv-pain-card-icon {
    position: relative;
    z-index: 2;

    width: 56px;
    height: 56px;
    margin-bottom: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 17px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 20px;

    box-shadow: 0 10px 22px rgba(13, 28, 69, 0.08);

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.cv-pain-card:hover .cv-pain-card-icon {
    transform: rotate(0deg) scale(1.07);

    background: var(--primary-navy);
    color: var(--warm-ivory);
}

/* Card Heading */

.cv-pain-card h3 {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
}

/* Card Paragraph */

.cv-pain-card p {
    position: relative;
    z-index: 2;

    margin-top: 16px;

    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.75;

    opacity: 0.82;
}

/* Bottom Arrow */

.cv-pain-card-arrow {
    position: relative;
    z-index: 2;

    width: 34px;
    height: 34px;
    margin-top: auto;
    padding-top: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--natural-oak);

    font-size: 12px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.cv-pain-card:hover .cv-pain-card-arrow {
    color: var(--primary-navy);
    transform: translateY(5px);
}

/* Slight staggered layout */

.cv-pain-card:nth-child(2),
.cv-pain-card:nth-child(4) {
    margin-top: 28px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .cv-pain-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cv-pain-card:nth-child(2),
    .cv-pain-card:nth-child(4) {
        margin-top: 0;
    }

}

@media (max-width: 700px) {

    .cv-pain-section {
        padding: 80px 18px 85px;
    }

    .cv-pain-intro h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .cv-pain-intro > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .cv-pain-heading-mark {
        top: -45px;
        right: 0;
        font-size: 100px;
    }

    .cv-pain-cards {
        margin-top: 45px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cv-pain-card {
        min-height: auto;
    }

}

@media (max-width: 450px) {

    .cv-pain-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-pain-intro h2 {
        font-size: 35px;
    }

    .cv-pain-card {
        padding: 26px 22px;
        border-radius: 17px;
    }

    .cv-pain-card h3 {
        font-size: 17px;
    }

    .cv-pain-card p {
        font-size: 13px;
    }

}

/* =====================================================
   CORE SERVICES - THREE CARDS PER ROW
===================================================== */

.cv-services-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(201, 162, 91, 0.14),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background Grid */

.cv-services-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;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );
}

/* Background Glows */

.cv-services-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-services-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-services-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Decorative Rings */

.cv-services-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cv-services-ring::before,
.cv-services-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: inherit;
}

.cv-services-ring::before {
    inset: 28px;
}

.cv-services-ring::after {
    inset: 56px;
}

.cv-services-ring-one {
    width: 260px;
    height: 260px;

    top: 60px;
    right: -130px;
}

.cv-services-ring-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 55px;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.cv-services-container {
    position: relative;
    z-index: 3;

    width: min(1520px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(270px, 0.52fr) minmax(0, 1.48fr);
    align-items: start;
    gap: 48px;
}

/* =====================================================
   LEFT INTRO
===================================================== */

.cv-services-intro {
    position: sticky;
    top: 115px;

    padding: 20px 10px 20px 0;
}

.cv-services-label {
    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--soft-beige);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 2.1px;
    font-weight: 700;
    text-transform: uppercase;

    opacity: 0.75;
}

.cv-services-label-line {
    width: 34px;
    height: 1px;

    background: var(--brushed-gold);
}

.cv-services-intro h2 {
    max-width: 410px;
    margin-top: 26px;

    color: var(--warm-ivory);

    font-size: clamp(39px, 3.6vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.cv-services-intro h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-services-intro > p {
    max-width: 390px;
    margin-top: 25px;

    color: var(--soft-beige);

    font-size: 13px;
    line-height: 1.8;

    opacity: 0.86;
}

/* Large 06 Mark */

.cv-services-section-mark {
    position: relative;

    width: 150px;
    height: 105px;
    margin-top: 58px;
}

.cv-services-section-mark span {
    position: absolute;
    left: 0;
    bottom: 0;

    color: var(--warm-ivory);

    font-size: 92px;
    line-height: 0.8;
    font-weight: 800;

    opacity: 0.045;
}

.cv-services-section-mark div {
    position: absolute;
    left: 8px;
    bottom: 10px;

    width: 130px;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--brushed-gold),
        transparent
    );
}

/* =====================================================
   RIGHT THREE-COLUMN GRID
===================================================== */

.cv-services-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.cv-service-card {
    position: relative;
    padding: 25px 21px 22px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.11),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 20px 42px rgba(30, 30, 30, 0.17),
        inset 0 1px 0 rgba(248, 247, 244, 0.07);

    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,
        box-shadow 0.35s ease;
}

/* Slight layout movement */

.cv-service-card:nth-child(2),
.cv-service-card:nth-child(5) {
    transform: translateY(22px);
}

.cv-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 91, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.16),
            rgba(248, 247, 244, 0.045)
        );

    box-shadow:
        0 28px 58px rgba(30, 30, 30, 0.25),
        inset 0 1px 0 rgba(248, 247, 244, 0.1);
}

.cv-service-card:nth-child(2):hover,
.cv-service-card:nth-child(5):hover {
    transform: translateY(14px);
}

/* Gold Top Accent */

.cv-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;

    width: 40px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-service-card:hover::before {
    width: calc(100% - 36px);
}

/* Decorative Bottom Circle */

.cv-service-card::after {
    content: "";
    position: absolute;
    right: -62px;
    bottom: -72px;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

/* Service Number */

.cv-service-number {
    position: absolute;
    top: 18px;
    right: 19px;

    color: var(--warm-ivory);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.4px;
    font-weight: 800;

    opacity: 0.32;
}

/* Service Icon */

.cv-service-icon {
    position: relative;
    z-index: 2;

    width: 50px;
    height: 50px;
    margin-bottom: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.4);
    border-radius: 15px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 16px;

    box-shadow: 0 9px 20px rgba(30, 30, 30, 0.16);

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.cv-service-card:hover .cv-service-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.07);
}

/* Card Heading */

.cv-service-card h3 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}

/* Card Description */

.cv-service-card p {
    position: relative;
    z-index: 2;

    margin-top: 14px;

    color: var(--soft-beige);

    font-size: 11px;
    line-height: 1.75;

    opacity: 0.84;
}

/* Service Link */

.cv-service-link {
    position: relative;
    z-index: 2;

    width: fit-content;
    margin-top: auto;
    padding-top: 22px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--brushed-gold);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.1px;
    font-weight: 800;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.cv-service-link i {
    font-size: 8px;
}

.cv-service-link:hover {
    color: var(--warm-ivory);
    gap: 13px;
}

/* =====================================================
   RESPONSIVE - SMALL DESKTOP
===================================================== */

@media (max-width: 1250px) {

    .cv-services-container {
        grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1.55fr);
        gap: 35px;
    }

    .cv-services-intro h2 {
        font-size: 44px;
    }

    .cv-services-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .cv-service-card {
        min-height: 335px;
        padding-left: 18px;
        padding-right: 18px;
    }

}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1050px) {

    .cv-services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cv-services-intro {
        position: relative;
        top: auto;
        max-width: 850px;
        padding: 0;
    }

    .cv-services-intro h2 {
        max-width: 760px;
        font-size: 52px;
    }

    .cv-services-intro h2 span {
        display: inline;
    }

    .cv-services-intro > p {
        max-width: 650px;
    }

    .cv-services-section-mark {
        display: none;
    }

    .cv-services-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

/* =====================================================
   RESPONSIVE - MOBILE TABLET
===================================================== */

@media (max-width: 800px) {

    .cv-services-section {
        padding: 85px 18px 105px;
    }

    .cv-services-intro h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cv-service-card,
    .cv-service-card:nth-child(2),
    .cv-service-card:nth-child(5) {
        min-height: 320px;
        transform: none;
    }

    .cv-service-card:hover,
    .cv-service-card:nth-child(2):hover,
    .cv-service-card:nth-child(5):hover {
        transform: translateY(-6px);
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 560px) {

    .cv-services-section {
        padding: 75px 15px 82px;
    }

    .cv-services-intro h2 {
        font-size: 35px;
        line-height: 1.1;
    }

    .cv-services-intro > p {
        font-size: 13px;
    }

    .cv-services-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cv-service-card,
    .cv-service-card:nth-child(2),
    .cv-service-card:nth-child(5) {
        min-height: auto;
        padding: 25px 22px;
        transform: none;
    }

    .cv-service-card h3 {
        font-size: 17px;
    }

    .cv-service-card p {
        font-size: 13px;
    }

    .cv-service-link {
        margin-top: 25px;
        padding-top: 0;
        font-size: 9px;
    }

}

/* =====================================================
   WHY AGENCIES CHOOSE US
===================================================== */

.cv-choose-section {
    position: relative;
    padding: 110px 24px 120px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 162, 91, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(184, 133, 88, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 55%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background Grid */

.cv-choose-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    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: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );
}

/* Background Glows */

.cv-choose-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(115px);

    pointer-events: none;
}

.cv-choose-glow-one {
    top: -220px;
    left: -200px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-choose-glow-two {
    right: -220px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Main Container */

.cv-choose-container {
    position: relative;
    z-index: 3;

    width: min(1260px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 75px;
}

/* =====================================================
   LEFT INTRO
===================================================== */

.cv-choose-intro {
    position: relative;
}

.cv-choose-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;
}

.cv-choose-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

.cv-choose-intro h2 {
    max-width: 600px;
    margin-top: 30px;

    color: var(--primary-navy);

    font-size: clamp(43px, 5vw, 67px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-choose-intro h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-choose-intro > p {
    max-width: 580px;
    margin-top: 26px;

    color: var(--charcoal);

    font-size: 16px;
    line-height: 1.8;
}

/* Large Number */

.cv-choose-mark {
    position: absolute;
    left: 0;
    bottom: -150px;

    color: var(--primary-navy);

    font-size: 145px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;

    pointer-events: none;
}

/* =====================================================
   BENEFITS GRID
===================================================== */

.cv-choose-benefits {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
}

.cv-choose-center-line {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 50%;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(201, 162, 91, 0.45),
        transparent
    );

    transform: translateX(-50%);
    pointer-events: none;
}

/* Individual Item */

.cv-choose-item {
    position: relative;

    min-height: 92px;
    padding: 20px 42px 20px 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    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;
}

.cv-choose-item:nth-child(3),
.cv-choose-item:nth-child(5),
.cv-choose-item:nth-child(7),
.cv-choose-item:nth-child(9) {
    transform: translateY(14px);
}

.cv-choose-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;

    width: 3px;
    height: 56%;

    border-radius: 0 4px 4px 0;

    background: var(--brushed-gold);

    transition: height 0.35s ease;
}

.cv-choose-item::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -60px;

    width: 125px;
    height: 125px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.cv-choose-item:hover {
    transform: translateY(-6px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 24px 52px rgba(13, 28, 69, 0.13),
        inset 0 1px 0 var(--warm-ivory);
}

.cv-choose-item:nth-child(3):hover,
.cv-choose-item:nth-child(5):hover,
.cv-choose-item:nth-child(7):hover,
.cv-choose-item:nth-child(9):hover {
    transform: translateY(8px);
}

.cv-choose-item:hover::before {
    height: 78%;
}

/* Check Icon */

.cv-choose-check {
    position: relative;
    z-index: 2;
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 12px;

    box-shadow: 0 8px 18px rgba(13, 28, 69, 0.08);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-choose-item:hover .cv-choose-check {
    background: var(--primary-navy);
    color: var(--warm-ivory);
    transform: rotate(-5deg) scale(1.05);
}

/* Item Text */

.cv-choose-item p {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

/* Item Number */

.cv-choose-number {
    position: absolute;
    top: 13px;
    right: 15px;

    color: var(--primary-navy);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.28;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .cv-choose-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cv-choose-intro {
        max-width: 850px;
    }

    .cv-choose-intro h2 {
        max-width: 800px;
    }

    .cv-choose-mark {
        display: none;
    }

}

@media (max-width: 760px) {

    .cv-choose-section {
        padding: 80px 18px 90px;
    }

    .cv-choose-intro h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-choose-intro > p {
        font-size: 14px;
    }

    .cv-choose-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cv-choose-center-line {
        display: none;
    }

    .cv-choose-item,
    .cv-choose-item:nth-child(3),
    .cv-choose-item:nth-child(5),
    .cv-choose-item:nth-child(7),
    .cv-choose-item:nth-child(9) {
        transform: none;
    }

    .cv-choose-item:hover,
    .cv-choose-item:nth-child(3):hover,
    .cv-choose-item:nth-child(5):hover,
    .cv-choose-item:nth-child(7):hover,
    .cv-choose-item:nth-child(9):hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 450px) {

    .cv-choose-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-choose-intro h2 {
        font-size: 35px;
    }

    .cv-choose-item {
        min-height: 86px;
        padding: 18px 38px 18px 17px;
    }

    .cv-choose-check {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .cv-choose-item p {
        font-size: 13px;
    }

}

/* =====================================================
   AGENCY PARTNER CTA
===================================================== */

.cv-partner-cta {
    position: relative;
    padding: 75px 24px;

    background-image:
        url("../images/agency-partner-cta.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    isolation: isolate;
}

.cv-partner-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(13, 28, 69, 0.96) 0%,
            rgba(19, 40, 85, 0.91) 52%,
            rgba(13, 28, 69, 0.88) 100%
        );
}

.cv-partner-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        linear-gradient(
            rgba(231, 225, 216, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(231, 225, 216, 0.055) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.cv-partner-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    z-index: -1;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(201, 162, 91, 0.2);
    border-radius: 50%;
}

.cv-partner-cta::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -70px;
    z-index: -1;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;
}

.cv-partner-cta-container {
    position: relative;
    z-index: 3;

    width: min(1280px, 100%);
    min-height: 220px;
    margin: 0 auto;
    padding: 38px 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 24px;

    background:
        linear-gradient(
            110deg,
            rgba(248, 247, 244, 0.11),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 28px 65px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
}

.cv-partner-cta-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;

    width: 110px;
    height: 3px;

    background: var(--brushed-gold);
}

.cv-partner-cta-container::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -95px;

    width: 210px;
    height: 210px;

    border: 1px solid rgba(201, 162, 91, 0.16);
    border-radius: 50%;
}

.cv-partner-cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 24px;
}

.cv-partner-cta-icon {
    flex: 0 0 68px;

    width: 68px;
    height: 68px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.4);
    border-radius: 19px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 25px;

    transform: rotate(-4deg);

    box-shadow: 0 14px 28px rgba(30, 30, 30, 0.18);
}

.cv-partner-cta-text h2 {
    max-width: 690px;

    color: var(--warm-ivory);

    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.cv-partner-cta-text h2 span {
    color: var(--brushed-gold);
}

.cv-partner-cta-text p {
    margin-top: 12px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.86;
}

.cv-partner-cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.cv-partner-primary-btn,
.cv-partner-outline-btn {
    min-height: 56px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.cv-partner-primary-btn {
    border: 1px solid var(--brushed-gold);
    background: var(--brushed-gold);
    color: var(--dark-navy);

    box-shadow: 0 13px 28px rgba(201, 162, 91, 0.2);
}

.cv-partner-primary-btn:hover {
    background: var(--natural-oak);
    color: var(--warm-ivory);
    transform: translateY(-3px);
}

.cv-partner-primary-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.cv-partner-primary-btn:hover i {
    transform: translateX(4px);
}

.cv-partner-outline-btn {
    border: 1px solid rgba(231, 225, 216, 0.24);
    background: rgba(248, 247, 244, 0.04);
    color: var(--warm-ivory);
}

.cv-partner-outline-btn:hover {
    border-color: var(--brushed-gold);
    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);
    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .cv-partner-cta-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .cv-partner-cta-actions {
        padding-left: 92px;
    }

}

@media (max-width: 700px) {

    .cv-partner-cta {
        padding: 55px 18px;
    }

    .cv-partner-cta-container {
        min-height: auto;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .cv-partner-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .cv-partner-cta-text h2 {
        font-size: 32px;
    }

    .cv-partner-cta-actions {
        width: 100%;
        padding-left: 0;
        flex-direction: column;
    }

    .cv-partner-primary-btn,
    .cv-partner-outline-btn {
        width: 100%;
    }

}

@media (max-width: 450px) {

    .cv-partner-cta {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-partner-cta-container {
        padding: 30px 20px;
    }

    .cv-partner-cta-text h2 {
        font-size: 28px;
    }

    .cv-partner-cta-text p {
        font-size: 13px;
    }

}

/* =====================================================
   LOCAL & GEO-TARGETED SEO SECTION
===================================================== */

.cv-local-seo-section {
    position: relative;
    padding: 110px 24px 120px;

    background:
        radial-gradient(
            circle at 15% 18%,
            rgba(201, 162, 91, 0.14),
            transparent 27%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(184, 133, 88, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background Grid */

.cv-local-seo-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    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: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 15%,
        var(--charcoal) 85%,
        transparent
    );
}

/* Background Glows */

.cv-local-seo-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(120px);

    pointer-events: none;
}

.cv-local-seo-glow-one {
    top: -210px;
    left: -210px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-local-seo-glow-two {
    right: -220px;
    bottom: -230px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Main Container */

.cv-local-seo-container {
    position: relative;
    z-index: 3;

    width: min(1260px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-local-seo-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;
}

.cv-local-seo-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main Layout */

.cv-local-seo-layout {
    margin-top: 36px;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    gap: 48px;
}

/* =====================================================
   LEFT IMAGE
===================================================== */

.cv-local-seo-visual {
    position: relative;
}

.cv-local-seo-image-wrap {
    position: sticky;
    top: 110px;

    min-height: 620px;

    border: 1px solid var(--soft-beige);
    border-radius: 26px;

    overflow: hidden;

    box-shadow:
        0 28px 65px rgba(13, 28, 69, 0.15),
        inset 0 1px 0 var(--warm-ivory);
}

.cv-local-seo-image {
    width: 100%;
    height: 620px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.cv-local-seo-image-wrap:hover .cv-local-seo-image {
    transform: scale(1.04);
}

/* Image Overlay */

.cv-local-seo-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.96) 0%,
            rgba(13, 28, 69, 0.65) 45%,
            rgba(13, 28, 69, 0.12) 100%
        );
}

/* Image Heading */

.cv-local-seo-image-title {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 42px;
    z-index: 3;
}

.cv-local-seo-image-title::before {
    content: "";
    display: block;

    width: 55px;
    height: 3px;
    margin-bottom: 20px;

    background: var(--brushed-gold);
}

.cv-local-seo-image-title h2 {
    color: var(--warm-ivory);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -2px;
    font-weight: 800;
}

.cv-local-seo-image-title h2 span {
    display: block;
    color: var(--brushed-gold);
}

/* Large Image Number */

.cv-local-seo-image-number {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 3;

    color: var(--warm-ivory);

    font-size: 85px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.1;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.cv-local-seo-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Highlight Box */

.cv-local-seo-highlight {
    position: relative;

    padding: 30px 30px 30px 34px;

    border: 1px solid var(--soft-beige);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 18px 42px rgba(13, 28, 69, 0.08),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.cv-local-seo-highlight-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.cv-local-seo-highlight::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;

    width: 170px;
    height: 170px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

.cv-local-seo-highlight p {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
}

/* Small Titles */

.cv-local-seo-small-title {
    color: var(--primary-navy);

    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
}

/* Optimization List */

.cv-local-seo-list {
    margin-top: 16px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    list-style: none;
}

.cv-local-seo-list li {
    min-height: 58px;
    padding: 12px 15px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid var(--soft-beige);
    border-radius: 13px;

    background: var(--warm-ivory);
    color: var(--charcoal);

    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;

    box-shadow: 0 10px 24px rgba(13, 28, 69, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.cv-local-seo-list li:hover {
    transform: translateY(-4px);
    border-color: var(--brushed-gold);
}

.cv-local-seo-list li span {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 12px;
}

/* Search Tags */

.cv-local-seo-tags {
    margin-top: 16px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-local-seo-tags span {
    min-height: 40px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 50px;

    background: var(--primary-navy);
    color: var(--warm-ivory);

    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.4px;
    font-weight: 700;

    box-shadow: 0 9px 20px rgba(13, 28, 69, 0.12);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cv-local-seo-tags span:hover {
    background: var(--brushed-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Final Paragraph */

.cv-local-seo-final-text {
    padding: 23px 25px;

    border-left: 3px solid var(--brushed-gold);

    background: var(--soft-beige);
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .cv-local-seo-layout {
        grid-template-columns: 1fr;
    }

    .cv-local-seo-image-wrap {
        position: relative;
        top: auto;

        min-height: 520px;
    }

    .cv-local-seo-image {
        height: 520px;
    }

}

@media (max-width: 700px) {

    .cv-local-seo-section {
        padding: 80px 18px 88px;
    }

    .cv-local-seo-image-wrap {
        min-height: 440px;
        border-radius: 20px;
    }

    .cv-local-seo-image {
        height: 440px;
    }

    .cv-local-seo-image-title {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }

    .cv-local-seo-image-title h2 {
        font-size: 36px;
    }

    .cv-local-seo-list {
        grid-template-columns: 1fr;
    }

    .cv-local-seo-highlight {
        padding: 26px 24px 26px 28px;
    }

    .cv-local-seo-highlight p {
        font-size: 14px;
    }

}

@media (max-width: 450px) {

    .cv-local-seo-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-local-seo-image-wrap {
        min-height: 390px;
    }

    .cv-local-seo-image {
        height: 390px;
    }

    .cv-local-seo-image-title h2 {
        font-size: 31px;
    }

    .cv-local-seo-image-number {
        font-size: 65px;
    }

    .cv-local-seo-tags span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cv-local-seo-final-text {
        font-size: 13px;
    }

}

/* =====================================================
   ANSWER ENGINE OPTIMIZATION SECTION
   CONTENT LEFT + IMAGE RIGHT
===================================================== */

.cv-aeo-section {
    position: relative;
    padding: 105px 24px 115px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(201, 162, 91, 0.17),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(184, 133, 88, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 58%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND GRID
===================================================== */

.cv-aeo-background-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.055) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 12%,
        var(--charcoal) 88%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 12%,
        var(--charcoal) 88%,
        transparent
    );
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.cv-aeo-background-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(120px);

    pointer-events: none;
}

.cv-aeo-glow-left {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-aeo-glow-right {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.15;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.cv-aeo-container {
    position: relative;
    z-index: 3;

    width: min(1260px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.cv-aeo-section-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;
}

.cv-aeo-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   TWO COLUMN LAYOUT
===================================================== */

.cv-aeo-layout {
    margin-top: 36px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(400px, 0.85fr);

    align-items: stretch;
    gap: 45px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.cv-aeo-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =====================================================
   MAIN HIGHLIGHT BOX
===================================================== */

.cv-aeo-highlight-box {
    position: relative;

    min-height: 150px;
    padding: 31px 34px 31px 38px;

    display: flex;
    align-items: center;

    border: 1px solid var(--soft-beige);
    border-radius: 20px;

    background:
        linear-gradient(
            140deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 20px 48px rgba(13, 28, 69, 0.09),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.cv-aeo-highlight-border {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.cv-aeo-highlight-box p {
    position: relative;
    z-index: 2;

    max-width: 720px;

    color: var(--primary-navy);

    font-size: 17px;
    line-height: 1.7;
    font-weight: 800;
}

.cv-aeo-highlight-circle {
    position: absolute;
    right: -72px;
    bottom: -90px;

    width: 190px;
    height: 190px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.cv-aeo-highlight-circle::before {
    content: "";
    position: absolute;
    inset: 30px;

    border: 1px solid var(--soft-beige);
    border-radius: inherit;
}

/* =====================================================
   QUESTIONS
===================================================== */

.cv-aeo-question-area h3 {
    color: var(--primary-navy);

    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
}

.cv-aeo-question-tags {
    margin-top: 16px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-aeo-question-tags span {
    min-height: 42px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 50px;

    background: var(--primary-navy);
    color: var(--warm-ivory);

    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.25px;
    font-weight: 700;

    box-shadow:
        0 10px 22px rgba(13, 28, 69, 0.14);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.cv-aeo-question-tags span:hover {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: translateY(-4px);
}

/* =====================================================
   FINAL CONTENT BOX
===================================================== */

.cv-aeo-final-box {
    position: relative;

    padding: 25px 27px 25px 30px;

    border-radius: 0 15px 15px 0;

    background:
        linear-gradient(
            110deg,
            var(--soft-beige),
            var(--warm-ivory)
        );

    overflow: hidden;
}

.cv-aeo-final-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background: var(--brushed-gold);
}

.cv-aeo-final-box p {
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.85;
}

/* =====================================================
   RIGHT IMAGE CARD
===================================================== */

.cv-aeo-visual {
    position: relative;
}

.cv-aeo-image-card {
    position: sticky;
    top: 105px;

    min-height: 595px;

    border: 1px solid var(--soft-beige);
    border-radius: 26px;

    background: var(--primary-navy);

    box-shadow:
        0 30px 70px rgba(13, 28, 69, 0.18),
        inset 0 1px 0 rgba(248, 247, 244, 0.12);

    overflow: hidden;
}

/* Image */

.cv-aeo-image {
    width: 100%;
    height: 595px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.cv-aeo-image-card:hover .cv-aeo-image {
    transform: scale(1.045);
}

/* Image Overlay */

.cv-aeo-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.98) 0%,
            rgba(19, 40, 85, 0.82) 42%,
            rgba(19, 40, 85, 0.16) 100%
        );
}

/* Image Number */

.cv-aeo-image-number {
    position: absolute;
    top: 24px;
    right: 25px;
    z-index: 3;

    color: var(--warm-ivory);

    font-size: 88px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.1;
}

/* Image Heading */

.cv-aeo-image-heading {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 42px;
    z-index: 4;
}

.cv-aeo-image-heading-line {
    display: block;

    width: 52px;
    height: 3px;
    margin-bottom: 20px;

    background: var(--brushed-gold);
}

.cv-aeo-image-heading h2 {
    color: var(--warm-ivory);

    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.12;
    letter-spacing: -2px;
    font-weight: 800;
}

.cv-aeo-image-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

/* =====================================================
   IMAGE HOVER BORDER
===================================================== */

.cv-aeo-image-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 5;

    border: 1px solid rgba(201, 162, 91, 0);
    border-radius: 18px;

    pointer-events: none;

    transition: border-color 0.35s ease;
}

.cv-aeo-image-card:hover::before {
    border-color: rgba(201, 162, 91, 0.35);
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1000px) {

    .cv-aeo-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cv-aeo-image-card {
        position: relative;
        top: auto;

        min-height: 520px;
    }

    .cv-aeo-image {
        height: 520px;
    }

    .cv-aeo-image-heading h2 {
        max-width: 650px;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 700px) {

    .cv-aeo-section {
        padding: 80px 18px 88px;
    }

    .cv-aeo-layout {
        margin-top: 30px;
        gap: 38px;
    }

    .cv-aeo-highlight-box {
        min-height: auto;
        padding: 26px 23px 26px 28px;
    }

    .cv-aeo-highlight-box p {
        font-size: 15px;
    }

    .cv-aeo-final-box {
        padding: 22px 21px 22px 25px;
    }

    .cv-aeo-image-card {
        min-height: 450px;
        border-radius: 21px;
    }

    .cv-aeo-image {
        height: 450px;
    }

    .cv-aeo-image-heading {
        left: 25px;
        right: 25px;
        bottom: 28px;
    }

    .cv-aeo-image-heading h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .cv-aeo-image-number {
        font-size: 70px;
    }

}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .cv-aeo-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-aeo-section-label {
        align-items: flex-start;
        line-height: 1.5;
    }

    .cv-aeo-question-tags {
        flex-direction: column;
        align-items: stretch;
    }

    .cv-aeo-question-tags span {
        width: 100%;
        min-height: 44px;

        text-align: center;
    }

    .cv-aeo-final-box p {
        font-size: 13px;
    }

    .cv-aeo-image-card {
        min-height: 400px;
    }

    .cv-aeo-image {
        height: 400px;
    }

    .cv-aeo-image-heading h2 {
        font-size: 31px;
    }

    .cv-aeo-image-number {
        font-size: 60px;
    }

}

/* =====================================================
   WHO THIS SERVICE IS FOR
   AGENCY ECOSYSTEM LAYOUT
===================================================== */

.cv-audience-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(201, 162, 91, 0.17),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(184, 133, 88, 0.13),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.cv-audience-background-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) 12%,
        var(--charcoal) 88%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 12%,
        var(--charcoal) 88%,
        transparent
    );
}

.cv-audience-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-audience-glow-left {
    top: -230px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-audience-glow-right {
    right: -230px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.15;
}

/* =====================================================
   CONTAINER
===================================================== */

.cv-audience-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION LABEL
===================================================== */

.cv-audience-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.78;
}

.cv-audience-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.cv-audience-layout {
    margin-top: 42px;

    display: grid;
    grid-template-columns:
        minmax(340px, 0.76fr)
        minmax(600px, 1.24fr);

    align-items: center;
    gap: 70px;
}

/* =====================================================
   LEFT INTRO
===================================================== */

.cv-audience-intro {
    position: relative;
    z-index: 5;
}

.cv-audience-section-number {
    position: absolute;
    top: -85px;
    left: -10px;
    z-index: -1;

    color: var(--warm-ivory);

    font-size: 165px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

.cv-audience-intro h2 {
    max-width: 620px;

    color: var(--warm-ivory);

    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.06;
    letter-spacing: -3px;
    font-weight: 800;
}

.cv-audience-intro h2 span {
    display: block;
    margin-top: 8px;

    color: var(--brushed-gold);
}

.cv-audience-intro p {
    max-width: 570px;
    margin-top: 28px;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.85;

    opacity: 0.88;
}

/* =====================================================
   RIGHT ECOSYSTEM
===================================================== */

.cv-audience-ecosystem {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit circles */

.cv-audience-orbit {
    position: absolute;
    left: 50%;
    top: 50%;

    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.cv-audience-orbit::before,
.cv-audience-orbit::after {
    content: "";
    position: absolute;

    border-radius: 50%;
    border: 1px solid rgba(201, 162, 91, 0.09);
}

.cv-audience-orbit::before {
    inset: 26px;
}

.cv-audience-orbit::after {
    inset: 52px;
}

.cv-audience-orbit.orbit-one {
    width: 510px;
    height: 510px;
}

.cv-audience-orbit.orbit-two {
    width: 355px;
    height: 355px;

    border-style: dashed;
    opacity: 0.75;
}

/* =====================================================
   CENTRE HUB
===================================================== */

.cv-audience-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;

    width: 190px;
    height: 190px;
    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border: 1px solid rgba(201, 162, 91, 0.55);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(201, 162, 91, 0.23),
            rgba(19, 40, 85, 0.96) 52%,
            var(--dark-navy) 100%
        );

    box-shadow:
        0 0 0 13px rgba(201, 162, 91, 0.05),
        0 28px 60px rgba(30, 30, 30, 0.32),
        inset 0 1px 0 rgba(248, 247, 244, 0.12);

    transform: translate(-50%, -50%);

    text-align: center;
}

.cv-audience-hub-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 18px;

    box-shadow: 0 10px 25px rgba(30, 30, 30, 0.2);
}

.cv-audience-hub strong {
    color: var(--warm-ivory);

    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.cv-audience-hub strong span {
    display: block;
    color: var(--brushed-gold);
}

/* =====================================================
   AUDIENCE NODES
===================================================== */

.cv-audience-node {
    position: absolute;
    z-index: 5;

    width: 220px;
    min-height: 142px;
    padding: 20px 18px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.12),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 20px 45px rgba(30, 30, 30, 0.21),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.cv-audience-node::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-audience-node::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;

    width: 125px;
    height: 125px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cv-audience-node:hover {
    z-index: 10;

    border-color: rgba(201, 162, 91, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.17),
            rgba(248, 247, 244, 0.05)
        );
}

.cv-audience-node:hover::before {
    width: calc(100% - 40px);
}

/* Node positions */

.cv-audience-node-one {
    top: 20px;
    left: 50%;

    transform: translateX(-50%);
}

.cv-audience-node-two {
    top: 175px;
    left: 0;
}

.cv-audience-node-three {
    top: 175px;
    right: 0;
}

.cv-audience-node-four {
    bottom: 15px;
    left: 55px;
}

.cv-audience-node-five {
    right: 55px;
    bottom: 15px;
}

/* Hover movement */

.cv-audience-node-one:hover {
    transform: translateX(-50%) translateY(-8px);
}

.cv-audience-node-two:hover,
.cv-audience-node-three:hover,
.cv-audience-node-four:hover,
.cv-audience-node-five:hover {
    transform: translateY(-8px);
}

/* Node number */

.cv-audience-node-number {
    position: absolute;
    top: 16px;
    right: 17px;

    color: var(--warm-ivory);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.3px;
    font-weight: 800;

    opacity: 0.3;
}

/* Node icon */

.cv-audience-node-icon {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;
    margin-bottom: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.4);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.cv-audience-node:hover .cv-audience-node-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Node heading */

.cv-audience-node h3 {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.cv-audience-statement {
    position: relative;

    margin-top: 65px;
    padding: 28px 34px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(201, 162, 91, 0.14),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 22px 50px rgba(30, 30, 30, 0.18),
        inset 0 1px 0 rgba(248, 247, 244, 0.07);

    overflow: hidden;
}

.cv-audience-statement::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;

    width: 4px;
    height: 64%;

    border-radius: 0 4px 4px 0;
    background: var(--brushed-gold);
}

.cv-audience-statement-icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.4);
    border-radius: 15px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 18px;
}

.cv-audience-statement p {
    position: relative;
    z-index: 2;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.8;

    opacity: 0.92;
}

.cv-audience-statement-line {
    position: absolute;
    right: 30px;
    bottom: 0;

    width: 120px;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--brushed-gold)
    );
}

/* =====================================================
   RESPONSIVE - SMALL DESKTOP
===================================================== */

@media (max-width: 1250px) {

    .cv-audience-layout {
        grid-template-columns:
            minmax(300px, 0.7fr)
            minmax(570px, 1.3fr);

        gap: 40px;
    }

    .cv-audience-ecosystem {
        transform: scale(0.92);
    }

}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1050px) {

    .cv-audience-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cv-audience-intro {
        max-width: 850px;
    }

    .cv-audience-intro h2 {
        max-width: 850px;
    }

    .cv-audience-ecosystem {
        width: min(760px, 100%);
        margin: 0 auto;

        transform: none;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE TABLET
===================================================== */

@media (max-width: 760px) {

    .cv-audience-section {
        padding: 82px 18px 90px;
    }

    .cv-audience-intro h2 {
        font-size: 42px;
        letter-spacing: -1.9px;
    }

    .cv-audience-intro p {
        font-size: 14px;
    }

    .cv-audience-section-number {
        display: none;
    }

    .cv-audience-ecosystem {
        min-height: auto;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cv-audience-orbit,
    .cv-audience-hub {
        display: none;
    }

    .cv-audience-node,
    .cv-audience-node-one,
    .cv-audience-node-two,
    .cv-audience-node-three,
    .cv-audience-node-four,
    .cv-audience-node-five {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        min-height: 165px;

        transform: none;
    }

    .cv-audience-node-one:hover,
    .cv-audience-node-two:hover,
    .cv-audience-node-three:hover,
    .cv-audience-node-four:hover,
    .cv-audience-node-five:hover {
        transform: translateY(-6px);
    }

    .cv-audience-node-five {
        grid-column: 1 / -1;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 520px) {

    .cv-audience-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-audience-intro h2 {
        font-size: 35px;
    }

    .cv-audience-ecosystem {
        grid-template-columns: 1fr;
    }

    .cv-audience-node-five {
        grid-column: auto;
    }

    .cv-audience-node {
        min-height: 150px;
    }

    .cv-audience-node h3 {
        font-size: 15px;
    }

    .cv-audience-statement {
        margin-top: 45px;
        padding: 24px 21px;

        grid-template-columns: 1fr;
    }

    .cv-audience-statement p {
        font-size: 13px;
    }

}

/* =====================================================
   AGENCY WORKFLOW SECTION
   STICKY LEFT + SCROLLING RIGHT
===================================================== */

.cv-workflow-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(201, 162, 91, 0.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(184, 133, 88, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: visible;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.cv-workflow-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) 8%,
        var(--charcoal) 92%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 8%,
        var(--charcoal) 92%,
        transparent
    );
}

.cv-workflow-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-workflow-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-workflow-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.cv-workflow-container {
    position: relative;
    z-index: 3;

    width: min(1280px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(340px, 0.78fr)
        minmax(0, 1.22fr);

    align-items: start;
    gap: 90px;
}

/* =====================================================
   LEFT STICKY CONTENT
===================================================== */

.cv-workflow-intro {
    position: sticky;
    top: 115px;

    min-height: 570px;
    padding: 34px 34px 38px;

    border: 1px solid var(--soft-beige);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 28px 65px rgba(13, 28, 69, 0.11),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

/* Gold top accent */

.cv-workflow-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;

    width: 85px;
    height: 3px;

    background: var(--brushed-gold);
}

/* Decorative circle */

.cv-workflow-intro::after {
    content: "";
    position: absolute;
    right: -115px;
    bottom: -125px;

    width: 300px;
    height: 300px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* Label */

.cv-workflow-label {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--natural-oak);

    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-workflow-label-line {
    flex: 0 0 34px;

    width: 34px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.cv-workflow-intro h2 {
    position: relative;
    z-index: 3;

    margin-top: 30px;

    color: var(--primary-navy);

    font-size: clamp(43px, 4.4vw, 52px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-workflow-intro h2 span {
    display: block;
    color: var(--brushed-gold);
}

/* Paragraph */

.cv-workflow-intro > p {
    position: relative;
    z-index: 3;

    margin-top: 25px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.85;
}

/* =====================================================
   LEFT PROGRESS BOX
===================================================== */

.cv-workflow-progress-box {
    position: relative;
    z-index: 3;

    margin-top: 45px;
    padding: 21px 22px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background: var(--soft-beige);
}

.cv-workflow-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cv-workflow-progress-top span {
    color: var(--charcoal);

    font-size: 9px;
    letter-spacing: 1.4px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-workflow-progress-top strong {
    color: var(--primary-navy);

    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.cv-workflow-progress-track {
    width: 100%;
    height: 4px;
    margin-top: 17px;

    border-radius: 20px;

    background: var(--warm-ivory);
    overflow: hidden;
}

.cv-workflow-progress-fill {
    display: block;

    width: 14.28%;
    height: 100%;

    border-radius: inherit;

    background: var(--brushed-gold);

    transition: width 0.45s ease;
}

.cv-workflow-progress-box > p {
    margin-top: 13px;

    color: var(--primary-navy);

    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

/* Large 07 */

.cv-workflow-large-number {
    position: absolute;
    right: 24px;
    bottom: -16px;
    z-index: 1;

    color: var(--primary-navy);

    font-size: 125px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

/* =====================================================
   RIGHT STEPS AREA
===================================================== */

.cv-workflow-steps {
    position: relative;
    padding-left: 72px;
}

/* Main vertical timeline */

.cv-workflow-timeline-line {
    position: absolute;
    top: 80px;
    bottom: 170px;
    left: 27px;

    width: 2px;

    background: var(--soft-beige);
    border-radius: 20px;
    overflow: hidden;
}

.cv-workflow-timeline-progress {
    display: block;

    width: 100%;
    height: 0;

    border-radius: inherit;

    background: var(--brushed-gold);

    transition: height 0.5s ease;
}

/* =====================================================
   INDIVIDUAL STEP
===================================================== */

.cv-workflow-step {
    position: relative;

    min-height: 440px;
    padding: 70px 0;

    display: flex;
    align-items: center;

    opacity: 0.48;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.cv-workflow-step:first-of-type {
    padding-top: 20px;
}

.cv-workflow-step-active {
    opacity: 1;
}

/* Timeline number circle */

.cv-workflow-step-number {
    position: absolute;
    top: 50%;
    left: -72px;
    z-index: 5;

    width: 56px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    background: var(--warm-ivory);
    color: var(--primary-navy);

    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(13, 28, 69, 0.09);

    transform: translateY(-50%);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.cv-workflow-step-active .cv-workflow-step-number {
    border-color: var(--brushed-gold);
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform:
        translateY(-50%)
        scale(1.08);
}

/* =====================================================
   STEP CARD
===================================================== */

.cv-workflow-step-card {
    position: relative;

    width: 100%;
    min-height: 260px;
    padding: 34px 34px 31px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 22px 52px rgba(13, 28, 69, 0.08),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transform: translateX(25px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.cv-workflow-step-active .cv-workflow-step-card {
    border-color: var(--brushed-gold);

    box-shadow:
        0 30px 68px rgba(13, 28, 69, 0.14),
        inset 0 1px 0 var(--warm-ivory);

    transform: translateX(0);
}

/* Card top accent */

.cv-workflow-step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;

    width: 45px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.4s ease;
}

.cv-workflow-step-active .cv-workflow-step-card::before {
    width: calc(100% - 60px);
}

/* Card decorative circle */

.cv-workflow-step-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;

    width: 200px;
    height: 200px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* Card index */

.cv-workflow-card-index {
    position: absolute;
    top: 23px;
    right: 25px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.4px;
    font-weight: 800;
    text-transform: uppercase;

    opacity: 0.3;
}

/* Icon */

.cv-workflow-step-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;
    margin-bottom: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 17px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 19px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-workflow-step-active .cv-workflow-step-icon {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(0deg) scale(1.06);
}

/* Heading */

.cv-workflow-step-card h3 {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
}

/* Paragraph */

.cv-workflow-step-card p {
    position: relative;
    z-index: 2;

    max-width: 650px;
    margin-top: 14px;

    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   FINAL NOTE
===================================================== */

.cv-workflow-final-note {
    position: relative;

    margin-top: 45px;
    padding: 26px 28px 26px 32px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background: var(--soft-beige);

    overflow: hidden;
}

.cv-workflow-final-note-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--brushed-gold);
}

.cv-workflow-final-note p {
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1000px) {

    .cv-workflow-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cv-workflow-intro {
        position: relative;
        top: auto;

        min-height: auto;
    }

    .cv-workflow-step {
        min-height: 360px;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 700px) {

    .cv-workflow-section {
        padding: 80px 18px 90px;
    }

    .cv-workflow-intro {
        padding: 29px 24px 32px;
        border-radius: 21px;
    }

    .cv-workflow-intro h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .cv-workflow-intro > p {
        font-size: 14px;
    }

    .cv-workflow-large-number {
        display: none;
    }

    .cv-workflow-steps {
        padding-left: 52px;
    }

    .cv-workflow-timeline-line {
        left: 20px;
    }

    .cv-workflow-step {
        min-height: auto;
        padding: 35px 0;
    }

    .cv-workflow-step-number {
        left: -52px;

        width: 42px;
        height: 42px;

        font-size: 9px;
    }

    .cv-workflow-step-card {
        min-height: auto;
        padding: 29px 23px 26px;
        border-radius: 18px;
    }

    .cv-workflow-step-card h3 {
        font-size: 20px;
    }

    .cv-workflow-step-card p {
        font-size: 13px;
    }

}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .cv-workflow-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-workflow-intro h2 {
        font-size: 34px;
    }

    .cv-workflow-progress-box {
        padding: 18px;
    }

    .cv-workflow-steps {
        padding-left: 43px;
    }

    .cv-workflow-timeline-line {
        left: 16px;
    }

    .cv-workflow-step-number {
        left: -43px;

        width: 35px;
        height: 35px;
    }

    .cv-workflow-step-card {
        transform: none;
    }

    .cv-workflow-step-active .cv-workflow-step-card {
        transform: none;
    }

}

/* =====================================================
   HOW THIS HELPS YOUR AGENCY GROW
===================================================== */

.cv-growth-section {
    position: relative;
    padding: 110px 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.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 58%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Background Grid */

.cv-growth-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
    );
}

.cv-growth-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-growth-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-growth-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.cv-growth-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-growth-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;
}

.cv-growth-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Main Layout */

.cv-growth-main {
    margin-top: 40px;

    display: grid;
    grid-template-columns:
        minmax(380px, 0.78fr)
        minmax(550px, 1.22fr);

    align-items: center;
    gap: 70px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.cv-growth-content h2 {
    max-width: 650px;

    color: var(--primary-navy);

    font-size: clamp(43px, 4.8vw, 55px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-growth-content h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-growth-intro-text {
    max-width: 610px;
    margin-top: 26px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.85;
}

/* Stats */

.cv-growth-stats {
    margin-top: 38px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.cv-growth-stat {
    position: relative;

    min-height: 140px;
    padding: 24px 21px;

    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;
}

.cv-growth-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);
    transition: width 0.35s ease;
}

.cv-growth-stat::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -60px;

    width: 128px;
    height: 128px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;
}

.cv-growth-stat:hover {
    transform: translateY(-6px);
    border-color: var(--brushed-gold);
}

.cv-growth-stat:hover::before {
    width: calc(100% - 40px);
}

.cv-growth-stat-index {
    position: absolute;
    top: 15px;
    right: 16px;

    color: var(--primary-navy);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

.cv-growth-stat strong {
    position: relative;
    z-index: 2;

    display: block;

    color: var(--primary-navy);

    font-size: 37px;
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.cv-growth-stat p {
    position: relative;
    z-index: 2;

    margin-top: 13px;

    color: var(--charcoal);

    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
}

/* =====================================================
   DESKTOP REPORT VISUAL
===================================================== */

.cv-report-desktop-area {
    position: relative;

    min-height: 665px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}

/* Monitor Frame */

.cv-report-monitor {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 735px;

    border: 9px solid var(--dark-navy);
    border-bottom-width: 15px;
    border-radius: 24px;

    background: var(--dark-navy);

    box-shadow:
        0 38px 85px rgba(13, 28, 69, 0.23),
        0 0 0 1px var(--soft-beige);

    overflow: hidden;

    transform:
        rotateY(-4deg)
        rotateX(1deg);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

.cv-report-desktop-area:hover .cv-report-monitor {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-7px);

    box-shadow:
        0 48px 95px rgba(13, 28, 69, 0.28),
        0 0 0 1px var(--soft-beige);
}

/* Monitor Header */

.cv-report-monitor-header {
    min-height: 56px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: var(--primary-navy);
}

.cv-report-monitor-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--warm-ivory);

    font-size: 10px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.cv-report-status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--brushed-gold);

    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.14);
}

.cv-report-window-controls {
    display: flex;
    gap: 6px;
}

.cv-report-window-controls span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--soft-beige);
    opacity: 0.65;
}

/* =====================================================
   REPORT SCREEN
===================================================== */

.cv-report-screen {
    position: relative;

    width: 100%;
    height: 440px;

    background: var(--light-gray);
    overflow: hidden;
    user-select: none;
}

.cv-report-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    max-width: none;

    display: block;

    object-fit: contain;
    object-position: top center;

    background: var(--warm-ivory);
}

/* Clear after image */

.cv-report-after {
    z-index: 1;
}

/* Before clipped layer */

.cv-report-before-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    width: 48%;

    overflow: hidden;
}

.cv-report-before {
    width: calc(100vw);
    min-width: 735px;

    filter:
        grayscale(0.7)
        blur(2.5px)
        brightness(0.75);

    opacity: 0.78;
}

/*
Important:
Before image width parent monitor width-ah maintain panna
JS dynamic width set pannum.
*/

.cv-report-screen-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    background:
        linear-gradient(
            to top,
            rgba(13, 28, 69, 0.11),
            transparent 42%
        );

    pointer-events: none;
}

/* Labels */

.cv-report-view-label {
    position: absolute;
    top: 18px;
    z-index: 7;

    min-height: 33px;
    padding: 0 13px;

    display: inline-flex;
    align-items: center;

    border: 1px solid var(--soft-beige);
    border-radius: 30px;

    font-size: 9px;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(13, 28, 69, 0.16);
}

.cv-report-before-label {
    left: 18px;

    background: var(--charcoal);
    color: var(--warm-ivory);
}

.cv-report-after-label {
    right: 18px;

    background: var(--brushed-gold);
    color: var(--dark-navy);
}

/* Divider */

.cv-report-comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48%;
    z-index: 8;

    width: 3px;

    transform: translateX(-50%);

    pointer-events: none;
}

.cv-report-divider-line {
    position: absolute;
    inset: 0;

    background: var(--brushed-gold);

    box-shadow:
        0 0 18px rgba(201, 162, 91, 0.5);
}

.cv-report-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 2px solid var(--brushed-gold);
    border-radius: 50%;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 10px;

    box-shadow:
        0 15px 35px rgba(13, 28, 69, 0.32);

    transform: translate(-50%, -50%);
}

/* Invisible range */

.cv-report-comparison-range {
    position: absolute;
    inset: 0;
    z-index: 12;

    width: 100%;
    height: 100%;

    opacity: 0;
    cursor: ew-resize;
}

/* Monitor Footer */

.cv-report-monitor-footer {
    min-height: 45px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: var(--primary-navy);
}

.cv-report-monitor-footer span {
    min-height: 27px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 30px;

    color: var(--soft-beige);

    font-size: 8px;
    letter-spacing: 0.8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Monitor Stand */

.cv-report-monitor-neck {
    position: absolute;
    left: 50%;
    bottom: 43px;
    z-index: 2;

    width: 95px;
    height: 68px;

    border-radius: 0 0 10px 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary-navy),
            var(--dark-navy),
            var(--primary-navy)
        );

    transform: translateX(-50%);
}

.cv-report-monitor-base {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 3;

    width: 245px;
    height: 25px;

    border-radius: 50% 50% 10px 10px;

    background:
        linear-gradient(
            90deg,
            var(--dark-navy),
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 18px 30px rgba(13, 28, 69, 0.2);

    transform: translateX(-50%);
}

/* Floating Badge */

.cv-report-floating-badge {
    position: absolute;
    top: 25px;
    right: -5px;
    z-index: 10;

    min-width: 178px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid var(--soft-beige);
    border-radius: 15px;

    background: var(--warm-ivory);

    box-shadow:
        0 20px 45px rgba(13, 28, 69, 0.17);

    transform: rotate(3deg);

    transition: transform 0.35s ease;
}

.cv-report-floating-badge:hover {
    transform:
        rotate(0deg)
        translateY(-5px);
}

.cv-report-floating-badge > span {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 13px;
}

.cv-report-floating-badge div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cv-report-floating-badge small {
    color: var(--charcoal);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.8px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-report-floating-badge strong {
    color: var(--primary-navy);

    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.cv-report-large-number {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 1;

    color: var(--primary-navy);

    font-size: 125px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.045;
}

/* =====================================================
   BENEFITS
===================================================== */

.cv-growth-benefits {
    margin-top: 65px;

    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.cv-growth-benefit {
    min-height: 90px;
    padding: 15px 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;

    border: 1px solid var(--soft-beige);
    border-radius: 14px;

    background: var(--warm-ivory);

    text-align: center;

    box-shadow:
        0 12px 28px rgba(13, 28, 69, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.cv-growth-benefit:hover {
    transform: translateY(-5px);
    border-color: var(--brushed-gold);
}

.cv-growth-benefit span {
    width: 31px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 10px;
}

.cv-growth-benefit p {
    color: var(--primary-navy);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
}

/* Bottom Box */

.cv-growth-bottom {
    margin-top: 32px;
    padding: 24px 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: 16px;

    background:
        linear-gradient(
            110deg,
            var(--soft-beige),
            var(--warm-ivory)
        );
}

.cv-growth-bottom-icon {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-navy);
    color: var(--brushed-gold);

    font-size: 14px;
}

.cv-growth-bottom p {
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

.cv-growth-bottom a {
    color: var(--primary-navy);
    font-weight: 800;

    border-bottom: 1px solid var(--brushed-gold);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .cv-growth-main {
        grid-template-columns: 1fr;
    }

    .cv-growth-content {
        max-width: 850px;
    }

    .cv-report-desktop-area {
        width: min(850px, 100%);
        margin: 0 auto;
    }

    .cv-growth-benefits {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 750px) {

    .cv-growth-section {
        padding: 80px 18px 90px;
    }

    .cv-growth-content h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-report-desktop-area {
        min-height: 550px;
    }

    .cv-report-monitor {
        border-width: 7px;
        border-bottom-width: 12px;
        transform: none;
    }

    .cv-report-screen {
        height: 350px;
    }

    .cv-report-monitor-neck {
        bottom: 40px;
        height: 55px;
    }

    .cv-report-monitor-base {
        bottom: 24px;
        width: 190px;
    }

    .cv-report-floating-badge {
        top: -5px;
        right: 0;
    }

    .cv-growth-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-growth-benefit:last-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 500px) {

    .cv-growth-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-growth-content h2 {
        font-size: 35px;
    }

    .cv-growth-stats {
        grid-template-columns: 1fr;
    }

    .cv-report-desktop-area {
        min-height: 440px;
    }

    .cv-report-screen {
        height: 270px;
    }

    .cv-report-monitor-header {
        min-height: 45px;
    }

    .cv-report-monitor-brand {
        font-size: 8px;
    }

    .cv-report-monitor-footer {
        min-height: 38px;
    }

    .cv-report-slider-handle {
        width: 46px;
        height: 46px;
    }

    .cv-report-monitor-neck {
        bottom: 25px;
        width: 70px;
        height: 45px;
    }

    .cv-report-monitor-base {
        bottom: 12px;
        width: 150px;
        height: 18px;
    }

    .cv-report-floating-badge,
    .cv-report-large-number {
        display: none;
    }

    .cv-growth-benefits {
        grid-template-columns: 1fr;
    }

    .cv-growth-benefit:last-child {
        grid-column: auto;
    }

    .cv-growth-bottom {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .cv-growth-bottom p {
        font-size: 13px;
    }

}

/* =====================================================
   INDUSTRIES WE SERVE
   RADIAL + STAGGERED LAYOUT
===================================================== */

.cv-industries-section {
    position: relative;
    padding: 115px 24px 130px;

    background:
        radial-gradient(
            circle at 10% 18%,
            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 */

.cv-industries-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 */

.cv-industries-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-industries-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-industries-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Main Container */

.cv-industries-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-industries-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;
}

.cv-industries-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading Row */

.cv-industries-heading-row {
    margin-top: 34px;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    align-items: end;
    gap: 70px;
}

.cv-industries-heading-row h2 {
    max-width: 780px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-industries-heading-row h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-industries-heading-row p {
    max-width: 600px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.86;
}

/* =====================================================
   INDUSTRIES MAIN LAYOUT
===================================================== */

.cv-industries-layout {
    margin-top: 75px;

    display: grid;
    grid-template-columns:
        minmax(235px, 0.7fr)
        minmax(520px, 1.3fr)
        minmax(235px, 0.7fr);

    align-items: center;
    gap: 35px;
}

/* =====================================================
   SIDE COLUMNS
===================================================== */

.cv-industries-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cv-industries-column-left {
    transform: translateY(-25px);
}

.cv-industries-column-right {
    transform: translateY(25px);
}

/* Side Tile */

.cv-industry-tile {
    position: relative;

    min-height: 105px;
    padding: 18px 18px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.1),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 18px 42px 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;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.cv-industry-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-industry-tile::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;

    width: 115px;
    height: 115px;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cv-industry-tile:hover {
    transform: translateY(-6px);

    border-color: rgba(201, 162, 91, 0.62);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.16),
            rgba(248, 247, 244, 0.045)
        );
}

.cv-industry-tile:hover::before {
    width: calc(100% - 40px);
}

/* Tile Icon */

.cv-industry-icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.38);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-industry-tile:hover .cv-industry-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Tile Name */

.cv-industry-name {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}

/* Arrow */

.cv-industry-arrow {
    position: relative;
    z-index: 2;

    color: var(--brushed-gold);

    font-size: 11px;

    transition: transform 0.35s ease;
}

.cv-industry-tile:hover .cv-industry-arrow {
    transform: translateX(5px);
}

/* =====================================================
   CENTER RADIAL LAYOUT
===================================================== */

.cv-industries-center {
    position: relative;

    min-height: 575px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbits */

.cv-industries-center-orbit {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.cv-industries-center-orbit::before,
.cv-industries-center-orbit::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: inherit;
}

.cv-industries-center-orbit::before {
    inset: 27px;
}

.cv-industries-center-orbit::after {
    inset: 54px;
}

.cv-industries-center-orbit-one {
    width: 455px;
    height: 455px;
}

.cv-industries-center-orbit-two {
    width: 310px;
    height: 310px;

    border-style: dashed;
}

/* Center Hub */

.cv-industries-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;

    width: 165px;
    height: 165px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

    border: 1px solid rgba(201, 162, 91, 0.55);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(201, 162, 91, 0.22),
            rgba(19, 40, 85, 0.96) 55%,
            var(--dark-navy) 100%
        );

    box-shadow:
        0 0 0 13px rgba(201, 162, 91, 0.05),
        0 28px 65px rgba(30, 30, 30, 0.3);

    transform: translate(-50%, -50%);
}

.cv-industries-center-number {
    color: var(--warm-ivory);

    font-size: 48px;
    line-height: 1;
    font-weight: 800;
}

.cv-industries-center-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 15px;
}

/* Floating Industry Nodes */

.cv-industry-float {
    position: absolute;
    z-index: 6;

    min-width: 175px;
    min-height: 76px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.12),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 18px 40px rgba(30, 30, 30, 0.22);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.cv-industry-float:hover {
    border-color: rgba(201, 162, 91, 0.65);
}

.cv-industry-float-one {
    top: 25px;
    left: 50%;

    transform: translateX(-50%);
}

.cv-industry-float-two {
    top: 205px;
    left: 0;
}

.cv-industry-float-three {
    top: 205px;
    right: 0;
}

.cv-industry-float-four {
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);
}

.cv-industry-float-one:hover,
.cv-industry-float-four:hover {
    transform:
        translateX(-50%)
        translateY(-6px);
}

.cv-industry-float-two:hover,
.cv-industry-float-three:hover {
    transform: translateY(-6px);
}

/* Floating Icons */

.cv-industry-float-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.38);
    border-radius: 12px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 13px;
}

.cv-industry-float > span:last-child {
    color: var(--warm-ivory);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .cv-industries-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cv-industries-column {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cv-industries-column-left,
    .cv-industries-column-right {
        transform: none;
    }

    .cv-industries-center {
        order: -1;
        width: min(700px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 760px) {

    .cv-industries-section {
        padding: 80px 18px 90px;
    }

    .cv-industries-heading-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cv-industries-heading-row h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-industries-heading-row p {
        font-size: 14px;
    }

    .cv-industries-center {
        min-height: auto;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .cv-industries-center-orbit,
    .cv-industries-center-hub {
        display: none;
    }

    .cv-industry-float,
    .cv-industry-float-one,
    .cv-industry-float-two,
    .cv-industry-float-three,
    .cv-industry-float-four {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        min-width: 0;

        transform: none;
    }

    .cv-industry-float:hover,
    .cv-industry-float-one:hover,
    .cv-industry-float-two:hover,
    .cv-industry-float-three:hover,
    .cv-industry-float-four:hover {
        transform: translateY(-5px);
    }

    .cv-industries-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 500px) {

    .cv-industries-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-industries-heading-row h2 {
        font-size: 35px;
    }

    .cv-industries-center,
    .cv-industries-column {
        grid-template-columns: 1fr;
    }

    .cv-industry-tile {
        min-height: 92px;
    }

}

/* =====================================================
   AGENCY-FRIENDLY PRICING SECTION
===================================================== */

.cv-pricing-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(201, 162, 91, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 133, 88, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--warm-ivory) 0%,
            var(--light-gray) 56%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.cv-pricing-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
    );
}

.cv-pricing-glow {
    position: absolute;
    z-index: -3;

    width: 440px;
    height: 440px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-pricing-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-pricing-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

.cv-pricing-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(19, 40, 85, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.cv-pricing-ring::before,
.cv-pricing-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(19, 40, 85, 0.06);
    border-radius: inherit;
}

.cv-pricing-ring::before {
    inset: 28px;
}

.cv-pricing-ring::after {
    inset: 56px;
}

.cv-pricing-ring-one {
    width: 260px;
    height: 260px;

    top: 70px;
    right: -130px;
}

.cv-pricing-ring-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 60px;
}

/* =====================================================
   CONTAINER
===================================================== */

.cv-pricing-container {
    position: relative;
    z-index: 3;

    width: min(1380px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-pricing-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;
}

.cv-pricing-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   THREE COLUMN LAYOUT
===================================================== */

.cv-pricing-layout {
    margin-top: 42px;

    display: grid;
    grid-template-columns:
        minmax(330px, 0.82fr)
        minmax(320px, 0.78fr)
        minmax(360px, 0.95fr);

    align-items: center;
    gap: 55px;
}

/* =====================================================
   LEFT INTRO
===================================================== */

.cv-pricing-intro {
    position: relative;
}

.cv-pricing-large-number {
    position: absolute;
    top: -95px;
    left: -15px;
    z-index: -1;

    color: var(--primary-navy);

    font-size: 165px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

.cv-pricing-intro h2 {
    max-width: 620px;

    color: var(--primary-navy);

    font-size: clamp(43px, 4.8vw, 55px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-pricing-intro h2 span {
    display: block;
    margin-top: 7px;

    color: var(--brushed-gold);
}

.cv-pricing-intro > p {
    max-width: 560px;
    margin-top: 26px;

    color: var(--charcoal);

    font-size: 15px;
    line-height: 1.85;
}

/* =====================================================
   CENTER BENEFIT STACK
===================================================== */

.cv-pricing-benefits {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.cv-pricing-benefit-line {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 27px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--brushed-gold),
            transparent
        );

    opacity: 0.45;
}

.cv-pricing-benefit {
    position: relative;

    min-height: 74px;
    padding: 15px 44px 15px 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid var(--soft-beige);
    border-radius: 15px;

    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;
}

.cv-pricing-benefit:nth-child(3),
.cv-pricing-benefit:nth-child(5) {
    transform: translateX(18px);
}

.cv-pricing-benefit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;

    width: 3px;
    height: 50%;

    background: var(--brushed-gold);
    border-radius: 0 4px 4px 0;

    transition: height 0.35s ease;
}

.cv-pricing-benefit::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;

    width: 110px;
    height: 110px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

.cv-pricing-benefit:hover {
    transform: translateY(-5px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 23px 48px rgba(13, 28, 69, 0.12),
        inset 0 1px 0 var(--warm-ivory);
}

.cv-pricing-benefit:nth-child(3):hover,
.cv-pricing-benefit:nth-child(5):hover {
    transform:
        translateX(18px)
        translateY(-5px);
}

.cv-pricing-benefit:hover::before {
    height: 75%;
}

/* Check Icon */

.cv-pricing-check {
    position: relative;
    z-index: 2;
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 12px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 11px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-pricing-benefit:hover .cv-pricing-check {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(-5deg) scale(1.05);
}

.cv-pricing-benefit p {
    position: relative;
    z-index: 2;

    color: var(--primary-navy);

    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

.cv-pricing-benefit-number {
    position: absolute;
    top: 12px;
    right: 14px;

    color: var(--primary-navy);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.25;
}

/* =====================================================
   RIGHT MESSAGE
===================================================== */

.cv-pricing-message {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Quote Card */

.cv-pricing-quote {
    position: relative;

    min-height: 230px;
    padding: 40px 34px 34px;

    display: flex;
    align-items: center;

    border: 1px solid var(--soft-beige);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 28px 65px rgba(13, 28, 69, 0.2),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    overflow: hidden;
}

.cv-pricing-quote::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(201, 162, 91, 0.15);
    border-radius: 50%;

    pointer-events: none;
}

.cv-pricing-quote-mark {
    position: absolute;
    top: 24px;
    left: 28px;

    color: var(--brushed-gold);

    font-size: 25px;

    opacity: 0.8;
}

.cv-pricing-quote blockquote {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 21px;
    line-height: 1.6;
    font-weight: 800;
}

.cv-pricing-quote-line {
    position: absolute;
    left: 0;
    top: 22%;

    width: 4px;
    height: 56%;

    background: var(--brushed-gold);
}

/* Description */

.cv-pricing-description {
    position: relative;

    padding: 24px 25px;

    border: 1px solid var(--soft-beige);
    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            var(--soft-beige),
            var(--warm-ivory)
        );
}

.cv-pricing-description p {
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.85;
}

.cv-pricing-description a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-navy);

    font-weight: 800;

    border-bottom: 1px solid var(--brushed-gold);
}

.cv-pricing-description a i {
    color: var(--brushed-gold);
    font-size: 10px;

    transition: transform 0.3s ease;
}

.cv-pricing-description a:hover i {
    transform: translateX(4px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .cv-pricing-layout {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .cv-pricing-intro {
        grid-column: 1 / -1;
        max-width: 850px;
    }

    .cv-pricing-large-number {
        display: none;
    }

}

@media (max-width: 760px) {

    .cv-pricing-section {
        padding: 80px 18px 90px;
    }

    .cv-pricing-layout {
        grid-template-columns: 1fr;
    }

    .cv-pricing-intro h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-pricing-intro > p {
        font-size: 14px;
    }

    .cv-pricing-benefit,
    .cv-pricing-benefit:nth-child(3),
    .cv-pricing-benefit:nth-child(5) {
        transform: none;
    }

    .cv-pricing-benefit:hover,
    .cv-pricing-benefit:nth-child(3):hover,
    .cv-pricing-benefit:nth-child(5):hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 450px) {

    .cv-pricing-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-pricing-intro h2 {
        font-size: 35px;
    }

    .cv-pricing-quote {
        min-height: auto;
        padding: 55px 23px 28px;
    }

    .cv-pricing-quote blockquote {
        font-size: 18px;
    }

    .cv-pricing-description {
        padding: 21px;
    }

    .cv-pricing-description p {
        font-size: 13px;
    }

}

/* =====================================================
   AGENCY COMPARISON SECTION
===================================================== */

.cv-comparison-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 DECORATIONS
===================================================== */

.cv-comparison-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
    );
}

.cv-comparison-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-comparison-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-comparison-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

.cv-comparison-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cv-comparison-ring::before,
.cv-comparison-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: inherit;
}

.cv-comparison-ring::before {
    inset: 28px;
}

.cv-comparison-ring::after {
    inset: 56px;
}

.cv-comparison-ring-one {
    width: 260px;
    height: 260px;

    top: 65px;
    right: -130px;
}

.cv-comparison-ring-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 55px;
}

/* =====================================================
   CONTAINER
===================================================== */

.cv-comparison-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-comparison-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;
}

.cv-comparison-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.cv-comparison-heading {
    position: relative;
    margin-top: 34px;
}

.cv-comparison-heading h2 {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 56px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-comparison-heading h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-comparison-large-number {
    position: absolute;
    top: -80px;
    right: 15px;

    color: var(--warm-ivory);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
    pointer-events: none;
}

/* =====================================================
   COMPARISON HEADER
===================================================== */

.cv-comparison-head {
    margin-top: 58px;
    padding: 15px;

    display: grid;
    grid-template-columns:
        minmax(300px, 1.35fr)
        minmax(190px, 0.65fr)
        minmax(220px, 0.75fr);

    gap: 14px;

    border: 1px solid rgba(231, 225, 216, 0.16);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.1),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 22px 52px 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);
}

.cv-comparison-head-feature,
.cv-comparison-head-agency,
.cv-comparison-head-generic {
    min-height: 66px;
    padding: 0 20px;

    display: flex;
    align-items: center;

    border-radius: 14px;

    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-comparison-head-feature {
    color: var(--soft-beige);
}

.cv-comparison-head-agency {
    justify-content: center;
    gap: 10px;

    background: var(--brushed-gold);
    color: var(--dark-navy);
}

.cv-comparison-head-generic {
    justify-content: center;
    gap: 10px;

    border: 1px solid rgba(231, 225, 216, 0.13);

    background: rgba(248, 247, 244, 0.04);
    color: var(--soft-beige);
}

.cv-comparison-head-icon {
    width: 31px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(13, 28, 69, 0.12);

    font-size: 11px;
}

.cv-comparison-head-generic .cv-comparison-head-icon {
    background: rgba(248, 247, 244, 0.06);
}

/* =====================================================
   COMPARISON LIST
===================================================== */

.cv-comparison-list {
    margin-top: 14px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Row */

.cv-comparison-row {
    position: relative;

    min-height: 100px;
    padding: 14px;

    display: grid;
    grid-template-columns:
        minmax(300px, 1.35fr)
        minmax(190px, 0.65fr)
        minmax(220px, 0.75fr);

    align-items: stretch;
    gap: 14px;

    border: 1px solid rgba(231, 225, 216, 0.14);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.08),
            rgba(248, 247, 244, 0.025)
        );

    box-shadow:
        0 16px 38px rgba(30, 30, 30, 0.16),
        inset 0 1px 0 rgba(248, 247, 244, 0.05);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.cv-comparison-row:nth-child(even) {
    transform: translateX(22px);
}

.cv-comparison-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;

    width: 45px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-comparison-row:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 162, 91, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.13),
            rgba(248, 247, 244, 0.035)
        );
}

.cv-comparison-row:nth-child(even):hover {
    transform:
        translateX(22px)
        translateY(-5px);
}

.cv-comparison-row:hover::before {
    width: calc(100% - 56px);
}

/* =====================================================
   FEATURE CELL
===================================================== */

.cv-comparison-feature {
    position: relative;

    min-height: 72px;
    padding: 13px 48px 13px 14px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-radius: 13px;

    background: rgba(248, 247, 244, 0.035);
}

.cv-comparison-index {
    position: absolute;
    top: 11px;
    right: 13px;

    color: var(--soft-beige);

    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;

    opacity: 0.28;
}

.cv-comparison-feature-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.38);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-comparison-row:hover .cv-comparison-feature-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.05);
}

.cv-comparison-feature h3 {
    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

/* =====================================================
   OUR AGENCY VALUE
===================================================== */

.cv-comparison-agency-value {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.35);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.16),
            rgba(201, 162, 91, 0.06)
        );
}

.cv-comparison-check {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-size: 13px;

    box-shadow:
        0 10px 24px rgba(201, 162, 91, 0.18);

    transition:
        transform 0.35s ease;
}

.cv-comparison-row:hover .cv-comparison-check {
    transform: scale(1.1) rotate(-6deg);
}

/* =====================================================
   GENERIC VALUE
===================================================== */

.cv-comparison-generic-value {
    min-height: 72px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 225, 216, 0.1);
    border-radius: 13px;

    background: rgba(30, 30, 30, 0.18);
    color: var(--soft-beige);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    opacity: 0.7;
}

.cv-comparison-cross {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 50%;

    color: var(--soft-beige);

    font-size: 13px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .cv-comparison-head {
        display: none;
    }

    .cv-comparison-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cv-comparison-feature {
        grid-column: 1 / -1;
    }

    .cv-comparison-agency-value,
    .cv-comparison-generic-value {
        position: relative;
        padding-top: 28px;
    }

    .cv-comparison-agency-value::before {
        content: "Our Agency";

        position: absolute;
        top: 10px;
        left: 50%;

        color: var(--brushed-gold);

        font-size: 8px;
        letter-spacing: 1px;
        font-weight: 800;
        text-transform: uppercase;

        transform: translateX(-50%);
    }

    .cv-comparison-generic-value::before {
        content: "Generic Fulfillment";

        position: absolute;
        top: 10px;
        left: 50%;

        color: var(--soft-beige);

        font-size: 8px;
        letter-spacing: 1px;
        font-weight: 800;
        text-transform: uppercase;
        white-space: nowrap;

        transform: translateX(-50%);
    }

    .cv-comparison-row,
    .cv-comparison-row:nth-child(even) {
        transform: none;
    }

    .cv-comparison-row:hover,
    .cv-comparison-row:nth-child(even):hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 700px) {

    .cv-comparison-section {
        padding: 80px 18px 90px;
    }

    .cv-comparison-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-comparison-large-number {
        display: none;
    }

}

@media (max-width: 500px) {

    .cv-comparison-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-comparison-heading h2 {
        font-size: 35px;
    }

    .cv-comparison-row {
        grid-template-columns: 1fr;
    }

    .cv-comparison-feature,
    .cv-comparison-agency-value,
    .cv-comparison-generic-value {
        grid-column: auto;
    }

    .cv-comparison-agency-value,
    .cv-comparison-generic-value {
        min-height: 82px;
    }

    .cv-comparison-feature h3 {
        font-size: 13px;
    }

}

/* =====================================================
   FREQUENTLY ASKED QUESTIONS
===================================================== */

.cv-faq-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 */

.cv-faq-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 */

.cv-faq-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-faq-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-faq-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Decorative Rings */

.cv-faq-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(19, 40, 85, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.cv-faq-ring::before,
.cv-faq-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(19, 40, 85, 0.06);
    border-radius: inherit;
}

.cv-faq-ring::before {
    inset: 28px;
}

.cv-faq-ring::after {
    inset: 56px;
}

.cv-faq-ring-one {
    width: 260px;
    height: 260px;

    top: 65px;
    right: -130px;
}

.cv-faq-ring-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 55px;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.cv-faq-container {
    position: relative;
    z-index: 3;

    width: min(1260px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(310px, 0.65fr)
        minmax(0, 1.35fr);

    align-items: start;
    gap: 75px;
}

/* =====================================================
   LEFT STICKY INTRO
===================================================== */

.cv-faq-intro {
    position: sticky;
    top: 115px;

    min-height: 470px;
    padding: 35px 32px;

    border: 1px solid var(--soft-beige);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            var(--warm-ivory),
            var(--light-gray)
        );

    box-shadow:
        0 28px 65px rgba(13, 28, 69, 0.1),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;
}

.cv-faq-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;

    width: 75px;
    height: 3px;

    background: var(--brushed-gold);
}

.cv-faq-intro::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -135px;

    width: 290px;
    height: 290px;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    pointer-events: none;
}

/* Label */

.cv-faq-label {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--natural-oak);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-faq-label-line {
    width: 34px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.cv-faq-intro h2 {
    position: relative;
    z-index: 2;

    margin-top: 30px;

    color: var(--primary-navy);

    font-size: clamp(43px, 4.5vw, 64px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-faq-intro h2 span {
    display: block;
    color: var(--brushed-gold);
}

/* Large Number */

.cv-faq-large-number {
    position: absolute;
    right: 25px;
    bottom: 10px;
    z-index: 1;

    color: var(--primary-navy);

    font-size: 125px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
}

/* Decorative Lines */

.cv-faq-intro-decoration {
    position: relative;
    z-index: 2;

    width: 150px;
    margin-top: 65px;

    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cv-faq-intro-decoration span {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--brushed-gold),
            transparent
        );
}

.cv-faq-intro-decoration span:nth-child(1) {
    width: 100%;
}

.cv-faq-intro-decoration span:nth-child(2) {
    width: 72%;
}

.cv-faq-intro-decoration span:nth-child(3) {
    width: 44%;
}

/* =====================================================
   FAQ LIST
===================================================== */

.cv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Individual FAQ */

.cv-faq-item {
    position: relative;

    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.06),
        inset 0 1px 0 var(--warm-ivory);

    overflow: hidden;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.cv-faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;

    width: 42px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--brushed-gold);
}

.cv-faq-item-active {
    border-color: var(--brushed-gold);

    box-shadow:
        0 24px 55px rgba(13, 28, 69, 0.12),
        inset 0 1px 0 var(--warm-ivory);
}

.cv-faq-item-active::before {
    width: calc(100% - 48px);
}

/* Question Button */

.cv-faq-question {
    position: relative;

    width: 100%;
    min-height: 92px;
    padding: 20px 22px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;

    border: none;
    outline: none;

    background: transparent;
    cursor: pointer;

    text-align: left;
}

/* Number */

.cv-faq-number {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 13px;

    background: var(--soft-beige);
    color: var(--primary-navy);

    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 800;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-faq-item-active .cv-faq-number {
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: rotate(-4deg);
}

/* Question Text */

.cv-faq-question-text {
    color: var(--primary-navy);

    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
}

/* Toggle */

.cv-faq-toggle {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brushed-gold);
    border-radius: 12px;

    background: var(--warm-ivory);
    color: var(--primary-navy);

    font-size: 12px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-faq-item-active .cv-faq-toggle {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(45deg);
}

/* =====================================================
   FAQ ANSWER
===================================================== */

.cv-faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}

.cv-faq-item-active .cv-faq-answer {
    grid-template-rows: 1fr;
}

.cv-faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.cv-faq-answer-inner p {
    margin: 0 22px 25px 81px;
    padding: 20px 22px;

    border-left: 3px solid var(--brushed-gold);
    border-radius: 0 13px 13px 0;

    background: var(--soft-beige);
    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .cv-faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cv-faq-intro {
        position: relative;
        top: auto;

        min-height: auto;
    }

    .cv-faq-intro-decoration,
    .cv-faq-large-number {
        display: none;
    }

}

@media (max-width: 700px) {

    .cv-faq-section {
        padding: 80px 18px 90px;
    }

    .cv-faq-intro {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .cv-faq-intro h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-faq-question {
        min-height: 82px;
        padding: 17px;
        gap: 13px;
    }

    .cv-faq-question-text {
        font-size: 14px;
    }

    .cv-faq-answer-inner p {
        margin:
            0 17px 20px 70px;

        padding: 17px 18px;

        font-size: 13px;
    }

}

@media (max-width: 500px) {

    .cv-faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-faq-intro h2 {
        font-size: 35px;
    }

    .cv-faq-question {
        grid-template-columns: 1fr auto;
    }

    .cv-faq-number {
        display: none;
    }

    .cv-faq-toggle {
        width: 36px;
        height: 36px;
    }

    .cv-faq-answer-inner p {
        margin:
            0 15px 18px;

        padding: 16px 17px;
    }

}

/* =====================================================
   AGENCY FEEDBACK SECTION
   NORMAL THREE-CARD LAYOUT
===================================================== */

.cv-feedback-section {
    position: relative;
    padding: 110px 24px 120px;

    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(201, 162, 91, 0.15),
            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 */

.cv-feedback-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 */

.cv-feedback-glow {
    position: absolute;
    z-index: -3;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    filter: blur(120px);

    pointer-events: none;
}

.cv-feedback-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-feedback-glow-two {
    right: -220px;
    bottom: -230px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* Container */

.cv-feedback-container {
    position: relative;
    z-index: 3;

    width: min(1280px, 100%);
    margin: 0 auto;
}

/* Section label */

.cv-feedback-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;
}

.cv-feedback-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* Heading */

.cv-feedback-heading {
    position: relative;
    margin-top: 34px;
}

.cv-feedback-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;
}

.cv-feedback-heading h2 span {
    color: var(--brushed-gold);
}

.cv-feedback-large-number {
    position: absolute;
    top: -85px;
    right: 20px;

    color: var(--warm-ivory);

    font-size: 145px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.04;
    pointer-events: none;
}

/* Cards layout */

.cv-feedback-cards {
    margin-top: 60px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Individual card */

.cv-feedback-card {
    position: relative;

    min-height: 350px;
    padding: 34px 30px 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.11),
            rgba(248, 247, 244, 0.035)
        );

    box-shadow:
        0 22px 52px 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;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* Gold accent */

.cv-feedback-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;

    width: 52px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

/* Decorative circle */

.cv-feedback-card::after {
    content: "";
    position: absolute;
    right: -68px;
    bottom: -78px;

    width: 175px;
    height: 175px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

.cv-feedback-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 91, 0.62);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.15),
            rgba(248, 247, 244, 0.045)
        );

    box-shadow:
        0 30px 65px rgba(30, 30, 30, 0.26),
        inset 0 1px 0 rgba(248, 247, 244, 0.09);
}

.cv-feedback-card:hover::before {
    width: calc(100% - 60px);
}

/* Card number */

.cv-feedback-card-number {
    position: absolute;
    top: 21px;
    right: 23px;

    color: var(--warm-ivory);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.4px;
    font-weight: 800;

    opacity: 0.3;
}

/* Quote icon */

.cv-feedback-quote-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;
    margin-bottom: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 17px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 22px;

    transform: rotate(-4deg);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.cv-feedback-card:hover .cv-feedback-quote-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Testimonial text */

.cv-feedback-card blockquote {
    position: relative;
    z-index: 2;

    color: var(--warm-ivory);

    font-size: 18px;
    line-height: 1.7;
    font-weight: 800;
}

/* Author */

.cv-feedback-author {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 34px;

    display: flex;
    align-items: center;
    gap: 14px;
}

.cv-feedback-avatar {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    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 11px 25px rgba(30, 30, 30, 0.18);
}

.cv-feedback-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cv-feedback-author-info strong {
    color: var(--warm-ivory);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.cv-feedback-author-info p {
    color: var(--soft-beige);

    font-size: 11px;
    line-height: 1.4;

    opacity: 0.65;
}

/* Responsive */

@media (max-width: 950px) {

    .cv-feedback-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cv-feedback-card:last-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 700px) {

    .cv-feedback-section {
        padding: 80px 18px 90px;
    }

    .cv-feedback-heading h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-feedback-large-number {
        display: none;
    }

}

@media (max-width: 560px) {

    .cv-feedback-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-feedback-heading h2 {
        font-size: 35px;
    }

    .cv-feedback-cards {
        grid-template-columns: 1fr;
    }

    .cv-feedback-card,
    .cv-feedback-card:last-child {
        grid-column: auto;
        min-height: auto;
        padding: 29px 23px 26px;
    }

    .cv-feedback-card blockquote {
        font-size: 16px;
    }

    .cv-feedback-author {
        padding-top: 28px;
    }

}

/* =====================================================
   LINK BUILDING BLOG
   EDITORIAL ARTICLE STRIP LAYOUT
===================================================== */

.cv-blog-section {
    position: relative;
    padding: 115px 24px 125px;

    background:
        radial-gradient(
            circle at 8% 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) 55%,
            var(--soft-beige) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.cv-blog-background-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
    );
}

.cv-blog-glow {
    position: absolute;
    z-index: -3;

    width: 450px;
    height: 450px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-blog-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-blog-glow-two {
    right: -230px;
    bottom: -240px;

    background: var(--natural-oak);
    opacity: 0.14;
}

/* =====================================================
   CONTAINER
===================================================== */

.cv-blog-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.cv-blog-heading-wrap {
    position: relative;
    max-width: 900px;
}

.cv-blog-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;
}

.cv-blog-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

.cv-blog-heading-wrap h2 {
    position: relative;
    z-index: 2;

    margin-top: 30px;

    color: var(--primary-navy);

    font-size: clamp(44px, 5vw, 60px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-blog-heading-wrap h2 span {
    color: var(--brushed-gold);
}

.cv-blog-heading-number {
    position: absolute;
    top: -65px;
    right: -250px;

    color: var(--primary-navy);

    font-size: 150px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

/* =====================================================
   EDITORIAL LIST
===================================================== */

.cv-blog-editorial-list {
    margin-top: 70px;

    display: flex;
    flex-direction: column;
}

/* =====================================================
   INDIVIDUAL BLOG ROW
===================================================== */

.cv-blog-editorial-row {
    position: relative;

    min-height: 275px;
    padding: 26px 0;

    display: grid;
    grid-template-columns:
        110px
        minmax(300px, 0.82fr)
        minmax(420px, 1.18fr);

    align-items: stretch;
    gap: 30px;

    border-top: 1px solid var(--soft-beige);

    transition:
        padding 0.4s ease,
        transform 0.4s ease;
}

.cv-blog-editorial-row:last-child {
    border-bottom: 1px solid var(--soft-beige);
}

.cv-blog-editorial-row:hover {
    padding-left: 15px;
    padding-right: 15px;
}

/* Reverse row */

.cv-blog-editorial-row-reverse {
    grid-template-columns:
        110px
        minmax(420px, 1.18fr)
        minmax(300px, 0.82fr);
}

.cv-blog-editorial-row-reverse .cv-blog-visual {
    grid-column: 3;
}

.cv-blog-editorial-row-reverse .cv-blog-content {
    grid-column: 2;
    grid-row: 1;
}

/* =====================================================
   LARGE INDEX
===================================================== */

.cv-blog-index {
    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid var(--soft-beige);
}

.cv-blog-index span {
    color: var(--primary-navy);

    font-size: 54px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 800;

    opacity: 0.12;

    transition:
        color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.cv-blog-editorial-row:hover .cv-blog-index span {
    color: var(--brushed-gold);
    opacity: 1;

    transform: rotate(-5deg);
}

/* =====================================================
   VISUAL PANEL
===================================================== */

.cv-blog-visual {
    position: relative;

    min-height: 220px;

    display: flex;
    align-items: flex-end;

    border: 1px solid var(--soft-beige);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--primary-navy),
            var(--dark-navy)
        );

    box-shadow:
        0 22px 50px rgba(13, 28, 69, 0.15);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.cv-blog-editorial-row:hover .cv-blog-visual {
    transform: translateY(-7px);

    border-color: var(--brushed-gold);

    box-shadow:
        0 30px 65px rgba(13, 28, 69, 0.22);
}

/* Pattern */

.cv-blog-visual-pattern {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            135deg,
            rgba(248, 247, 244, 0.055) 25%,
            transparent 25%
        ),
        linear-gradient(
            225deg,
            rgba(248, 247, 244, 0.055) 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            rgba(248, 247, 244, 0.035) 25%,
            transparent 25%
        ),
        linear-gradient(
            315deg,
            rgba(248, 247, 244, 0.035) 25%,
            var(--dark-navy) 25%
        );

    background-position:
        14px 0,
        14px 0,
        0 0,
        0 0;

    background-size: 28px 28px;

    transition: transform 0.7s ease;
}

.cv-blog-editorial-row:hover .cv-blog-visual-pattern {
    transform: scale(1.08) rotate(1deg);
}

/* Gold glow */

.cv-blog-visual::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: var(--brushed-gold);
    filter: blur(80px);
    opacity: 0.17;
}

/* Bottom line */

.cv-blog-visual::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;

    width: 50px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.4s ease;
}

.cv-blog-editorial-row:hover .cv-blog-visual::after {
    width: calc(100% - 48px);
}

/* Visual icon */

.cv-blog-visual-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 16px;

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    font-size: 18px;

    transform: rotate(-4deg);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.cv-blog-editorial-row:hover .cv-blog-visual-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.06);
}

/* Large visual word */

.cv-blog-visual-word {
    position: relative;
    z-index: 2;

    padding: 25px;

    color: var(--warm-ivory);

    font-size: clamp(25px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 800;

    opacity: 0.92;
}

/* =====================================================
   BLOG CONTENT
===================================================== */

.cv-blog-content {
    position: relative;

    padding: 25px 25px 25px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-blog-editorial-row-reverse .cv-blog-content {
    padding-right: 0;
    padding-left: 25px;
}

/* Category */

.cv-blog-category {
    width: fit-content;

    color: var(--natural-oak);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.7px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-blog-category::after {
    content: "";

    display: inline-block;

    width: 28px;
    height: 1px;
    margin-left: 11px;

    vertical-align: middle;

    background: var(--brushed-gold);
}

/* Title */

.cv-blog-content h3 {
    max-width: 650px;
    margin-top: 19px;

    color: var(--primary-navy);

    font-size: clamp(24px, 2.7vw, 37px);
    line-height: 1.22;
    letter-spacing: -1.2px;
    font-weight: 800;

    transition: color 0.35s ease;
}

.cv-blog-editorial-row:hover .cv-blog-content h3 {
    color: var(--natural-oak);
}

/* Description */

.cv-blog-content > p {
    max-width: 610px;
    margin-top: 17px;

    color: var(--charcoal);

    font-size: 14px;
    line-height: 1.75;
}

/* Meta */

.cv-blog-meta {
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cv-blog-meta > span {
    color: var(--charcoal);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.4px;
    font-weight: 800;
    text-transform: uppercase;

    opacity: 0.6;
}

.cv-blog-meta a {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--soft-beige);
    border-radius: 50%;

    background: var(--warm-ivory);
    color: var(--primary-navy);

    font-size: 11px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.cv-blog-editorial-row:hover .cv-blog-meta a {
    border-color: var(--brushed-gold);
    background: var(--primary-navy);
    color: var(--brushed-gold);

    transform: translateX(6px);
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 950px) {

    .cv-blog-editorial-row,
    .cv-blog-editorial-row-reverse {
        grid-template-columns: 75px 1fr;
        gap: 22px;
    }

    .cv-blog-index {
        grid-row: 1 / 3;
    }

    .cv-blog-visual,
    .cv-blog-editorial-row-reverse .cv-blog-visual {
        grid-column: 2;
        grid-row: 1;
    }

    .cv-blog-content,
    .cv-blog-editorial-row-reverse .cv-blog-content {
        grid-column: 2;
        grid-row: 2;

        padding: 10px 0 25px;
    }

    .cv-blog-index span {
        font-size: 42px;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 650px) {

    .cv-blog-section {
        padding: 80px 18px 90px;
    }

    .cv-blog-heading-wrap h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-blog-heading-number {
        display: none;
    }

    .cv-blog-editorial-list {
        margin-top: 50px;
    }

    .cv-blog-editorial-row,
    .cv-blog-editorial-row-reverse {
        padding: 24px 0;

        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cv-blog-editorial-row:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .cv-blog-index {
        grid-column: 1;
        grid-row: 1;

        width: fit-content;
        padding-right: 18px;

        border-right: none;
        border-bottom: 1px solid var(--brushed-gold);
    }

    .cv-blog-index span {
        font-size: 34px;
    }

    .cv-blog-visual,
    .cv-blog-editorial-row-reverse .cv-blog-visual {
        grid-column: 1;
        grid-row: 2;

        min-height: 230px;
    }

    .cv-blog-content,
    .cv-blog-editorial-row-reverse .cv-blog-content {
        grid-column: 1;
        grid-row: 3;

        padding: 8px 0 20px;
    }

    .cv-blog-content h3 {
        font-size: 27px;
    }

}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .cv-blog-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-blog-heading-wrap h2 {
        font-size: 35px;
    }

    .cv-blog-visual {
        min-height: 205px;
        border-radius: 18px;
    }

    .cv-blog-visual-word {
        font-size: 29px;
    }

    .cv-blog-content h3 {
        font-size: 23px;
    }

    .cv-blog-content > p {
        font-size: 13px;
    }

}

/* =====================================================
   CONTACT / PROPOSAL SECTION
===================================================== */

.cv-contact-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.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-navy) 0%,
            var(--primary-navy) 55%,
            var(--dark-navy) 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND
===================================================== */

.cv-contact-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) 9%,
        var(--charcoal) 91%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 9%,
        var(--charcoal) 91%,
        transparent
    );
}

.cv-contact-glow {
    position: absolute;
    z-index: -3;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    filter: blur(125px);

    pointer-events: none;
}

.cv-contact-glow-one {
    top: -230px;
    left: -230px;

    background: var(--brushed-gold);
    opacity: 0.18;
}

.cv-contact-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.14;
}

.cv-contact-ring {
    position: absolute;
    z-index: -2;

    border: 1px solid rgba(201, 162, 91, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cv-contact-ring::before,
.cv-contact-ring::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: inherit;
}

.cv-contact-ring::before {
    inset: 28px;
}

.cv-contact-ring::after {
    inset: 56px;
}

.cv-contact-ring-one {
    width: 260px;
    height: 260px;

    top: 65px;
    right: -130px;
}

.cv-contact-ring-two {
    width: 210px;
    height: 210px;

    left: -110px;
    bottom: 55px;
}

/* =====================================================
   CONTAINER
===================================================== */

.cv-contact-container {
    position: relative;
    z-index: 3;

    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Section Label */

.cv-contact-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;
}

.cv-contact-label-line {
    width: 40px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.cv-contact-layout {
    margin-top: 40px;

    display: grid;
    grid-template-columns:
        minmax(360px, 0.85fr)
        minmax(520px, 1.15fr);

    align-items: center;
    gap: 85px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.cv-contact-content {
    position: relative;
}

.cv-contact-large-number {
    position: absolute;
    top: -95px;
    left: -18px;
    z-index: -1;

    color: var(--warm-ivory);

    font-size: 165px;
    line-height: 1;
    font-weight: 800;

    opacity: 0.035;
    pointer-events: none;
}

.cv-contact-content h2 {
    max-width: 700px;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.07;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.cv-contact-content h2 span {
    display: block;
    color: var(--brushed-gold);
}

.cv-contact-intro {
    max-width: 620px;
    margin-top: 26px;

    color: var(--soft-beige);

    font-size: 15px;
    line-height: 1.85;

    opacity: 0.87;
}

/* Contact Information */

.cv-contact-info-list {
    margin-top: 48px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.cv-contact-info-item {
    position: relative;

    min-height: 98px;
    padding: 17px 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.09),
            rgba(248, 247, 244, 0.025)
        );

    box-shadow:
        0 16px 38px rgba(30, 30, 30, 0.17),
        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;
}

.cv-contact-info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;

    width: 35px;
    height: 3px;

    background: var(--brushed-gold);

    transition: width 0.35s ease;
}

.cv-contact-info-item:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 162, 91, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.13),
            rgba(248, 247, 244, 0.035)
        );
}

.cv-contact-info-item:hover::before {
    width: calc(100% - 36px);
}

.cv-contact-info-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.38);
    border-radius: 13px;

    background: rgba(201, 162, 91, 0.1);
    color: var(--brushed-gold);

    font-size: 14px;

    transform: rotate(-4deg);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.cv-contact-info-item:hover .cv-contact-info-icon {
    background: var(--brushed-gold);
    color: var(--dark-navy);

    transform: rotate(0deg) scale(1.05);
}

.cv-contact-info-text {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cv-contact-info-text strong {
    color: var(--warm-ivory);

    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
}

.cv-contact-info-text p,
.cv-contact-info-text a {
    color: var(--soft-beige);

    font-size: 11px;
    line-height: 1.5;

    opacity: 0.72;
}

.cv-contact-info-text a {
    overflow-wrap: anywhere;
}

.cv-contact-info-text a:hover {
    color: var(--brushed-gold);
    opacity: 1;
}

/* =====================================================
   RIGHT FORM SIDE
===================================================== */

.cv-contact-form-side {
    position: relative;
    padding: 18px;
}

.cv-contact-form-decoration {
    position: absolute;
    inset: 35px 0 0 42px;
    z-index: 1;

    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.09),
            rgba(248, 247, 244, 0.025)
        );

    transform: rotate(3deg);
}

/* Main Form */

.cv-contact-form {
    position: relative;
    z-index: 4;

    padding: 34px;

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.13),
            rgba(248, 247, 244, 0.045)
        );

    box-shadow:
        0 35px 80px rgba(30, 30, 30, 0.28),
        inset 0 1px 0 rgba(248, 247, 244, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;
}

.cv-contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;

    width: 95px;
    height: 3px;

    background: var(--brushed-gold);
}

.cv-contact-form::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -100px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

/* Form Top */

.cv-contact-form-top {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cv-contact-form-icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 91, 0.42);
    border-radius: 15px;

    background: rgba(201, 162, 91, 0.11);
    color: var(--brushed-gold);

    font-size: 17px;

    transform: rotate(-4deg);
}

.cv-contact-form-number {
    color: var(--warm-ivory);

    font-size: 10px;
    letter-spacing: 1.3px;
    font-weight: 800;

    opacity: 0.28;
}

/* Form Grid */

.cv-contact-form-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

.cv-contact-field {
    min-width: 0;
}

.cv-contact-field-full {
    grid-column: 1 / -1;
}

.cv-contact-field label {
    display: block;
    margin-bottom: 9px;

    color: var(--soft-beige);

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.25px;
    font-weight: 800;
    text-transform: uppercase;

    opacity: 0.66;
}

/* Inputs */

.cv-contact-input-wrap,
.cv-contact-select-wrap,
.cv-contact-textarea-wrap {
    position: relative;
}

.cv-contact-input-wrap > i,
.cv-contact-select-wrap > i,
.cv-contact-textarea-wrap > i {
    position: absolute;
    left: 16px;
    z-index: 3;

    color: var(--brushed-gold);

    font-size: 12px;

    pointer-events: none;
}

.cv-contact-input-wrap > i,
.cv-contact-select-wrap > i {
    top: 50%;
    transform: translateY(-50%);
}

.cv-contact-textarea-wrap > i {
    top: 17px;
}

.cv-contact-form input,
.cv-contact-form select,
.cv-contact-form textarea {
    width: 100%;

    border: 1px solid rgba(231, 225, 216, 0.17);
    border-radius: 11px;
    outline: none;

    background: rgba(30, 30, 30, 0.3);
    color: var(--warm-ivory);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cv-contact-form input,
.cv-contact-form select {
    height: 54px;
    padding: 0 15px 0 43px;
}

.cv-contact-form textarea {
    min-height: 125px;
    padding: 15px 15px 15px 43px;

    resize: vertical;
}

.cv-contact-form input::placeholder,
.cv-contact-form textarea::placeholder {
    color: var(--soft-beige);
    opacity: 0.48;
}

.cv-contact-form select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--soft-beige) 50%
        ),
        linear-gradient(
            135deg,
            var(--soft-beige) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 23px,
        calc(100% - 14px) 23px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.cv-contact-form select option {
    background: var(--dark-navy);
    color: var(--warm-ivory);
}

.cv-contact-form input:focus,
.cv-contact-form select:focus,
.cv-contact-form textarea:focus {
    border-color: var(--brushed-gold);

    background: rgba(30, 30, 30, 0.44);

    box-shadow:
        0 0 0 4px rgba(201, 162, 91, 0.1);
}

/* Validation Error */

.cv-contact-form input.cv-field-error,
.cv-contact-form select.cv-field-error,
.cv-contact-form textarea.cv-field-error {
    border-color: var(--natural-oak);
}

/* Hidden Honeypot */

.cv-contact-hidden-field {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}

/* =====================================================
   FORM MESSAGE
===================================================== */

.cv-contact-form-message {
    position: relative;
    z-index: 5;

    display: none;
    margin-bottom: 20px;
    padding: 16px 18px;

    border-radius: 12px;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;

    animation: cvContactMessageIn 0.4s ease;
}

.cv-contact-form-message.cv-message-success {
    display: block;

    border: 1px solid var(--brushed-gold);

    background:
        linear-gradient(
            135deg,
            rgba(201, 162, 91, 0.18),
            rgba(248, 247, 244, 0.06)
        );

    color: var(--warm-ivory);

    box-shadow:
        0 14px 30px rgba(30, 30, 30, 0.16);
}

.cv-contact-form-message.cv-message-error {
    display: block;

    border: 1px solid var(--natural-oak);

    background: rgba(184, 133, 88, 0.14);
    color: var(--warm-ivory);
}

.cv-contact-form-message.cv-message-success::before {
    content: "\f00c";

    width: 29px;
    height: 29px;
    margin-right: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;

    vertical-align: middle;
}

@keyframes cvContactMessageIn {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.cv-contact-submit {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid var(--brushed-gold);
    border-radius: 11px;

    background: var(--brushed-gold);
    color: var(--dark-navy);

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 14px 30px rgba(201, 162, 91, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.cv-contact-submit:hover {
    background: var(--natural-oak);
    color: var(--warm-ivory);

    transform: translateY(-3px);
}

.cv-contact-submit i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.cv-contact-submit:hover i {
    transform: translateX(5px);
}

.cv-contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
}

/* Loader */

.cv-contact-submit-loader {
    display: none;

    width: 17px;
    height: 17px;

    border: 2px solid rgba(13, 28, 69, 0.25);
    border-top-color: var(--dark-navy);
    border-radius: 50%;

    animation: cvContactSpin 0.75s linear infinite;
}

.cv-contact-submit.cv-contact-loading i {
    display: none;
}

.cv-contact-submit.cv-contact-loading
.cv-contact-submit-loader {
    display: inline-block;
}

@keyframes cvContactSpin {

    to {
        transform: rotate(360deg);
    }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .cv-contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cv-contact-content {
        max-width: 850px;
    }

    .cv-contact-form-side {
        width: min(800px, 100%);
        margin: 0 auto;
    }

}

@media (max-width: 700px) {

    .cv-contact-section {
        padding: 80px 18px 90px;
    }

    .cv-contact-content h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-contact-large-number {
        display: none;
    }

    .cv-contact-info-list {
        grid-template-columns: 1fr;
    }

    .cv-contact-form-side {
        padding: 0;
    }

    .cv-contact-form-decoration {
        display: none;
    }

    .cv-contact-form {
        padding: 29px 23px;
        border-radius: 21px;
    }

    .cv-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .cv-contact-field-full {
        grid-column: auto;
    }

}

@media (max-width: 450px) {

    .cv-contact-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-contact-content h2 {
        font-size: 35px;
    }

    .cv-contact-intro {
        font-size: 14px;
    }

    .cv-contact-form {
        padding: 27px 19px;
    }

    .cv-contact-form input,
    .cv-contact-form select {
        height: 52px;
    }

    .cv-contact-submit {
        min-height: 55px;
    }

}

/* =====================================================
   FINAL AGENCY CTA SECTION
===================================================== */

.cv-final-cta-section {
    position: relative;

    min-height: 720px;
    padding: 100px 24px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.cv-final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -6;

    background-image:
        url("../images/final-agency-cta.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.04);

    transition: transform 1.2s ease;
}

.cv-final-cta-section:hover .cv-final-cta-bg {
    transform: scale(1.08);
}

/* =====================================================
   DARK OVERLAY
===================================================== */

.cv-final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -5;

    background:
        linear-gradient(
            115deg,
            rgba(13, 28, 69, 0.97) 0%,
            rgba(19, 40, 85, 0.92) 48%,
            rgba(13, 28, 69, 0.88) 100%
        );
}

/* =====================================================
   BACKGROUND GRID
===================================================== */

.cv-final-cta-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) 14%,
        var(--charcoal) 86%,
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        var(--charcoal) 14%,
        var(--charcoal) 86%,
        transparent
    );
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.cv-final-cta-glow {
    position: absolute;
    z-index: -3;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    filter: blur(130px);

    pointer-events: none;
}

.cv-final-cta-glow-one {
    top: -220px;
    left: -220px;

    background: var(--brushed-gold);
    opacity: 0.2;
}

.cv-final-cta-glow-two {
    right: -240px;
    bottom: -250px;

    background: var(--natural-oak);
    opacity: 0.16;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.cv-final-cta-container {
    position: relative;
    z-index: 3;

    width: min(1240px, 100%);
    margin: 0 auto;
}

/* =====================================================
   GLASS CTA PANEL
===================================================== */

.cv-final-cta-panel {
    position: relative;

    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 65px 62px;

    border: 1px solid rgba(231, 225, 216, 0.18);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.13),
            rgba(248, 247, 244, 0.04)
        );

    box-shadow:
        0 40px 90px rgba(30, 30, 30, 0.32),
        inset 0 1px 0 rgba(248, 247, 244, 0.09);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    text-align: center;
    overflow: hidden;
}

/* Top gold line */

.cv-final-cta-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 115px;
    height: 3px;

    background: var(--brushed-gold);

    transform: translateX(-50%);
}

/* Decorative circle */

.cv-final-cta-panel::after {
    content: "";
    position: absolute;
    right: -125px;
    bottom: -145px;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(201, 162, 91, 0.15);
    border-radius: 50%;

    pointer-events: none;
}

/* =====================================================
   LABEL
===================================================== */

.cv-final-cta-label {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    color: var(--brushed-gold);

    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.4px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-final-cta-label-line {
    width: 36px;
    height: 1px;

    background: var(--brushed-gold);
}

/* =====================================================
   HEADING
===================================================== */

.cv-final-cta-panel h2 {
    position: relative;
    z-index: 3;

    max-width: 900px;
    margin: 28px auto 0;

    color: var(--warm-ivory);

    font-size: clamp(44px, 5.3vw, 66px);
    line-height: 1.12;
    letter-spacing: -3px;
    font-weight: 800;
}

.cv-final-cta-panel h2 span {
    display: block;
    margin-top: 8px;

    color: var(--brushed-gold);
}

/* =====================================================
   PARAGRAPH
===================================================== */

.cv-final-cta-panel > p {
    position: relative;
    z-index: 3;

    max-width: 760px;
    margin: 28px auto 0;

    color: var(--soft-beige);

    font-size: 16px;
    line-height: 1.85;

    opacity: 0.9;
}

/* =====================================================
   CTA BUTTONS
===================================================== */

.cv-final-cta-actions {
    position: relative;
    z-index: 3;

    margin-top: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cv-final-cta-primary,
.cv-final-cta-secondary {
    min-height: 58px;
    padding: 0 25px;

    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 Button */

.cv-final-cta-primary {
    border: 1px solid var(--brushed-gold);

    background: var(--brushed-gold);
    color: var(--dark-navy);

    box-shadow:
        0 15px 32px rgba(201, 162, 91, 0.24);
}

.cv-final-cta-primary:hover {
    background: var(--natural-oak);
    color: var(--warm-ivory);

    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(201, 162, 91, 0.28);
}

.cv-final-cta-primary i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.cv-final-cta-primary:hover i {
    transform: translateX(5px);
}

/* Secondary Buttons */

.cv-final-cta-secondary {
    border: 1px solid rgba(231, 225, 216, 0.24);

    background: rgba(248, 247, 244, 0.045);
    color: var(--warm-ivory);
}

.cv-final-cta-secondary:hover {
    border-color: var(--brushed-gold);

    background: rgba(201, 162, 91, 0.12);
    color: var(--brushed-gold);

    transform: translateY(-4px);
}

.cv-final-cta-secondary i {
    color: var(--brushed-gold);
    font-size: 12px;
}

/* =====================================================
   BOTTOM DECORATIVE LINE
===================================================== */

.cv-final-cta-bottom-line {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 3;

    width: 220px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brushed-gold),
            transparent
        );

    transform: translateX(-50%);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .cv-final-cta-section {
        min-height: auto;
        padding: 90px 22px;
    }

    .cv-final-cta-panel {
        padding: 60px 42px 54px;
    }

}

@media (max-width: 650px) {

    .cv-final-cta-section {
        padding: 75px 18px;
    }

    .cv-final-cta-panel {
        padding: 50px 24px 44px;
        border-radius: 23px;
    }

    .cv-final-cta-panel h2 {
        font-size: 41px;
        letter-spacing: -1.8px;
    }

    .cv-final-cta-panel > p {
        font-size: 14px;
    }

    .cv-final-cta-actions {
        flex-direction: column;
    }

    .cv-final-cta-primary,
    .cv-final-cta-secondary {
        width: 100%;
    }

}

@media (max-width: 450px) {

    .cv-final-cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-final-cta-panel {
        padding: 45px 19px 40px;
    }

    .cv-final-cta-panel h2 {
        font-size: 35px;
    }

    .cv-final-cta-label {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .cv-final-cta-primary,
    .cv-final-cta-secondary {
        min-height: 55px;
        padding-left: 18px;
        padding-right: 18px;
    }

}