  /* ==========================================
           GLOBAL FOUNDATION (WHOLE WEBSITE)
        ========================================== */
        :root {
            /* Fonts */
            --font-heading: 'Noto Serif', serif;
            --font-body: 'Inter', sans-serif;

            /* Colors */
            --primary: #C5A059;
            --secondary: #0A192F;
            --heading-color: #080F1A;
            --body-color: #3D4A5A;
            --white: #ffffff;
            --black: #000000;
            --border-color: #E7E7E7;
            --light-bg: #F7F7F7;

            /* Typography */
            --h1: 72px;
            --h2: 56px;
            --h3: 42px;
            --h4: 32px;
            --h5: 24px;
            --h6: 20px;

            --body-lg: 20px;
            --body-md: 18px;
            --body-sm: 16px;
            --body-xs: 14px;

            /* Layout */
            --container-width: 1440px;
            --section-space: 100px;
            --transition: all 0.35s ease;
            --header-height: 102px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--body-color);
            padding-top: var(--header-height);
        }

        h1,h2,h3,h4,h5,h6 {
            font-family: var(--font-heading);
            color: var(--heading-color);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        .container-custom {
            max-width: var(--container-width);
        }

        /* ==========================================
           BUTTONS
        ========================================== */
      .btn-evogue {
        background: var(--secondary);
        color: var(--white);
        border: 1px solid var(--secondary);
        min-width: 185px;
        height: 54px;
        padding: 0 34px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        border-radius: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-evogue:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

        /* ==========================================
           HEADER
        ========================================== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: #f3f3f3;
            z-index: 9999;
            transition: var(--transition);
        }

        .site-header.scrolled {
            background: rgba(255,255,255,0.97);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            backdrop-filter: blur(10px);
        }

        .navbar {
            min-height: var(--header-height);
            padding: 0;
        }

        /* Logo */
        .navbar-brand {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 6px;
            color: var(--secondary);
            text-transform: uppercase;
            margin-right: 0;
        }

        .navbar-brand span {
            color: var(--primary);
        }

        .navbar-brand:hover {
            color: var(--secondary);
        }

        /* Nav */
        .navbar-nav {
            gap: 34px;
        }

        .navbar-nav .nav-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--heading-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0 !important;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary);
        }

        /* Mobile Toggle */
        .navbar-toggler {
            border: none;
            padding: 0;
            box-shadow: none !important;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 28px;
            height: 20px;
            position: relative;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-icon span {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            left: 0;
            transition: var(--transition);
        }

        .navbar-toggler-icon::before {
            top: 0;
        }

        .navbar-toggler-icon span {
            top: 9px;
        }

        .navbar-toggler-icon::after {
            bottom: 0;
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .navbar-nav {
                gap: 22px;
            }

            .navbar-nav .nav-link {
                font-size: 12px;
            }
        }

        @media (max-width: 991px) {
            :root {
                --header-height: 82px;
            }

            .navbar-collapse {
                background: var(--white);
                padding: 30px;
                margin-top: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            }

            .navbar-nav {
                gap: 20px;
                margin-bottom: 25px;
            }

            .navbar-nav .nav-link {
                padding: 8px 0 !important;
            }

            .header-cta-desktop {
                display: none !important;
            }

            .mobile-cta {
                display: inline-block !important;
            }

            .navbar-brand {
                font-size: 24px;
                letter-spacing: 5px;
            }
        }

        @media (min-width: 992px) {
            .mobile-cta {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 20px;
                letter-spacing: 4px;
            }

            .btn-evogue {
                padding: 14px 22px;
                font-size: 12px;
                letter-spacing: 2px;
            }

            .navbar-collapse {
                padding: 20px;
            }
        }

/* ==========================================
   HERO SECTION
========================================== */
.hero-banner {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, #0A192F 0%, #080F1A 100%);
    display: flex;
    align-items: center;
    padding: 120px 0;
}

/* Particle Layer */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 26, 0.68);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0 auto;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 38px;
}

/* Main Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(58px, 8vw, 120px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 35px;
}

.hero-title span {
    display: block;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* Description */
.hero-description {
    max-width: 860px;
    margin: 0 auto 50px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}

