        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── Matrix Rain Background ── */
        #matrixCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            filter: blur(0.5px) contrast(1.2);
            opacity: 0.4;
        }
        .matrix-scanlines {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: linear-gradient(to bottom, rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
            background-size: 100% 4px;
            pointer-events: none;
        }
        .matrix-vignette {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
            pointer-events: none;
        }
        @media (hover: none), (pointer: coarse) {
            #matrixCanvas { background: #000; opacity: 1; filter: none; }
            .matrix-scanlines, .matrix-vignette { display: none; }
        }

        main {
            position: relative;
            z-index: 1;
        }

        /* ── HERO SECTION ── */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 40px 80px;
            position: relative;
            animation: fadeUp 0.9s ease-out forwards;
        }
        .hero-section::after {
            content: '';
            position: absolute; bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 60%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(20,184,166,0.4), rgba(0,255,255,0.3), rgba(255,215,0,0.15), transparent);
        }
        .hero-badge {
            display: inline-block;
            background: rgba(20,184,166,0.12);
            border: 1px solid rgba(20,184,166,0.35);
            color: #14B8A6;
            font-size: 0.72rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0.4rem 1.1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }
        .hero-section h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.2rem, 5.5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #ffffff;
            letter-spacing: 2px;
            animation: glow 3s ease-in-out infinite;
        }
        .hero-section > p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
            margin-bottom: 3rem;
        }
        .hero-scroll-hint {
            display: flex; flex-direction: column; align-items: center; gap: 6px;
            color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 3px;
            text-transform: uppercase; animation: bounce 2.2s ease-in-out infinite;
        }
        .hero-scroll-hint svg { width: 22px; height: 22px; opacity: 0.45; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); opacity: 0.5; }
            50%       { transform: translateY(10px); opacity: 0.9; }
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ═══════════════════════════════════════════════════════
           HORIZONTAL SCROLL SECTIONS
        ═══════════════════════════════════════════════════════ */

        .cs-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .cs-section[data-accent="teal"] { --accent: #14B8A6; --accent-rgb: 20, 184, 166; }
        .cs-section[data-accent="cyan"] { --accent: #00FFFF; --accent-rgb: 0, 255, 255; }
        .cs-section[data-accent="gold"] { --accent: #FFD700; --accent-rgb: 255, 215, 0; }

        .cs-header {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 72px 4vw 16px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            background: rgba(0,0,0,0.90);
            backdrop-filter: blur(20px);
        }
        .cs-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.6rem; font-weight: 900;
            color: var(--accent); letter-spacing: 4px;
            text-transform: uppercase; opacity: 0.75; flex-shrink: 0;
        }
        .cs-title-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem; font-weight: 700;
            color: #bbbbbb;
            text-shadow: none;
            flex-shrink: 0;
        }
        .cs-client-label {
            font-size: 0.72rem; color: rgba(255,255,255,0.8);
            font-weight: 400; margin-left: auto;
        }
        .cs-viewport {
            flex: 1; overflow: hidden; position: relative;
        }
        .cs-viewport::after {
            content: '';
            position: absolute; top: 0; right: 0; bottom: 0; width: 100px;
            background: linear-gradient(to left, rgba(0,0,0,0.55), transparent);
            pointer-events: none; z-index: 2;
        }

        .cs-track {
            display: flex; gap: 1.5rem; height: 100%;
            padding: 2rem 4vw; will-change: transform;
        }
        .cs-track-spacer {
            flex-shrink: 0; width: 10vw;
        }

        .cs-card {
            width: 42vw;
            height: 100%;
            flex-shrink: 0;
            border-radius: 18px;
            padding: 2rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-self: flex-start;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(0,0,0,0.90);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        .cs-card::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--card-tint, rgba(20,184,166,0.04)), transparent 65%);
            pointer-events: none; border-radius: inherit;
        }
        .cs-card::after {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--card-line, var(--accent)), transparent);
            border-radius: 18px 18px 0 0; opacity: 0.6;
        }

        .cs-card--overview   { --card-tint: rgba(var(--accent-rgb), 0.06); --card-line: var(--accent); }
        .cs-card--challenge  { --card-tint: rgba(255,107,107,0.05); --card-line: #FF6B6B; }
        .cs-card--solution   { --card-tint: rgba(20,184,166,0.05); --card-line: #14B8A6; }
        .cs-card--results    { --card-tint: rgba(255,215,0,0.05); --card-line: #FFD700; }
        .cs-card--testimonial { --card-tint: rgba(var(--accent-rgb), 0.04); --card-line: var(--accent); }

        .cs-tag {
            display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.6rem;
        }
        .cs-tag-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: currentColor; box-shadow: 0 0 8px currentColor; flex-shrink: 0;
        }
        .cs-tag-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
        }

        .cs-card--overview   .cs-tag { color: var(--accent); }
        .cs-card--challenge  .cs-tag { color: #FF6B6B; }
        .cs-card--solution   .cs-tag { color: #14B8A6; }
        .cs-card--results    .cs-tag { color: #FFD700; }
        .cs-card--testimonial .cs-tag { color: var(--accent); }

        .cs-bg-number {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(5rem, 10vw, 9rem); font-weight: 900; line-height: 1;
            color: rgba(var(--accent-rgb), 0.08);
            position: absolute; top: 1.5rem; right: 2rem;
            pointer-events: none; user-select: none;
        }
        .cs-overview-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.4rem, 2.8vw, 2.4rem); font-weight: 900;
            color: var(--accent); text-shadow: 0 0 24px rgba(var(--accent-rgb), 0.4);
            line-height: 1.25; margin-bottom: 0.5rem;
        }
        .cs-overview-client {
            font-size: 0.75rem; color: rgba(255,255,255,0.8);
            text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600; margin-bottom: 2.5rem;
        }
        .cs-metrics { display: flex; gap: 1.25rem; flex-wrap: wrap; }
        .cs-metric {
            background: rgba(0,0,0,0.45); border: 1px solid rgba(var(--accent-rgb), 0.2);
            border-radius: 12px; padding: 1.1rem 1.5rem; text-align: center; min-width: 100px;
        }
        .cs-metric-value {
            display: block; font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem; font-weight: 900;
            background: linear-gradient(135deg, var(--accent), #FFFF00);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .cs-metric-label {
            display: block; font-size: 0.75rem; color: rgba(255,255,255,0.85);
            text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.3rem;
        }

        .cs-card-heading {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.7rem); font-weight: 700;
            margin-bottom: 1.5rem; line-height: 1.3;
        }
        .cs-card--challenge .cs-card-heading { color: #FF9A9A; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7); }
        .cs-card--solution  .cs-card-heading { color: #5CDBC8; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7); }
        .cs-card--results   .cs-card-heading { color: #FFE44D; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7); }

        .cs-card-body {
            font-size: clamp(0.95rem, 1.4vw, 1.08rem); color: #e0e0e0; line-height: 1.9; max-width: 640px;
        }

        .cs-results-list { list-style: none; margin-top: 0.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
        .cs-results-list li {
            display: flex; align-items: flex-start; gap: 0.85rem;
            font-size: clamp(0.95rem, 1.4vw, 1.05rem); color: #e8e8e8; line-height: 1.75;
        }
        .cs-results-list li::before {
            content: ''; width: 7px; height: 7px; border-radius: 50%;
            background: #FFD700; box-shadow: 0 0 10px rgba(255,215,0,0.8);
            flex-shrink: 0; margin-top: 0.45rem;
        }

        .cs-quote-mark {
            font-size: 4.5rem; line-height: 1; font-family: Georgia, serif;
            color: rgba(var(--accent-rgb), 0.22); margin-bottom: -1rem;
        }
        .cs-quote-text {
            font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.95; color: rgba(255,255,255,0.92);
            color: #e0e0e0; font-style: italic; max-width: 680px; margin-bottom: 2rem;
        }
        .cs-quote-attr { display: flex; align-items: center; gap: 0.8rem; }
        .cs-quote-line {
            width: 32px; height: 2px; background: var(--accent);
            box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
        }
        .cs-quote-name {
            font-family: 'Orbitron', sans-serif; font-size: 0.65rem; font-weight: 700;
            color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase;
        }

        .cs-footer {
            flex-shrink: 0; height: 64px;
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; gap: 10px;
            padding: 0 4vw;
            border-top: 1px solid rgba(255,255,255,0.06);
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
        }
        .cs-footer-main {
            display: flex; align-items: center; justify-content: center;
            gap: 1.2rem; width: 100%;
        }
        .cs-study-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.52rem; font-weight: 900;
            color: var(--accent); letter-spacing: 3px;
            text-transform: uppercase; opacity: 0.7; flex-shrink: 0;
        }
        .cs-footer-divider {
            width: 1px; height: 14px;
            background: rgba(255,255,255,0.12); flex-shrink: 0;
        }
        .cs-steps {
            display: flex; align-items: center; gap: 0;
        }
        .cs-step {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.65rem; font-weight: 700;
            letter-spacing: 2.5px; text-transform: uppercase;
            color: rgba(255,255,255,0.22);
            padding: 4px 10px;
            border-radius: 3px;
            transition: color 0.25s, text-shadow 0.25s, background 0.25s;
            cursor: default; white-space: nowrap;
        }
        .cs-step.active {
            color: var(--accent);
            text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.8);
            background: rgba(var(--accent-rgb), 0.08);
        }
        .cs-step-sep {
            color: rgba(255,255,255,0.1);
            font-size: 0.55rem;
            padding: 0 2px;
            flex-shrink: 0;
        }

        footer {
            background: rgba(0,0,0,0.8); border-top: 2px solid rgba(20,184,166,0.3);
            padding: 40px; text-align: center; color: #e0e0e0; position: relative; z-index: 10;
        }
        .footer-content { max-width: 1200px; margin: 0 auto; }
        .footer-text { margin-bottom: 20px; font-size: 14px; }
        .footer-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .footer-links a { text-decoration: none; color: #14B8A6; transition: all 0.3s; font-size: 14px; }
        .footer-links a:hover { color: #00FFFF; text-shadow: 0 0 10px rgba(0,255,255,0.6); }

        @media (max-width: 1024px) { .cs-card { width: 56vw; } }
        @media (max-width: 768px) {
            .cs-card { width: 80vw; padding: 2rem 1.75rem; }
            .cs-header { padding: 82px 1rem 14px; gap: 0.6rem; }
            .cs-title-label { font-size: 0.7rem; }
            .cs-client-label { display: none; }
            .cs-track { padding: 1.5rem; gap: 1rem; }
            .hero-section { min-height: auto; justify-content: flex-start; padding: 100px 1rem 2.5rem; }

            /* ── Uniform spacing ── */
            .section-title { font-size: 1.6rem; margin-bottom: 2rem; padding-left: 1rem; padding-right: 1rem; }
        }
        @media (max-width: 480px) { .cs-card { width: 92vw; padding: 1.5rem; } }

        /* ── Case Study CTA ────────────────────────────────── */
        .cta-section {
            position: relative;
            z-index: 10;
            padding: 14rem 2rem;
        }

        .cta-card {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #00ffff;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            cursor: pointer;
            border-radius: 12px;
        }

        .cta-card__border {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            z-index: 1;
            border: 2.5px solid transparent;
            pointer-events: none;
            background:
                linear-gradient(#000000 0 100%) padding-box,
                linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
                radial-gradient(at var(--pointer-x) var(--pointer-y), var(--glow-color) 0px, transparent 45%) border-box,
                radial-gradient(at 80% 20%, var(--glow-color) 0px, transparent 55%) border-box,
                radial-gradient(at 20% 80%, var(--glow-color) 0px, transparent 55%) border-box,
                radial-gradient(at 50% 0%, var(--glow-color) 0px, transparent 60%) border-box,
                radial-gradient(at 50% 100%, var(--glow-color) 0px, transparent 60%) border-box,
                linear-gradient(var(--glow-color) 0 100%) border-box;
            opacity: var(--proximity);
            mask-image: conic-gradient(from var(--pointer-deg) at center, black 20%, transparent 35%, transparent 65%, black 80%);
            -webkit-mask-image: conic-gradient(from var(--pointer-deg) at center, black 20%, transparent 35%, transparent 65%, black 80%);
            transition: opacity 0.3s ease-out;
        }

        .cta-card__glow {
            position: absolute;
            inset: -25px;
            pointer-events: none;
            z-index: 1;
            border-radius: inherit;
            mask-image: conic-gradient(from var(--pointer-deg) at center, black 5%, transparent 15%, transparent 85%, black 95%);
            -webkit-mask-image: conic-gradient(from var(--pointer-deg) at center, black 5%, transparent 15%, transparent 85%, black 95%);
            opacity: var(--proximity);
            mix-blend-mode: plus-lighter;
            transition: opacity 0.3s ease-out;
        }

        .cta-card__glow::before {
            content: "";
            position: absolute;
            inset: 25px;
            border-radius: inherit;
            box-shadow:
                inset 0 0 0 1px var(--glow-color),
                inset 0 0 3px 1px var(--glow-color),
                inset 0 0 8px 2px var(--glow-color),
                0 0 3px 1px var(--glow-color),
                0 0 8px 2px var(--glow-color),
                0 0 15px 3px var(--glow-color);
        }

        .cta-card__inner {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            padding: 5rem 3rem;
            text-align: center;
            margin: 1px;
            height: calc(100% - 2px);
        }

        .cta-card__inner h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
            animation: glow 3s ease-in-out infinite;
        }

        .cta-card__inner p {
            color: rgba(255, 255, 255, 0.75);
            text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-card__btn {
            display: inline-block;
            padding: 1.1rem 3rem;
            border-radius: 8px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            color: #000000;
            background: linear-gradient(135deg, #FFFF00, #00FFFF);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-card__btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 255, 0, 0.2);
        }

            .section-title { text-align: center; font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 700; margin-bottom: 5rem; color: #ffffff; position: relative; z-index: 2; animation: glow 3s ease-in-out infinite; }
            .faq { padding: 6rem 0 15rem; }
            .faq-container { max-width: 900px; margin: 0 auto; }
            .faq-item { --pointer-x: 50%; --pointer-y: 50%; --pointer-deg: 45deg; --proximity: 0; --glow-color: #e040fb; position: relative; cursor: pointer; border-radius: 12px; margin-bottom: 1.5rem; }
            .faq-item:nth-child(1) { --glow-color: #e040fb; }
            .faq-item:nth-child(2) { --glow-color: #00e5ff; }
            .faq-item:nth-child(3) { --glow-color: #76ff03; }
            .faq-item:nth-child(4) { --glow-color: #ff3d00; }
            .faq-item:nth-child(5) { --glow-color: #FFD700; }
            .faq-item:nth-child(6) { --glow-color: #ff6d00; }
            .faq-item-inner { position: relative; z-index: 2; background: #000000; border: 0.5px solid rgba(255, 255, 255, 0.15); border-radius: inherit; margin: 1px; overflow: hidden; transition: border-color 0.3s ease; }
            .faq-question { padding: 2rem; background: transparent; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; justify-content: space-between; align-items: center; }
            .faq-question:hover { background: rgba(255, 255, 255, 0.02); }
            .faq-question h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 600; margin: 0; background: linear-gradient(135deg, #ffffff, #00ffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
            .faq-toggle { font-size: 1.5rem; color: #14B8A6; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
            .faq-toggle.active { transform: rotate(180deg); }
            .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
            .faq-answer.active { max-height: 500px; }
            .faq-answer p { padding: 2rem; color: rgba(255, 255, 255, 0.82); line-height: 1.8; }

            .cta { --pointer-x: 50%; --pointer-y: 50%; --pointer-deg: 45deg; --proximity: 0; --glow-color: #00ffff; position: relative; cursor: pointer; border-radius: 12px; max-width: 900px; margin: 0 auto 10rem; }
            .cta-inner { position: relative; z-index: 2; background: #000000; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: inherit; padding: 5rem 3rem; text-align: center; margin: 1px; }
            .cta h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: #ffffff; animation: glow 3s ease-in-out infinite; }
            .cta p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7); }
            .cta .btn-primary { display: inline-block; padding: 1.1rem 3rem; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none; background: linear-gradient(135deg, #FFFF00, #00FFFF); color: #000000; box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }

        /* ════ BRADLEY VIDEO TESTIMONIAL ════ */
        .bvt-section {
            padding: 6rem 40px;
            position: relative;
            background: rgba(20, 184, 166, 0.03);
        }
        .bvt-section::before {
            content: '';
            position: absolute; top: 0; left: 50%;
            transform: translateX(-50%);
            width: 60%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(20,184,166,0.4), rgba(0,255,255,0.3), transparent);
        }
        .bvt-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
        }
        .bvt-text-col {
            text-align: center;
        }
        .bvt-video-card {
            width: 100%;
            background: rgba(0,0,0,0.90);
            border: 1px solid rgba(0,255,255,0.15);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0,255,255,0.08);
        }
        .bvt-badge {
            display: inline-block;
            background: rgba(20,184,166,0.12);
            border: 1px solid rgba(20,184,166,0.35);
            color: #14B8A6;
            font-size: 0.72rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0.4rem 1.1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }
        .bvt-heading {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: 1.5px;
        }
        .bvt-subtext {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.9);
        }
        .bvt-player {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #050505;
        }
        .bvt-player iframe,
        .bvt-player video {
            width: 100%;
            height: 100%;
            display: block;
            border: none;
        }
        .bvt-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            background: linear-gradient(135deg, #050a0a 0%, #001a1a 50%, #050a0a 100%);
        }
        .bvt-play-btn svg {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 0 12px rgba(0,255,255,0.5));
        }
        .bvt-placeholder-text {
            color: rgba(0,255,255,0.5);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .bvt-attr {
            color: rgba(255,255,255,0.45);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        @media (max-width: 768px) {
            .bvt-section { padding: 4rem 20px; }
            .bvt-heading { font-size: 1.6rem; }
        }
            .cta .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 255, 0, 0.2); }

        /* ── Mobile FAQ/CTA overrides (MUST come after desktop styles) ── */
        @media (max-width: 768px) {
            .section-title { font-size: 1.6rem; margin-bottom: 2rem; padding-left: 1rem; padding-right: 1rem; }
            .cs-metrics { justify-content: center; }
            .faq { padding: 2.5rem 0; }
            .faq-item { margin-bottom: 0.4rem; }
            .faq-question { padding: 0.75rem 1rem; }
            .faq-question h3 { font-size: 0.85rem; padding-right: 1.5rem; }
            .faq-answer p { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
            .cta-section { padding: 2.5rem 0; }
            .cta-card__inner { padding: 2.5rem 1rem; }
            .cta-card__inner h2 { font-size: 1.6rem; }
            .cta-card__inner p { font-size: 0.95rem; }
            .cta { margin-bottom: 2.5rem; }
            .cta-inner { padding: 2.5rem 1rem; }
            .cta h2 { font-size: 1.6rem; }
            .cta p { font-size: 0.95rem; }
            .bvt-section { padding: 2.5rem 1rem; }
        }
