        @property --rotation {
            syntax: '<angle>';
            inherits: false;
            initial-value: 0deg;
        }

        @keyframes rotate-gradient {
            to { --rotation: 360deg; }
        }

        html {
            overflow-x: hidden;
            background-color: #050505;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            background-color: transparent;
            overflow-x: hidden;
        }

        /* Fluid background canvas */
        #liquid-bg {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* Content wrapper */
        .content-wrapper {
            position: relative;
            z-index: 1;
            overflow-x: hidden;
        }

        /* Main Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 20px 50px 20px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 80%;
            background: radial-gradient(
                ellipse at center,
                rgba(5,5,5,0.5) 0%,
                rgba(5,5,5,0.3) 35%,
                rgba(5,5,5,0.1) 60%,
                transparent 85%
            );
            z-index: 0;
            pointer-events: none;
        }

        /* Section heading vignette */
        .section-title {
            position: relative;
            z-index: 1;
        }
        .section-vignette {
            position: relative;
        }
        .section-vignette::before {
            display: none;
        }

        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background-color: rgba(20, 184, 166, 0.08);
            border: 1px solid rgba(20, 184, 166, 0.4);
            border-radius: 50px;
            color: #14B8A6;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.1;
            color: #ffffff;

            animation: glow 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 3rem;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            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;
            display: inline-block;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFFF00, #00FFFF);
            color: #000000;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .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);
        }

        .btn-secondary {
            background-color: transparent;
            color: #00FFFF;
            border: 0.5px solid rgba(0, 255, 255, 0.6);
        }

        .btn-secondary:hover {
            background-color: rgba(0, 255, 255, 0.06);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Section Styling */
        section {
            padding: 180px 20px;
            position: relative;
        }

        /* Subtle gradient divider between sections — disabled */
        section:not(:last-of-type)::after {
            display: none;
        }

.section-title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,0.9), 0 8px 40px rgba(0,0,0,0.8);
            position: relative;
            z-index: 2;
            animation: glow 3s ease-in-out infinite;
        }

        .section-title::before {
            display: none;
        }


        .gradient-text {
            text-shadow: none !important;
        }

        /* Features Section */
        .features {
            background-color: transparent;
            padding-top: 260px;
        }

        .features::before {
            display: none;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ── Glowing Edge Card ─────────────────────────────────── */
        .feature-card {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #ff00aa;
            position: relative;
            cursor: pointer;
            border-radius: 12px;
        }
        .feature-card:nth-child(1) { --glow-color: #ff00aa; } /* neon magenta */
        .feature-card:nth-child(2) { --glow-color: #00ffff; } /* neon cyan */
        .feature-card:nth-child(3) { --glow-color: #39ff14; } /* neon green */
        .feature-card:nth-child(4) { --glow-color: #ff6600; } /* neon orange */
        .feature-card:nth-child(5) { --glow-color: #4d88ff; } /* neon blue */
        .feature-card:nth-child(6) { --glow-color: #ffff00; } /* neon yellow */

        .feature-card-inner {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            padding: 3rem;
            height: calc(100% - 2px);
            margin: 1px;
        }

        .feature-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: #00ffff;
        }

        .gc-glow::before {
            content: "";
            position: absolute;
            inset: 25px;
            border-radius: inherit;
            box-shadow:
                inset 0 0 0 1px var(--glow-color),
                inset 0 0 4px 1px var(--glow-color),
                0 0 4px 1px var(--glow-color),
                0 0 12px 2px var(--glow-color);
        }


        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Generic Glow Card Base */
        .glow-card {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            position: relative;
            border-radius: 12px;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 6rem auto;
            max-width: 1200px;
        }

        .stat-item {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #00ffff;
            position: relative;
            cursor: pointer;
            border-radius: 12px;
        }
        .stat-item:nth-child(1) { --glow-color: #ff00aa; }
        .stat-item:nth-child(2) { --glow-color: #00ffff; }
        .stat-item:nth-child(3) { --glow-color: #39ff14; }
        .stat-item:nth-child(4) { --glow-color: #ff6600; }

        .stat-item::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: #000000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 2;
        }

        .stat-item-inner {
            position: relative;
            z-index: 3;
            background: transparent;
            border: none;
            border-radius: inherit;
            padding: 2.5rem 1.5rem;
            text-align: center;
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff, #FFFF00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Powered By Section */
        .powered-by {
            background: linear-gradient(to bottom, transparent 0%, #000000 8%, #000000 92%, transparent 100%);
            text-align: center;
            position: relative;
            overflow: visible;
        }

        .powered-by .section-title {
            position: relative;
            z-index: 2;
            text-shadow: none;
            animation: none;
        }

        /* Image Trail */
        .image-trail-wrap {
            --border-size: 1.5px;
            --gradient: conic-gradient(
                from var(--rotation) at 50% 50% in oklab,
                oklch(0.63 0.2 251.22) 27%,
                oklch(0.67 0.21 25.81) 33%,
                oklch(0.9 0.19 93.93) 41%,
                oklch(0.79 0.25 150.49) 49%,
                oklch(0.63 0.2 251.22) 65%,
                oklch(0.72 0.21 150.89) 93%,
                oklch(0.63 0.2 251.22)
            );
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            max-width: none;
            margin-top: 2rem;
            border-radius: 24px;
            animation: rotate-gradient 5s infinite linear;
        }

        /* Blurred glow behind image trail */
        .image-trail-wrap::before {
            content: '';
            position: absolute;
            inset: calc(var(--border-size) * -1);
            border-radius: inherit;
            background: var(--gradient);
            z-index: -1;
            filter: blur(28px);
            opacity: 1;
        }

        /* Solid black bg to prevent bleed */
        .image-trail-wrap::after {
            content: '';
            position: absolute;
            inset: var(--border-size);
            border-radius: inherit;
            background: #000000;
            z-index: 0;
        }

        /* Sharp rotating border */
        .image-trail-border {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: var(--border-size);
            background: var(--gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            z-index: 3;
        }
        .image-trail-container {
            position: relative;
            z-index: 2;
            height: 500px;
            overflow: hidden;
            background: #000000;
            border: none;
            border-radius: inherit;
            cursor: crosshair;
            touch-action: none;
            margin: var(--border-size);
        }

        .image-trail-header {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 1;
            pointer-events: none;
        }

        .content__img {
            width: 120px;
            aspect-ratio: 1;
            border-radius: 16px;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            overflow: hidden;
            will-change: transform, filter;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            background: #ffffff;
        }

        .content__img-inner {
            background-size: 70%;
            background-repeat: no-repeat;
            background-position: center;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* FAQ Section */
        .faq {
            background-color: transparent;
            padding: 6rem 20px 15rem;
        }

        .faq::before {
            display: none;
        }

        .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; } /* purple */
        .faq-item:nth-child(2) { --glow-color: #00e5ff; } /* cyan */
        .faq-item:nth-child(3) { --glow-color: #76ff03; } /* lime */
        .faq-item:nth-child(4) { --glow-color: #ff3d00; } /* red */
        .faq-item:nth-child(5) { --glow-color: #FFD700; } /* gold */
        .faq-item:nth-child(6) { --glow-color: #ff6d00; } /* orange */
        .faq-item:nth-child(7) { --glow-color: #14B8A6; } /* teal */
        .faq-item:nth-child(8) { --glow-color: #ff4081; } /* hot pink */
        .faq-item:nth-child(9) { --glow-color: #448aff; } /* blue */
        .faq-item:nth-child(10) { --glow-color: #1de9b6; } /* mint */

        .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-item:hover .faq-item-inner {
            border: 0.5px solid rgba(255, 255, 255, 0.15);
        }

        .faq-question {
            padding: 2rem;
            background: transparent;
            border-left: none;
            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;
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .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);
            background-color: transparent;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 2rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: transparent;
        }

        /* testimonials section overlay removed */

        .testimonial-dots { display: none; }

        .testimonials-carousel {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        /* Track is the visual card — border, radius, clip, and solid background all here */
        .carousel-track {
            position: relative;
            min-height: 540px;
            border-radius: 12px;
            overflow: visible;
            background: transparent;
            border: none;
        }

        /* Cards fill the track — solid background prevents any bleed during fade */
        .testimonial-card {
            position: absolute;
            inset: 0;
            background: transparent;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.7s ease;
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #00ffff;
            border-radius: 12px;
        }

        .testimonial-card.active {
            opacity: 1;
            pointer-events: auto;
        }

        .testimonial-card-wrap {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            height: 100%;
            margin: 1px;
            overflow: hidden;
        }

        /* Inner is layout only — no visual styling, track handles that */
        .testimonial-card-inner {
            display: flex;
            flex-direction: row;
            height: 100%;
            min-height: 540px;
        }

        .testimonial-card-inner.img-left {
            flex-direction: row-reverse;
        }

        .testimonial-card-text {
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.75rem;
            text-align: left;
        }

        .testimonial-card-img {
            flex: 0 0 48%;
            width: 48%;
            object-fit: cover;
            object-position: center;
            display: block;
            margin: auto 0;
            padding: 0 2rem;
        }


        .stars {
            color: #FFD700;
            font-size: 1rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.82);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            color: #14B8A6;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
        }

        .testimonial-subtitle {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
        }

        /* CTA Section */
        .cta-section { padding: 0 20px; }
        .cta {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #00ffff; /* neon cyan */
            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);
        }

        /* Footer */
        footer {
            background-color: rgba(12, 12, 12, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #14B8A6;
            text-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }


        /* ── Word-by-Word Reveal ────────────────────────────────────────── */
        .word-reveal span {
            display: inline-block;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        /* ── View Transitions ───────────────────────────────────────────── */
        @keyframes vt-out { from { opacity:1; transform:translateY(0);    } to { opacity:0; transform:translateY(-10px); } }
        @keyframes vt-in  { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0);     } }
        ::view-transition-old(root) { animation: vt-out 0.28s ease forwards; }
        ::view-transition-new(root) { animation: vt-in  0.38s ease forwards; }

        /* Voice of the Client Section */
        .voc-card {
            --glow-color: #00ffff;
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            position: relative;
            border-radius: 12px;
            max-width: 900px;
            margin: 0 auto;
        }

        .voc-card-inner {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            margin: 1px;
            display: flex;
            flex-direction: row;
            min-height: 360px;
            overflow: hidden;
        }

        .voc-quote-side {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.75rem;
        }

        .voc-quote-text {
            color: rgba(255, 255, 255, 0.82);
            font-size: 1rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 0.25rem;
            border: none;
        }

        .voc-author {
            color: #14B8A6;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }

        .voc-meta {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
        }

        .voc-case-link {
            color: #00ffff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 0.5rem;
            display: inline-block;
            transition: color 0.2s ease;
        }

        .voc-case-link:hover {
            color: #14B8A6;
        }

        .voc-video-side {
            flex: 0 0 55%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            border-left: 1px solid rgba(255, 255, 255, 0.06);
        }

        .voc-video-side iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: none;
            border-radius: 8px;
        }

        /* ── No border animations on iPad & mobile ── */
        @media (max-width: 1024px) {
            .image-trail-wrap::before,
            .image-trail-border {
                display: none;
            }

            .image-trail-wrap {
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        @media (max-width: 768px) {
            /* ── Global mobile reset: uniform spacing, zero side margins ── */
            section {
                padding: 2.5rem 0;
                margin-left: 0;
                margin-right: 0;
            }

            .container {
                padding: 0;
                margin-left: 0;
                margin-right: 0;
            }

            /* ── Section titles ── */
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 2rem;
            }

            /* ── Hero ── */
            .hero {
                min-height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 100px 1rem 2.5rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
                margin-bottom: 1.5rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .hero-buttons {
                gap: 1rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 0.8rem;
            }

            /* ── Features ── */
            .features {
                padding-top: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card-inner {
                padding: 1.5rem 1rem;
            }

            .feature-card h3 {
                font-size: 1.15rem;
                margin-bottom: 0.75rem;
            }

            .feature-card p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            /* ── Stats ── */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                margin: 2rem 0.5rem;
                padding: 0;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-item-inner {
                padding: 1.25rem 0.75rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            /* ── AI Infrastructure / Powered By: HIDDEN on mobile ── */
            .powered-by {
                display: none;
            }

            /* ── CTA ── */
            .cta h2 {
                font-size: 1.6rem;
            }

            .cta p {
                font-size: 0.95rem;
            }

            .cta-inner {
                padding: 2.5rem 1rem;
            }

            .cta-section {
                padding: 0;
            }

            .cta {
                margin-bottom: 2.5rem;
            }

            /* ── Voice of Client card ── */
            .voc-card-inner {
                flex-direction: column;
                min-height: auto;
            }

            .voc-quote-side {
                padding: 1.25rem 1rem;
            }

            .voc-quote-text {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .voc-video-side {
                flex: none;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                padding: 1rem;
            }

            /* ── Testimonial carousel ── */
            .carousel-track {
                min-height: auto;
            }

            /* Active card drives height on mobile; inactive cards overlap */
            .testimonial-card {
                position: absolute;
                inset: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .testimonial-card.active {
                position: relative;
                inset: auto;
                visibility: visible;
                pointer-events: auto;
            }

            .testimonial-card-wrap {
                height: auto;
            }

            .testimonial-card-inner {
                flex-direction: column;
                min-height: auto;
                height: auto;
            }

            .testimonial-card-inner.img-left {
                flex-direction: column;
            }

            .testimonial-card-img {
                flex: none;
                width: 57%;
                height: auto;
                margin: 0 auto 0.5rem;
                padding: 0;
                object-fit: contain;
                border-radius: 0;
                order: -1;
                display: block;
            }

            .testimonial-card-text {
                padding: 1.25rem 1rem;
                text-align: center;
                order: 1;
            }

            .testimonial-text {
                font-size: 0.9rem;
                line-height: 1.7;
                margin-bottom: 1rem;
            }

            .testimonial-subtitle {
                font-size: 0.8rem;
            }

            /* Testimonial dots */
            .testimonial-dots {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                padding: 1rem 0 0;
            }
            .testimonial-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255,255,255,0.25);
                border: 1px solid rgba(20,184,166,0.4);
                cursor: pointer;
            }
            .testimonial-dot.active {
                background: #14B8A6;
                box-shadow: 0 0 8px rgba(20,184,166,0.6);
            }

            .overlay-badge {
                padding: 1rem;
                margin-bottom: 1rem;
            }

            /* ── FAQ ── */
            .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 1rem;
                font-size: 0.9rem;
            }

            /* ── Content breathing room from edges ── */
            .section-title,
            .section-subtitle,
            .overlay-text,
            .overlay-badge {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .card-inner,
            .card-inner-center,
            .card-inner-lg {
                margin-left: 0.5rem;
                margin-right: 0.5rem;
            }

            /* ── Risk Reversal / 2-col grids ── */
            .grid-2col,
            .grid-2col-900,
            .grid-2col-700,
            .grid-3col-800 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .card-inner-center {
                padding: 1.5rem 1rem;
            }

            .card-inner {
                padding: 1.5rem 1rem;
            }

            /* ── Chaos Tax card ── */
            .card-inner-lg {
                padding: 1.25rem 1rem;
            }

            .card-heading-orange {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
            }

            .flex-row-divider,
            .flex-row-divider-lg,
            .flex-row-total {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }

            .price-value,
            .price-total-gold {
                margin-left: 0;
            }

            .price-value {
                font-size: 1rem;
            }

            .price-total-gold {
                font-size: 1.3rem;
            }

            .card-note-muted {
                font-size: 0.8rem;
                margin-top: 1.2rem;
            }

            /* ── Glow effects: contain overflow on mobile ── */
            .glow-card {
                overflow: hidden;
            }

            .section-title::before {
                width: 100%;
            }

            /* ── Utility-padded sections: uniform on mobile ── */
            .section-pad-5,
            .section-pad-6 {
                padding: 2.5rem 0;
            }

            /* ── Stars alignment on stacked cards ── */
            .stars {
                margin-bottom: 0.5rem;
            }

            /* ── VOC card: center text on mobile ── */
            .voc-quote-side {
                text-align: center;
            }

            .voc-case-link {
                display: block;
                margin-top: 0.75rem;
            }
        }

        /* ── Extra-small screens (iPhone SE, narrow devices) ── */
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stats-grid {
                gap: 0.5rem;
                margin: 2rem 0.25rem;
            }

            .cta h2 {
                font-size: 1.4rem;
            }
        }
