       /* ═══ HOME-SPECIFIC ═══ */
        /* ── HERO ── */
        
        .hero {
            height: 100vh;
            min-height: 680px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        /* ── MEDIA LAYER ── */
        
        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .hero-media .hero-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: none;
        }
        
        .hero-media .img-ph {
            width: 100%;
            height: 100%;
            display: none;
        }
        
        .hero-media video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: none;
        }
        
        .hero.mode-image .hero-bg-image {
            display: block;
        }
        
        .hero.mode-image .img-ph.active {
            display: block;
        }
        
        .hero.mode-image .hero-bg-image[src=""] {
            display: none;
        }
        
        .hero.mode-video video {
            display: block;
        }
        /* Overlay — strength controlled via --overlay-strength CSS var (set by config) */
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient( to right, rgba(10, 47, 42, calc(var(--overlay-strength, 0.72) * 0.95)) 0%, rgba(10, 47, 42, calc(var(--overlay-strength, 0.72) * 0.75)) 55%, rgba(10, 47, 42, calc(var(--overlay-strength, 0.72) * 0.35)) 100%);
        }
        /* ── VIDEO CONTROLS — bottom right ── */
        
        .hero-video-controls {
            position: absolute;
            bottom: 28px;
            right: 28px;
            z-index: 5;
            display: none;
            gap: 8px;
        }
        
        .hero.mode-video .hero-video-controls {
            display: flex;
        }
        
        .vc-btn {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .vc-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .vc-btn svg {
            width: 14px;
            height: 14px;
            fill: white;
        }
        /* ── MODE BADGE — hidden, not needed ── */
        
        .hero-mode-badge {
            display: none !important;
        }
        /* ── SCROLL HINT — right edge, vertical ── */
        
        .hero-scroll-hint {
            position: absolute;
            right: 36px;
            bottom: 80px;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeUp 1s 1.5s ease forwards;
        }
        
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
            animation: scrollPulse 2s ease infinite;
        }
        
        .scroll-word {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            writing-mode: vertical-rl;
        }
        
        @keyframes scrollPulse {
            0%,
            100% {
                opacity: 0.4;
            }
            50% {
                opacity: 0.9;
            }
        }
        /* ── HERO CONTENT ── */
        
        .hero-content {
            position: relative;
            z-index: 4;
            padding: 0 6%;
            max-width: 860px;
            width: 100%;
        }
        
        .hero-eyebrow {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 0;
            animation: fadeUp 0.8s 0.3s ease forwards;
        }
        
        .hero-eyebrow::before {
            content: '';
            width: 32px;
            height: 2px;
            background: var(--gold);
        }
        
        .hero-h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(34px, 3.8vw, 56px);
            font-weight: 800;
            line-height: 1.15;
            color: var(--white);
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 0.9s 0.5s ease forwards;
        }
        
        .hero-h1 em {
            font-style: normal;
            color: var(--gold);
        }
        
        .hero-sub {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.75);
            max-width: 540px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 0.9s 0.7s ease forwards;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
            opacity: 0;
            animation: fadeUp 0.9s 0.9s ease forwards;
        }
        /* ── STATS BAR — bottom right ── */
        
        .hero-stats-bar {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 4;
            background: rgba(10, 47, 42, 0.80);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            opacity: 0;
            animation: fadeLeft 1s 1.1s ease forwards;
        }
        
        .stat-box {
            padding: 20px 28px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .stat-box:last-child {
            border-right: none;
        }
        
        .stat-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
        }
        
        .stat-lbl {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 5px;
        }
        
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* ── INTRO STRIP ── */
        
        .intro-strip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--cream);
        }
        
        .intro-left {
            padding: 80px 7% 80px 6%;
            border-right: 1px solid var(--border-light);
        }
        
        .intro-right {
            padding: 80px 6% 80px 7%;
            display: flex;
            align-items: center;
        }
        
        .intro-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(26px, 2.6vw, 38px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--forest);
            margin-bottom: 28px;
        }
        
        .intro-heading em {
            font-style: normal;
            color: var(--gold);
            font-weight: 800;
        }
        /* ── MARKETS ── */
        
        .markets-section {
            background: var(--white);
        }
        
        .markets-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .markets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        
        .market-tile {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: default;
            /* Fallback background when no image is set */
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 40%, #0A1E14 100%);
        }
        /* The actual image — fills the tile completely */
        
        .market-tile-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .market-tile:hover .market-tile-img {
            transform: scale(1.04);
        }
        /* Hide broken image icon when src is empty */
        
        .market-tile-img:not([src]),
        .market-tile-img[src=""] {
            display: none;
        }
        
        .market-tile-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 47, 42, 0.85) 0%, rgba(10, 47, 42, 0.15) 60%);
            transition: background 0.5s;
        }
        
        .market-tile:hover .market-tile-overlay {
            background: linear-gradient(to top, rgba(10, 47, 42, 0.92) 0%, rgba(10, 47, 42, 0.45) 100%);
        }
        
        .market-tile-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px 28px;
        }
        
        .market-tile-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 8px;
            transform: translateY(8px);
            transition: transform 0.4s;
        }
        
        .market-tile:hover .market-tile-title {
            transform: translateY(0);
        }
        
        .market-tile-desc {
            font-size: 13px;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s, opacity 0.4s;
            opacity: 0;
        }
        
        .market-tile:hover .market-tile-desc {
            max-height: 60px;
            opacity: 1;
        }
        
        .market-tile-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(0, 0, 0, 0.35);
            padding: 5px 10px;
        }
        /* ── ABOUT TEASER ── */
        
        .about-teaser {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
        }
        
        .about-teaser-img {
            position: relative;
            min-height: 580px;
            overflow: hidden;
        }
        
        .about-teaser-img .teaser-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            min-height: unset;
        }
        /* Fallback background when no image */
        
        .about-teaser-img:not(:has(img[src])) {
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 60%);
        }
        
        .about-teaser-img img[src=""] {
            display: none;
        }
        
        .about-teaser-content {
            background: var(--cream);
            padding: 80px 7% 80px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .iso-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 36px;
        }
        
        .iso-tag {
            background: var(--white);
            padding: 12px 16px;
            border-left: 2px solid var(--gold);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.04em;
            color: var(--forest);
        }
        
        .iso-tag small {
            display: block;
            font-weight: 300;
            font-size: 11px;
            color: var(--light-text);
        }
        /* ── PRODUCTS PREVIEW ── */
        /* ── PRODUCTS CAROUSEL ── */
        
        .products-preview-section {
            background: var(--forest);
            padding: 80px 0 80px 5%;
            /* left pad only — cards scroll to edge */
            overflow: hidden;
        }
        /* Header row: title left, arrows right */
        
        .products-preview-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-right: 5%;
            margin-bottom: 48px;
        }
        
        .products-preview-header-text .eyebrow {
            color: var(--gold);
        }
        
        .products-preview-header-text .eyebrow::before {
            background: var(--gold);
        }
        
        .products-preview-header-text .display-heading {
            color: var(--white);
            margin-top: 8px;
        }
        /* Arrow buttons */
        
        .pcarousel-arrows {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }
        
        .pcarousel-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        
        .pcarousel-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
        }
        
        .pcarousel-btn:disabled {
            opacity: 0.25;
            cursor: default;
        }
        
        .pcarousel-btn:disabled:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .pcarousel-btn svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        /* Scrollable track */
        
        .products-track-wrap {
            overflow: hidden;
            /* JS controls scroll, no native scrollbar */
        }
        
        .products-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        /* Individual card */
        
        .pcard {
            flex: 0 0 340px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            transition: transform 0.4s, border-color 0.4s;
            cursor: default;
        }
        
        .pcard:hover {
            transform: translateY(-6px);
            border-color: rgba(212, 168, 67, 0.4);
        }
        /* Card image */
        
        .pcard-img {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--forest-2) 0%, #0A1E14 100%);
        }
        
        .pcard-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .pcard-img img[src=""],
        .pcard-img img:not([src]) {
            display: none;
        }
        
        .pcard:hover .pcard-img img {
            transform: scale(1.05);
        }
        /* Card number badge on image */
        
        .pcard-num {
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--gold);
            background: rgba(10, 47, 42, 0.7);
            padding: 5px 10px;
            backdrop-filter: blur(4px);
        }
        /* Gold line at bottom of image on hover */
        
        .pcard-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }
        
        .pcard:hover .pcard-img::after {
            transform: scaleX(1);
        }
        /* Card body */
        
        .pcard-body {
            padding: 28px 28px 32px;
        }
        
        .pcard-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        
        .pcard-desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .pcard-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            border-bottom: 1px solid rgba(212, 168, 67, 0.4);
            padding-bottom: 2px;
            transition: gap 0.3s, border-color 0.3s;
        }
        
        .pcard:hover .pcard-link {
            gap: 10px;
            border-color: var(--gold);
        }
        /* CTA row below track */
        
        .products-preview-cta {
            margin-top: 52px;
            padding-right: 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .pcarousel-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .pdot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .pdot.active {
            background: var(--gold);
            width: 24px;
            border-radius: 3px;
        }
        
        @media (max-width: 900px) {
            .products-preview-section {
                padding: 64px 0 64px 5%;
            }
            .pcard {
                flex: 0 0 280px;
            }
            .pcard-img {
                height: 200px;
            }
        }
        
        @media (max-width: 640px) {
            .pcard {
                flex: 0 0 260px;
            }
            .products-preview-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .pcarousel-arrows {
                align-self: flex-end;
            }
        }
        /* ── CTA BANNER ── */
        
        .cta-banner {
            position: relative;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
        }
        
        .cta-banner .img-ph {
            position: absolute;
            inset: 0;
        }
        
        .cta-banner-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 47, 42, 0.78);
        }
        
        .cta-banner-content {
            position: relative;
            z-index: 2;
            padding: 80px 6%;
            max-width: 700px;
        }
        
        .cta-banner-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(26px, 2.8vw, 40px);
            font-weight: 600;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 24px;
        }
        
        .cta-banner-heading em {
            font-style: normal;
            color: var(--gold);
            font-weight: 800;
        }
        
        .cta-banner-sub {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            max-width: 480px;
        }
        /* RESPONSIVE — HOME PAGE */
        
        @media (max-width: 1100px) {
            .products-rail {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .intro-strip {
                grid-template-columns: 1fr;
            }
            .intro-left {
                border-right: none;
                border-bottom: 1px solid var(--border-light);
            }
            .markets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-teaser {
                grid-template-columns: 1fr;
            }
            .about-teaser-img {
                min-height: 300px;
            }
            .hero-scroll-hint {
                display: none;
            }
            /* Stats bar: smaller padding on tablet */
            .stat-box {
                padding: 16px 18px;
            }
            .stat-num {
                font-size: 22px;
            }
        }
        
        @media (max-width: 640px) {
            /* Hero — remove min-height, let content dictate */
            .hero {
                height: auto;
                min-height: 100svh;
                align-items: flex-start;
                padding-top: 100px;
                padding-bottom: 32px;
            }
            .hero-content {
                padding: 0 5%;
                padding-bottom: 24px;
            }
            .hero-h1 {
                font-size: clamp(30px, 8vw, 44px) !important;
                line-height: 1.15;
                margin-bottom: 16px;
            }
            .hero-eyebrow {
                font-size: 10px;
                letter-spacing: 0.18em;
                margin-bottom: 14px;
            }
            .hero-sub {
                font-size: 15px;
                margin-bottom: 28px;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            .hero-actions .btn-forest,
            .hero-actions .btn-outline-gold {
                width: 100%;
                justify-content: center;
            }
            /* Hide stats bar entirely on mobile — no room */
            .hero-stats-bar {
                display: none;
            }
            .hero-scroll-hint {
                display: none;
            }
            /* Intro */
            .intro-left,
            .intro-right {
                padding: 48px 5%;
            }
            .intro-heading {
                font-size: clamp(24px, 6vw, 32px);
            }
            /* Markets */
            .markets-grid {
                grid-template-columns: 1fr;
            }
            /* Products rail */
            .products-rail {
                grid-template-columns: 1fr;
                gap: 1px;
            }
            .products-preview-section {
                padding: 64px 5%;
            }
            .products-preview-header {
                margin-bottom: 40px;
            }
            /* About teaser */
            .about-teaser-content {
                padding: 48px 5%;
            }
            .iso-row {
                grid-template-columns: 1fr;
            }
            /* CTA banner */
            .cta-banner-content {
                padding: 56px 5%;
            }
            .cta-banner-heading {
                font-size: clamp(22px, 6vw, 32px);
            }
            .btn-row {
                flex-direction: column;
            }
            .btn-row .btn-forest,
            .btn-row .btn-outline-gold {
                width: 100%;
                justify-content: center;
            }
        }
        /* ════════════════════════════════════════
           CLIENTS & PARTNERS SECTION
        ════════════════════════════════════════ */
        .clients-section {
            padding: 90px 0 80px;
            background: var(--off-white);
            overflow: hidden;
        }

        .clients-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 6%;
        }

        .clients-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .clients-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 2.8vw, 42px);
            font-weight: 800;
            color: var(--forest);
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .clients-heading em {
            font-style: normal;
            color: var(--gold);
        }

        .clients-sub {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: var(--light-text);
            line-height: 1.7;
            max-width: 540px;
            margin: 0 auto;
        }

        /* ── Marquee ── */
        .clients-marquee-wrap {
            position: relative;
            overflow: hidden;
            margin: 0 -6%;
        }

        .clients-marquee-wrap::before,
        .clients-marquee-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .clients-marquee-wrap::before {
            left: 0;
            background: linear-gradient(to right, var(--off-white), transparent);
        }

        .clients-marquee-wrap::after {
            right: 0;
            background: linear-gradient(to left, var(--off-white), transparent);
        }

        .clients-marquee {
            display: flex;
            align-items: center;
            animation: clientsScroll 28s linear infinite;
            width: max-content;
        }

        .clients-marquee:hover {
            animation-play-state: paused;
        }

        @keyframes clientsScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .client-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
            height: 88px;
            border-right: 1px solid var(--border-light);
            flex-shrink: 0;
        }

        .client-logo-item img {
            max-width: 130px;
            max-height: 52px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.55);
            transition: filter 0.35s ease, transform 0.3s ease;
        }

        .client-logo-item:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.06);
        }

        /* ── Stats strip ── */
        .clients-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 56px;
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 32px 40px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        }

        .cstat {
            flex: 1;
            text-align: center;
            padding: 0 20px;
        }

        .cstat-num {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 800;
            color: var(--forest);
            line-height: 1;
            margin-bottom: 6px;
        }

        .cstat-num span {
            color: var(--gold);
        }

        .cstat-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--light-text);
        }

        .cstat-divider {
            width: 1px;
            height: 48px;
            background: var(--border-light);
            flex-shrink: 0;
        }

        @media (max-width: 640px) {
            .clients-stats {
                flex-wrap: wrap;
                gap: 28px 0;
                padding: 28px 20px;
            }
            .cstat { flex: 1 1 50%; }
            .cstat-divider { display: none; }
            .clients-marquee-wrap::before,
            .clients-marquee-wrap::after { width: 60px; }
            .client-logo-item { padding: 0 24px; }
        }