/* Buttons */
.hero-actions {
    gap: 18px;
}

.btn-hero-primary,
.btn-hero-secondary {
    min-width: 260px;
    height: 64px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--primary);
}

.btn-hero-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
}

.btn-hero-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .hero-banner {
        padding: 100px 0;
    }

    .hero-description {
        max-width: 760px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 28px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 230px;
        height: 58px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 80px 0;
    }

    .hero-title {
        font-size: clamp(44px, 12vw, 70px);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        gap: 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        padding: 70px 0;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        line-height: 1.6;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 56px);
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        height: 54px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* ==========================================
   SERVICES TICKER
========================================== */
.services-ticker-section {
    background: var(--secondary);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.services-ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.services-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    padding: 22px 0;
    min-width: max-content;
    animation: evogueTicker 32s linear infinite;
}

.ticker-item {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-separator {
    width: 10px;
    height: 10px;
    background: var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Animation */
@keyframes evogueTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover pause */
.services-ticker-section:hover .services-ticker-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 991px) {
    .services-ticker-track {
        gap: 24px;
        padding: 18px 0;
        animation-duration: 24s;
    }

    .ticker-item {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .ticker-separator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 767px) {
    .services-ticker-track {
        gap: 18px;
        padding: 15px 0;
        animation-duration: 20s;
    }

    .ticker-item {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .ticker-separator {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .ticker-item {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.stats-counter-section {
    background: #F7F4EE;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-card {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.stat-number-wrap {
    width: 82px;
    height: 48px;
    border-radius: 60px;
    background: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-shrink: 0;
}

.stat-number,
.stat-symbol {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.stat-content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #38475A;
}

/* remove last border */
.stats-counter-section .col-lg-2:last-child .stat-card {
    border-right: none;
}

/* tablet still horizontal */
@media (max-width: 991px) {
    .stat-card {
        min-height: 90px;
        padding: 16px;
        gap: 14px;
    }

    .stat-number-wrap {
        width: 68px;
        height: 42px;
    }

    .stat-number,
    .stat-symbol {
        font-size: 18px;
    }

    .stat-content h4 {
        font-size: 14px;
    }
}

/* only mobile stack */
@media (max-width: 575px) {
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        justify-content: flex-start;
    }

    .stats-counter-section .row > div:last-child .stat-card {
        border-bottom: none;
    }
}

/* ==========================================
   ADVISORY SECTION
========================================== */
.advisory-section {
    position: relative;
    padding: 110px 0;
    background: #FAF9F7;
    overflow: hidden;
}

/* subtle line pattern */
.advisory-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background:
        repeating-radial-gradient(
            circle at top left,
            rgba(197,160,89,0.04),
            rgba(197,160,89,0.04) 2px,
            transparent 2px,
            transparent 12px
        );
    z-index: 1;
}

.advisory-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 420px;
    height: 320px;
    background:
        repeating-radial-gradient(
            circle at bottom right,
            rgba(197,160,89,0.03),
            rgba(197,160,89,0.03) 2px,
            transparent 2px,
            transparent 14px
        );
    z-index: 1;
}

.advisory-left,
.advisory-right {
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
}

/* Title */
.advisory-title {
    font-family: var(--font-heading);
    /* font-size: clamp(42px, 4vw, 68px);
    line-height: 1.18; */
    font-weight: 600;
    margin-bottom: 28px;
    max-width: 700px;
}

.title-divider {
    width: 62px;
    height: 1px;
    background: var(--primary);
    margin-bottom: 38px;
}

/* Text */
.advisory-description {
    font-size: 20px;
    line-height: 1.75;
    color: var(--body-color);
    margin-bottom: 14px;
    max-width: 760px;
}

/* Buttons */
.advisory-actions {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-advisory-primary,
.btn-advisory-secondary {
    min-width: 240px;
    height: 62px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-advisory-primary {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-advisory-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-advisory-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(10,25,47,0.35);
}

.btn-advisory-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Right features */
.advisory-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.feature-no-border {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    width: 36px;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 22px;
    margin-top: 4px;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--body-color);
    margin: 0;
}

/* Tablet */
@media (max-width: 1199px) {
    .feature-content h3 {
        font-size: 30px;
    }

    .advisory-description {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .advisory-section {
        padding: 80px 0;
    }

    .advisory-title {
        max-width: 100%;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 16px;
    }

    .advisory-description {
        font-size: 17px;
        line-height: 1.7;
    }

    .advisory-actions {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .section-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .advisory-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    .advisory-feature-item {
        gap: 14px;
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .feature-icon {
        font-size: 18px;
    }

    .btn-advisory-primary,
    .btn-advisory-secondary {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .advisory-section {
        padding: 65px 0;
    }

    .advisory-description {
        font-size: 16px;
    }

    .feature-content h3 {
        font-size: 22px;
    }

    .feature-content p {
        font-size: 15px;
    }
}
.premium-stats-section {
    position: relative;
    background-image: url('../img/premium-counter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.premium-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 15, 38, 0.18);
    z-index: 1;
}

.premium-stats-row {
    position: relative;
    z-index: 2;
}

.premium-stat-col {
    min-width: 20%;
}

.premium-stat-card {
    min-height: 185px;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.premium-stat-number-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.premium-counter {
    font-family: var(--font-heading);
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 500;
    line-height: 1;
    color: var(--primary);
}

.premium-symbol {
    font-family: var(--font-heading);
    font-size: clamp(26px, 2vw, 40px);
    color: var(--primary);
    padding-bottom: 8px;
}

.premium-stat-card h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

/* only mobile stack */
@media (max-width: 767px) {
    .premium-stats-row {
        flex-wrap: wrap !important;
    }

    .premium-stat-col {
        min-width: 50%;
    }

    .premium-stat-card {
        min-height: 150px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .premium-stat-col:last-child {
        min-width: 100%;
    }

    .premium-counter {
        font-size: 42px;
    }

    .premium-stat-card h4 {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .premium-stat-col {
        min-width: 100%;
    }

    .premium-stat-col:last-child {
        min-width: 100%;
    }
}
/* ==========================================
   SERVICES SECTION
========================================== */
.services-section {
    padding: 110px 0;
    background: #F8F7F5;
}

.services-head {
    margin-bottom: 60px;
}

.services-title-wrap .section-eyebrow {
    margin-bottom: 18px;
    display: inline-block;
}

.services-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin: 0;
}

/* Cards */
.service-card {
    background: var(--white);
    height: 100%;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(10,25,47,0.10);
}

.service-image {
    overflow: hidden;
    margin-bottom: 28px;
}

.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

/* Content */
.service-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-color);
    margin-bottom: 24px;
}

/* Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-tags span {
    border-color: rgba(197,160,89,0.25);
    color: var(--primary);
}

/* Tablet */
@media (max-width: 1199px) {
    .service-content h3 {
        font-size: 30px;
    }

    .service-content p {
        font-size: 16px;
    }

    .service-image img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .services-head {
        margin-bottom: 45px;
    }

    .services-title {
        font-size: clamp(34px, 6vw, 48px);
    }

    .service-content h3 {
        font-size: 26px;
    }

    .service-image img {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .services-head {
        text-align: center;
        gap: 25px;
    }

    .services-head .text-md-end {
        text-align: center !important;
    }

    .services-title br {
        display: none;
    }

    .service-card {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .service-image img {
        height: 200px;
    }

    .btn-evogue {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 65px 0;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-image img {
        height: 180px;
    }
}
/* ==========================================
   TOOLS TICKER
========================================== */
.tools-ticker-section {
    background: var(--primary);
    overflow: hidden;
    position: relative;
    padding: 18px 0;
}

.tools-ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.tools-ticker-track {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    animation: toolsTicker 36s linear infinite;
}

.tool-item {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 26px;
    transition: var(--transition);
}

.tool-item:hover {
    color: var(--white);
}

.tool-separator {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.85);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ticker animation */
@keyframes toolsTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* pause on hover */
.tools-ticker-section:hover .tools-ticker-track {
    animation-play-state: paused;
}

/* tablet */
@media (max-width: 991px) {
    .tools-ticker-section {
        padding: 16px 0;
    }

    .tools-ticker-track {
        animation-duration: 28s;
    }

    .tool-item {
        font-size: 13px;
        letter-spacing: 3px;
        padding: 0 20px;
    }

    .tool-separator {
        width: 7px;
        height: 7px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .tools-ticker-section {
        padding: 14px 0;
    }

    .tools-ticker-track {
        animation-duration: 22s;
    }

    .tool-item {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 0 16px;
    }

    .tool-separator {
        width: 6px;
        height: 6px;
    }
}
/* ==========================================
   INTELLIGENCE PLATFORM
========================================== */
.intelligence-platform-section {
    position: relative;
    padding: 110px 0;
    background-image: url('../img/intelligence-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.intelligence-platform-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 45, 0.78);
    z-index: 1;
}

.intelligence-platform-section .container {
    position: relative;
    z-index: 2;
}

/* Left */
.intelligence-left {
    max-width: 620px;
}

.intelligence-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 30px;
}

.intelligence-left p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.intelligence-actions {
    display: flex;
    gap: 18px;
    margin-top: 42px;
    flex-wrap: wrap;
}

/* Right Cards */
.intelligence-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.intel-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 34px 36px;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.intel-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.intel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.intel-number {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
}

.intel-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
}

.intel-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 16px;
}

.intel-card p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* Tablet */
@media (max-width: 1199px) {
    .intel-card h3 {
        font-size: 28px;
    }

    .intelligence-left p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .intelligence-platform-section {
        padding: 85px 0;
    }

    .intelligence-left {
        max-width: 100%;
        text-align: center;
    }

    .intelligence-actions {
        justify-content: center;
    }

    .intel-card {
        padding: 28px;
    }

    .intel-card h3 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .intelligence-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    .intelligence-left p {
        font-size: 16px;
        line-height: 1.7;
    }

    .intel-card {
        padding: 22px;
    }

    .intel-top {
        margin-bottom: 16px;
    }

    .intel-number {
        font-size: 22px;
    }

    .intel-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .intel-card h3 {
        font-size: 22px;
    }

    .intel-card p {
        font-size: 15px;
    }

    .intelligence-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .intelligence-platform-section {
        padding: 65px 0;
    }

    .intel-card h3 {
        font-size: 20px;
    }
}
.tech-stack-section {
    background: #f8f7f5;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
}
.tech-stack-grid .btn-hero-secondary{
    background: transparent;
    border: 1px solid rgba(10, 25, 47, 0.35);
    color: var(--secondary);
}
.tech-stack-grid .btn-hero-secondary:hover{
    background-color: var(--secondary);
    color: #fff;
}
.modular-second-row .btn-hero-secondary{
    background: transparent;
    border: 1px solid rgba(10, 25, 47, 0.35);
    color: var(--secondary);
}
.modular-second-row .btn-hero-secondary:hover{
    background-color: var(--secondary);
    color: #fff;
}
.tech-stack-grid .btn-hero-primary:hover{
    color: var(--primary);
}
.modular-second-row .btn-hero-primary:hover{
    color: var(--primary);
}
.tech-feature-grid .tech-card-design .tech-card-meta span, .tech-feature-grid .tech-card-design .tech-card-meta h4{
    color: #fff!important;
}
.tech-feature-grid .tech-card-marketing .tech-card-meta span, .tech-feature-grid .tech-card-marketing .tech-card-meta h4{
    color: #fff!important;
}
/* LEFT */
.tech-stack-content {
    display: flex;
    align-items: center;
    padding: 90px 70px;
}

.tech-stack-inner {
    max-width: 560px;
}

.tech-stack-title {
    font-family: var(--font-heading);
    margin-bottom: 18px ;
}

.tech-stack-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 14px;
}

.tech-stack-actions {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* RIGHT GRID */
.tech-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.tech-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    transition: 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-6px);
}

.tech-card-inner {
    position: relative;
    z-index: 2;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 15px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card-meta span {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.tech-card-meta h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.tech-card p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    max-width: 90%;
}

/* variants */
.tech-card-light {
    background: #ededed;
    color: var(--secondary);
}

.tech-card-design {
    background-image: url('../img/design.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.tech-card-marketing {
    background-image: url('../img/marketing.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.tech-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(197,160,89,0.82);
}

.tech-card-marketing .tech-card-overlay {
    background: rgba(10,25,47,0.78);
}

/* responsive */
@media (max-width: 1199px) {
    .tech-stack-content {
        padding: 70px 50px;
    }

    .tech-stack-title {
        font-size: 38px;
    }

    .tech-card {
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack-content {
        padding: 70px 36px;
    }
}

@media (max-width: 767px) {
    .tech-feature-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-title br {
        display: none;
    }

    .tech-stack-content {
        padding: 55px 22px;
    }

    .tech-stack-content p {
        font-size: 16px;
    }

    .tech-card {
        min-height: 260px;
    }

    .tech-stack-actions .btn {
        width: 100%;
    }
}
/* ==========================================
MODULAR SECOND ROW
========================================== */
.modular-second-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
}

/* LEFT IMAGE */
.pr-showcase-wrap {
    position: relative;
    overflow: hidden;
    min-height: 760px;
}

.pr-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.pr-showcase-wrap:hover .pr-showcase-img {
    transform: scale(1.03);
}

/* COUNTER OVERLAY */
.pr-stats-overlay {
    position: absolute;
    max-width: 95%;
    left: 0;
    right: 0;
    bottom: 10px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 0px auto;
}

.pr-stat-item {
    padding: 26px 14px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.pr-stat-item:last-child {
    border-right: none;
}

.pr-stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 10px;
}

.pr-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(10,25,47,0.65);
    line-height: 1.5;
}

/* RIGHT */
.pr-content-block {
    background: #F8F7F5;
    display: flex;
    align-items: center;
    padding: 90px 70px;
}

.pr-content-inner {
    max-width: 620px;
}

.pr-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.pr-content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 16px;
}

.pr-actions {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* TABLET */
@media (max-width: 1199px) {
    .pr-content-block {
        padding: 70px 50px;
    }

    .modular-second-row,
    .pr-showcase-wrap {
        min-height: 640px;
    }

    .pr-title {
        font-size: 54px;
    }
}

@media (max-width: 991px) {
    .modular-second-row {
        grid-template-columns: 1fr;
    }

    .pr-showcase-wrap {
        min-height: 620px;
    }

    .pr-content-block {
        padding: 70px 40px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .pr-showcase-wrap {
        min-height: 500px;
    }

    .pr-stats-overlay {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-stat-item {
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .pr-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    .pr-content-block {
        padding: 55px 22px;
    }

    .pr-content-block p {
        font-size: 16px;
    }

    .pr-actions .btn {
        width: 100%;
    }

    .pr-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pr-stats-overlay {
        grid-template-columns: 1fr;
    }

    .pr-showcase-wrap {
        min-height: 460px;
    }
}
/* ==========================================
CASE STUDY SECTION
========================================== */
.case-study-section {
    padding: 110px 0;
    background: #f8f7f5;
}

/* Header */
.case-study-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.case-study-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.case-study-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    margin-top: 18px;
}

.case-study-link::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.case-study-link:hover {
    color: var(--secondary);
}

.case-study-link:hover::after {
    width: 60%;
}

/* Grid */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* Card */
.case-study-card {
    background: transparent;
    transition: 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
}

.case-study-image-wrap {
    overflow: hidden;
    margin-bottom: 26px;
    background: #ddd;
}

.case-study-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.case-study-card:hover .case-study-image-wrap img {
    transform: scale(1.06);
}

/* Content */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.case-tags span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(197,160,89,0.08);
    padding: 6px 10px;
}

.case-study-content h3 {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.case-study-card:hover h3 {
    color: var(--primary);
}

.case-study-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-color);
    margin-bottom: 32px;
}

/* Metrics */
.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 26px;
    gap: 20px;
}

.case-metric strong {
    font-weight: 600;
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 8px;
}

.case-metric span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(10,25,47,0.45);
}

/* Tablet */
@media (max-width: 1199px) {
    .case-study-image-wrap img {
        height: 360px;
    }

    .case-study-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .case-study-section {
        padding: 80px 0;
    }

    .case-study-grid {
        gap: 30px;
    }

    .case-study-image-wrap img {
        height: 300px;
    }

    .case-study-content h3 {
        font-size: 26px;
    }

    .case-study-content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .case-study-head {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .case-study-link {
        margin-top: 0;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-study-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .case-study-image-wrap img {
        height: 260px;
    }

    .case-study-content h3 {
        font-size: 24px;
    }

    .case-study-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .case-metric strong {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .case-study-section {
        padding: 65px 0;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-study-image-wrap img {
        height: 220px;
    }
}
/* ==========================================
PHILOSOPHY SECTION
========================================== */
.philosophy-section {
    position: relative;
    padding: 110px 0;
    background-image:
        linear-gradient(rgba(10, 25, 47, 0.88), rgba(10, 25, 47, 0.88)),
        url('../img/our-philosophy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
}

/* LEFT */
.philosophy-left {
    max-width: 620px;
}

.philosophy-quote-wrap {
    position: relative;
    padding-left: 28px;
    margin: 24px 0 42px;
}

.quote-accent-line {
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 130px;
    background: var(--primary);
}

.philosophy-title {
    font-family: var(--font-heading);
    color: #fff;
    margin: 0;
}

.philosophy-title span {
    color: var(--primary);
    transition: 0.3s ease;
}

.philosophy-title span:hover {
    opacity: 0.8;
}

.philosophy-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 42px;
}

.signature-line {
    width: 42px;
    height: 2px;
    background: var(--primary);
}

.philosophy-signature span:last-child {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.philosophy-copy p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 18px;
}

/* RIGHT */
.commitments-wrap {
    padding-left: 30px;
}

.commitment-item {
    display: flex;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.commitment-item:hover {
    transform: translateX(6px);
    border-color: rgba(197,160,89,0.35);
}

.commitment-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin-top: 4px;
}

.commitment-content h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 14px;
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* Tablet */
@media (max-width: 1199px) {
    .philosophy-title {
        font-size: 48px;
    }

    .commitment-content h3 {
        font-size: 24px;
    }

    .philosophy-copy p,
    .commitment-content p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .philosophy-section {
        padding: 85px 0;
    }

    .commitments-wrap {
        padding-left: 0;
    }

    .philosophy-left {
        max-width: 100%;
    }

    .quote-accent-line {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .philosophy-section {
        padding: 65px 0;
    }

    .philosophy-quote-wrap {
        padding-left: 18px;
        margin-bottom: 30px;
    }

    .quote-accent-line {
        width: 3px;
        height: 80px;
    }

    .philosophy-title {
        font-size: clamp(28px, 4vw, 40px);
        line-height: 1.45;
    }

    .philosophy-signature {
        margin-bottom: 28px;
    }

    .philosophy-signature span:last-child {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .philosophy-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .commitment-item {
        gap: 14px;
        padding: 22px 0;
    }

    .commitment-content h3 {
        font-size: 20px;
    }

    .commitment-content p {
        font-size: 15px;
        line-height: 1.65;
    }
}
/* ==========================================
JOURNAL SECTION
========================================== */
.journal-section {
    padding: 110px 0;
    background: #f8f7f5;
}

/* Header */
.journal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.journal-title {
    font-family: var(--font-heading);
    margin: 14px 0 0;
}

.journal-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    margin-top: 18px;
}

.journal-link::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.journal-link:hover::after {
    width: 60%;
}

/* Grid */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

/* Card */
.journal-card {
    background: #fcfbfa;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.journal-image-wrap {
    overflow: hidden;
    padding: 26px 26px 0;
}

.journal-image-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.journal-card:hover .journal-image-wrap img {
    transform: scale(1.05);
}

/* Content */
.journal-content {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.journal-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.journal-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.journal-card:hover h3 {
    color: var(--primary);
}

.journal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 30px;
}

/* Footer */
.journal-footer {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.journal-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(10,25,47,0.35);
}

.journal-read {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s ease;
}

.journal-read:hover {
    letter-spacing: 4px;
}

/* Tablet */
@media (max-width: 1199px) {
    .journal-grid {
        gap: 28px;
    }

    .journal-content h3 {
        font-size: 22px;
    }

    .journal-content p {
        font-size: 16px;
    }

    .journal-image-wrap img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .journal-section {
        padding: 85px 0;
    }

    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .journal-section {
        padding: 65px 0;
    }

    .journal-head {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .journal-link {
        margin-top: 0;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .journal-title {
        font-size: clamp(32px, 8vw, 46px);
    }

    .journal-image-wrap {
        padding: 18px 18px 0;
    }

    .journal-image-wrap img {
        height: 220px;
    }

    .journal-content {
        padding: 20px 18px 20px;
    }

    .journal-content h3 {
        font-size: 22px;
    }

    .journal-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* ==========================================
CORRECT FINAL CTA
========================================== */
.final-cta-section {
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
    padding: 0px 80px;
}

.final-cta-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 330px;
    position: relative;
}

/* LEFT */
.final-cta-left {
    background: #C5A059;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* GOLD TRANSPARENT ANGLE */
/* .final-cta-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -220px;
    width: 420px;
    height: 100%;
    background: rgba(255,255,255,0.08);
    clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
    z-index: 2;
} */

/* RIGHT PANEL */
.final-cta-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* WHITE DIAGONAL SHAPE */
.final-cta-right::before {
    content: "";
    position: absolute;
    left: 350px;
    top: 0;
    width: 420px;
    height: 100%;
    background: #f3f3f31f;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 2.6vw, 50px);
    line-height: 1.08;
    color: #081A36;
    margin: 0;
}

/* BUTTON AREA */
.final-cta-actions {
    display: flex;
    flex-direction: row;
    gap: 26px;
    position: relative;
    z-index: 5;
}

/* PRIMARY */
.cta-primary-btn {
    background: #081A36;
    color: white;
    border: none;
    min-height: 82px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 50px rgba(8,26,54,0.22);
    transition: 0.35s ease;
    border-radius: 0px;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* OUTLINE */
.cta-outline-btn {
    background: transparent;
    color: #081A36;
    border: 1px solid #081A36;
    min-height: 82px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    border-radius: 0px;
}

.cta-outline-btn:hover {
    background: #081A36;
    color: white;
}

/* TABLET */
@media (max-width: 1199px) {
    .final-cta-layout {
        grid-template-columns: 65% 35%;
        min-height: 360px;
    }

    .final-cta-content h2 {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .final-cta-layout {
        grid-template-columns: 1fr;
    }

    .final-cta-left::after,
    .final-cta-right::before {
        display: none;
    }

    .final-cta-left {
        padding: 70px 0 40px;
    }

    .final-cta-right {
        padding: 0 0 70px;
        background: #C5A059;
    }

    .final-cta-actions {
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .final-cta-left {
        padding: 55px 0 30px;
    }

    .final-cta-right {
        padding: 0 0 55px;
    }

    .final-cta-content h2 {
        font-size: clamp(34px, 8vw, 50px);
        line-height: 1.15;
    }

    .final-cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    .cta-primary-btn,
    .cta-outline-btn {
        width: 100%;
        min-height: 64px;
        font-size: 13px;
    }
}
/* ==========================================
FOOTER
========================================== */
.site-footer {
    background: #081A36;
    padding-top: 85px;
    color: rgba(255,255,255,0.68);
    overflow: hidden;
}

/* Main */
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 65px;
}

/* Brand */
.footer-brand {
    max-width: 420px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 36px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 38px;
    color: rgba(255,255,255,0.55);
}

/* Social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.35s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Columns */
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 32px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 20px;
}

.footer-col a {
    font-size: 18px;
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 36px;
}

.footer-legal a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Tablet */
@media (max-width: 1199px) {
    .footer-main {
        gap: 40px;
    }

    .footer-logo {
        font-size: 46px;
    }

    .footer-col a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 70px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-footer {
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-logo {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .footer-brand p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .footer-col h4 {
        margin-bottom: 20px;
    }

    .footer-col li {
        margin-bottom: 14px;
    }

    .footer-col a {
        font-size: 15px;
    }

    .footer-bottom {
        gap: 18px;
        padding: 20px 0;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .footer-legal {
        gap: 20px;
    }
}