        /* ========================================
           CSS CUSTOM PROPERTIES
           ======================================== */
        :root {
            /* Colours */
            --bg-primary: #09090B;
            --bg-elevated: #111114;
            --bg-surface: #18181B;
            --accent: #818CF8;
            --accent-bright: #A5B4FC;
            --accent-glow: rgba(129, 140, 248, 0.15);
            --accent-glow-strong: rgba(129, 140, 248, 0.25);
            --text-primary: #FAFAFA;
            --text-secondary: #A1A1AA;
            --text-tertiary: #52525B;
            --border: #1F1F28;
            --border-hover: rgba(129, 140, 248, 0.4);

            /* Typography */
            --font-heading: 'Space Grotesk', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 2rem;
            --text-4xl: 2.5rem;
            --text-hero: clamp(2.75rem, 5.5vw, 4.5rem);

            /* Spacing */
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;
            --space-4xl: 6rem;
            --space-section: clamp(5rem, 10vw, 9rem);

            /* Layout */
            --container: 1200px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;

            /* Transitions */
            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms ease;

            /* Themed surfaces (dark defaults) */
            --on-accent: #09090B;
            --bg-navbar: rgba(10, 10, 11, 0.7);
            --bg-mobile-nav: rgba(10, 10, 11, 0.97);
            --bg-card-glass: rgba(17, 17, 19, 0.6);
            --bg-card-glass-heavy: rgba(17, 17, 19, 0.75);
        }

        /* ========================================
           LIGHT THEME
           ======================================== */
        [data-theme="light"] {
            --bg-primary: #F8F9FC;
            --bg-elevated: #FFFFFF;
            --bg-surface: #EDF0F7;
            --accent: #6366F1;
            --accent-bright: #4F46E5;
            --accent-glow: rgba(99, 102, 241, 0.1);
            --accent-glow-strong: rgba(99, 102, 241, 0.18);
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-tertiary: #94A3B8;
            --border: #E2E8F0;
            --border-hover: rgba(99, 102, 241, 0.4);
            --on-accent: #FFFFFF;
            --bg-navbar: rgba(248, 249, 252, 0.8);
            --bg-mobile-nav: rgba(248, 249, 252, 0.97);
            --bg-card-glass: rgba(255, 255, 255, 0.7);
            --bg-card-glass-heavy: rgba(255, 255, 255, 0.85);
        }

        [data-theme="light"] .hero-bg-ecg { opacity: 0.1; }
        [data-theme="light"] .cta-bg-ecg { opacity: 0.08; }
        [data-theme="light"] .service-card:hover {
            box-shadow: 0 0 40px rgba(99, 102, 241, 0.08), 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        /* Theme transition (respects reduced motion) */
        @media (prefers-reduced-motion: no-preference) {
            html.transitioning *,
            html.transitioning *::before,
            html.transitioning *::after {
                transition: background-color 0.35s ease,
                            color 0.35s ease,
                            border-color 0.35s ease,
                            box-shadow 0.35s ease !important;
            }
        }

        /* ========================================
           RESET
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: var(--text-base);
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            overflow-x: hidden;
        }

        img, svg { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button { font: inherit; cursor: pointer; border: none; background: none; }
        ul, ol { list-style: none; }

        /* ========================================
           UTILITIES
           ======================================== */
        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--space-xl);
        }

        /* ========================================
           SCROLL PROGRESS INDICATOR
           ======================================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--accent);
            z-index: 1100;
            pointer-events: none;
            box-shadow: 0 0 10px var(--accent-glow-strong);
        }

        /* ========================================
           NAVBAR
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--space-lg) 0;
            background: var(--bg-navbar);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid transparent;
            transition: border-color var(--transition-base), padding var(--transition-base);
        }

        .navbar.scrolled {
            border-bottom-color: var(--border);
            padding: var(--space-md) 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            z-index: 1001;
        }

        .logo-ecg {
            width: 38px;
            height: 30px;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-size: var(--text-xl);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        /* Nav links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-2xl);
        }

        .nav-links a:not(.btn) {
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
            position: relative;
        }

        .nav-links a:not(.btn)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width var(--transition-base);
        }

        .nav-links a:not(.btn):hover {
            color: var(--text-primary);
        }

        .nav-links a:not(.btn):hover::after {
            width: 100%;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: 0.7rem 1.6rem;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: var(--text-sm);
            font-weight: 600;
            letter-spacing: 0.01em;
            transition: all var(--transition-base);
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--on-accent);
            box-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(129, 140, 248, 0.08);
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            box-shadow: 0 0 30px var(--accent-glow-strong), 0 0 80px rgba(129, 140, 248, 0.15);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--border-hover);
            background: rgba(129, 140, 248, 0.05);
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            z-index: 1002;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-base);
            transform-origin: center;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile nav overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            z-index: 1001;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--space-2xl);
            padding: 100px var(--space-xl) 120px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-family: var(--font-heading);
            font-size: var(--text-2xl);
            font-weight: 600;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }

        .mobile-nav a:hover {
            color: var(--text-primary);
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: var(--space-4xl);
            overflow: hidden;
        }

        /* ECG background animation */
        .hero-bg-ecg {
            position: absolute;
            top: 50%;
            left: 0;
            width: 200%;
            height: 200px;
            transform: translateY(-50%);
            opacity: 0.06;
            pointer-events: none;
        }

        .hero-bg-ecg path {
            stroke: var(--accent);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 4000;
            stroke-dashoffset: 4000;
            animation: ecgDraw 3s ease-out forwards, ecgSlide 16s linear infinite 3s;
        }

        @keyframes ecgDraw {
            to { stroke-dashoffset: 0; }
        }

        @keyframes ecgSlide {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Radial glow */
        .hero-gradient {
            position: absolute;
            top: -15%;
            right: -5%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(129, 140, 248, 0.07) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-3xl);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: 0.4rem 1.1rem;
            background: rgba(129, 140, 248, 0.07);
            border: 1px solid rgba(129, 140, 248, 0.15);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: 500;
            color: var(--accent);
            margin-bottom: var(--space-2xl);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulseDot 2s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4); }
            50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(129, 140, 248, 0); }
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: var(--text-hero);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -0.035em;
            color: var(--text-primary);
            margin-bottom: var(--space-xl);
        }

        .hero h1 .accent {
            color: var(--accent);
        }

        .hero-sub {
            font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
            color: var(--text-secondary);
            line-height: 1.65;
            max-width: 560px;
            margin-bottom: var(--space-3xl);
        }

        .hero-ctas {
            display: flex;
            gap: var(--space-lg);
            flex-wrap: wrap;
        }

        /* Floating stat cards */
        .hero-stats {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
            flex-shrink: 0;
        }

        .stat-card {
            background: var(--bg-card-glass-heavy);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: var(--space-lg) var(--space-xl);
            animation: float 6s ease-in-out infinite;
            min-width: 230px;
        }

        .stat-card:nth-child(2) { animation-delay: -2s; }
        .stat-card:nth-child(3) { animation-delay: -4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .stat-value {
            font-family: var(--font-heading);
            font-size: var(--text-2xl);
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 2px;
        }

        .stat-label {
            font-size: var(--text-sm);
            color: var(--text-secondary);
        }

        .stat-live {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: var(--text-xs);
            color: var(--accent);
            margin-top: var(--space-sm);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .live-dot {
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulseDot 1.5s ease-in-out infinite;
        }

        /* ========================================
           TRUST BAR
           ======================================== */
        .trust-bar {
            padding: var(--space-3xl) 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--bg-primary);
        }

        .trust-bar .container {
            text-align: center;
        }

        .trust-label {
            font-size: var(--text-sm);
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: var(--space-2xl);
            font-weight: 500;
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: clamp(var(--space-2xl), 5vw, var(--space-4xl));
            flex-wrap: wrap;
        }

        .trust-stat {
            text-align: center;
        }

        .trust-stat-value {
            font-family: var(--font-heading);
            font-size: var(--text-3xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .trust-stat-label {
            font-size: var(--text-sm);
            color: var(--text-secondary);
        }

        /* ========================================
           SHARED SECTION STYLES
           ======================================== */
        .section {
            padding: var(--space-section) 0;
        }

        .section-label {
            font-size: var(--text-xs);
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: var(--space-lg);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.12;
            color: var(--text-primary);
            margin-bottom: var(--space-lg);
        }

        .section-sub {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.65;
        }

        /* ========================================
           SERVICES
           ======================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
            margin-top: var(--space-3xl);
        }

        .service-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: var(--space-2xl);
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity var(--transition-slow);
        }

        .service-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 0 40px rgba(129, 140, 248, 0.06), 0 8px 32px rgba(0, 0, 0, 0.25);
            transform: translateY(-3px);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(129, 140, 248, 0.08);
            border: 1px solid rgba(129, 140, 248, 0.12);
            border-radius: var(--radius-md);
            margin-bottom: var(--space-xl);
            color: var(--accent);
        }

        .service-icon svg {
            width: 22px;
            height: 22px;
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: var(--text-xl);
            font-weight: 700;
            margin-bottom: var(--space-md);
            color: var(--text-primary);
        }

        .service-card p {
            font-size: var(--text-base);
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ========================================
           HOW IT WORKS
           ======================================== */
        .how-it-works {
            background: var(--bg-elevated);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .how-it-works-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .how-it-works-header .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
            position: relative;
        }

        .steps-line {
            position: absolute;
            top: 24px;
            left: calc(16.66% + 24px);
            right: calc(16.66% + 24px);
            height: 1px;
            background: linear-gradient(90deg, var(--border), rgba(129, 140, 248, 0.3), var(--border));
        }

        .steps-line::after {
            content: '';
            position: absolute;
            top: -3px;
            left: 0;
            width: 7px;
            height: 7px;
            background: var(--accent);
            border-radius: 50%;
            animation: moveDot 4s ease-in-out infinite;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        @keyframes moveDot {
            0% { left: 0; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 50%;
            font-family: var(--font-heading);
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--accent);
            margin: 0 auto var(--space-xl);
            transition: all var(--transition-base);
        }

        .step:hover .step-number {
            border-color: var(--accent);
            box-shadow: 0 0 24px var(--accent-glow);
        }

        .step h3 {
            font-family: var(--font-heading);
            font-size: var(--text-lg);
            font-weight: 700;
            margin-bottom: var(--space-md);
            color: var(--text-primary);
        }

        .step p {
            font-size: var(--text-sm);
            color: var(--text-secondary);
            line-height: 1.65;
            max-width: 300px;
            margin: 0 auto;
        }

        /* ========================================
           INDUSTRIES
           ======================================== */
        .industries-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .industries-header .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

        .industry-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            margin-bottom: var(--space-3xl);
        }

        .industry-pill {
            padding: 0.65rem 1.5rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-base);
            cursor: default;
        }

        .industry-pill:hover {
            border-color: var(--border-hover);
            color: var(--accent);
            background: rgba(129, 140, 248, 0.05);
            transform: translateY(-2px);
        }

        .industries-tagline {
            text-align: center;
            font-size: var(--text-lg);
            color: var(--text-secondary);
            font-style: italic;
        }

        /* ========================================
           CTA / CONTACT
           ======================================== */
        .cta-section {
            position: relative;
            padding: var(--space-section) 0;
            overflow: hidden;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .cta-bg-ecg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            opacity: 0.05;
            pointer-events: none;
        }

        .cta-bg-ecg path {
            stroke: var(--accent);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-gradient {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 450px;
            background: radial-gradient(ellipse, rgba(129, 140, 248, 0.06) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(var(--text-3xl), 4.5vw, var(--text-4xl));
            font-weight: 800;
            letter-spacing: -0.025em;
            margin-bottom: var(--space-lg);
            line-height: 1.12;
        }

        .cta-sub {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto var(--space-3xl);
            line-height: 1.65;
        }

        .cta-main-btn {
            margin-bottom: var(--space-xl);
        }

        .cta-main-btn .btn {
            font-size: var(--text-base);
            padding: 0.9rem 2.4rem;
        }

        .cta-divider {
            color: var(--text-tertiary);
            font-size: var(--text-sm);
            margin-bottom: var(--space-xl);
        }

        .cta-form {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            max-width: 440px;
            margin: 0 auto;
        }

        .cta-form input[type="email"] {
            flex: 1;
            padding: 0.8rem 1.3rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: var(--text-sm);
            outline: none;
            transition: border-color var(--transition-base);
            min-width: 0;
        }

        .cta-form input[type="email"]::placeholder {
            color: var(--text-tertiary);
        }

        .cta-form input[type="email"]:focus {
            border-color: var(--border-hover);
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            border-top: 1px solid var(--border);
            padding: var(--space-3xl) 0;
        }

        .footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--space-xl);
        }

        .footer-links {
            display: flex;
            gap: var(--space-xl);
        }

        .footer-links a {
            font-size: var(--text-sm);
            color: var(--text-tertiary);
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--text-secondary);
        }

        .footer-copy {
            font-size: var(--text-sm);
            color: var(--text-tertiary);
        }

        /* ========================================
           SCROLL-TRIGGERED REVEAL ANIMATIONS
           ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.35s; }

        /* ========================================
           PREFERS REDUCED MOTION
           ======================================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            html { scroll-behavior: auto; }

            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ========================================
           THEME TOGGLE
           ======================================== */
        .theme-toggle {
            position: fixed;
            bottom: var(--space-xl);
            left: var(--space-xl);
            z-index: 1000;
            display: flex;
            background: var(--bg-navbar);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            padding: 3px;
        }

        .theme-option {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: var(--text-xs);
            font-weight: 500;
            color: var(--text-tertiary);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color var(--transition-base), background-color var(--transition-base);
        }

        .theme-option svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .theme-option.active {
            background: var(--bg-surface);
            color: var(--text-primary);
        }

        .theme-option:hover:not(.active) {
            color: var(--text-secondary);
        }

        /* ========================================
           RESPONSIVE BREAKPOINTS
           ======================================== */

        /* Tablet */
        @media (max-width: 1024px) {
            .hero-stats {
                display: none;
            }

            .hero-content {
                max-width: 100%;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: flex; }

            /* Hide ECG lifeline on mobile — it compresses into dashes */
            .hero-bg-ecg { display: none; }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: 1fr;
                gap: var(--space-3xl);
            }

            .steps-line { display: none; }

            .cta-form {
                flex-direction: column;
            }

            .footer .container {
                flex-direction: column;
                text-align: center;
                gap: var(--space-lg);
            }

            .footer {
                padding-bottom: var(--space-4xl);
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .container {
                padding: 0 var(--space-lg);
            }

            .hero-ctas {
                flex-direction: column;
            }

            .hero-ctas .btn {
                width: 100%;
                text-align: center;
            }

            .trust-stats {
                flex-direction: column;
                gap: var(--space-xl);
            }

            .industry-grid {
                gap: var(--space-sm);
            }

            .theme-toggle {
                left: 50%;
                transform: translateX(-50%);
                bottom: var(--space-lg);
            }

            .industry-pill {
                font-size: var(--text-xs);
                padding: 0.5rem 1rem;
            }
        }


/* ========================================
   INNER PAGE STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    max-width: 720px;
}

.page-hero h1 .accent { color: var(--accent); }

.page-hero-sub {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 600px;
}

/* Service Detail Block */
.service-detail {
    padding: var(--space-section) 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
}

.service-detail-icon svg { width: 28px; height: 28px; }

.service-detail h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.service-detail-body p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.service-detail-body h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-2xl);
    margin-top: var(--space-2xl);
}

.highlight-box h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.highlight-box p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Process Detail */
.process-step-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border);
}

.process-step-detail:last-child { border-bottom: none; }

.process-step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.process-step-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.process-step-content p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.process-step-content p:last-child { margin-bottom: 0; }

/* Expect Grid */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.expect-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-slow);
}

.expect-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.expect-card-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.expect-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.expect-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-xl) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding-bottom: var(--space-xl);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Industry Detail Cards */
.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.industry-detail-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
}

.industry-detail-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.industry-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius-md);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
}

.industry-detail-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.industry-pain {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.industry-detail-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.industry-freed {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(129, 140, 248, 0.05);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.industry-freed svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Industry CTA card — spans full grid width */
.industry-cta-card {
    grid-column: 1 / -1;
    text-align: center;
    border-color: var(--accent);
    border-style: dashed;
    background: var(--accent-glow);
}

.industry-cta-card h3 {
    color: var(--accent);
}

/* Contact Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.form-group { margin-bottom: var(--space-xl); }

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-base);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-tertiary); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--border-hover); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.contact-info p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.contact-expect-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-expect-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Active nav */
.nav-links a.active:not(.btn) { color: var(--text-primary); }
.nav-links a.active:not(.btn)::after { width: 100%; }

/* Inner page responsive */
@media (max-width: 768px) {
    .service-detail-body,
    .contact-layout,
    .form-row { grid-template-columns: 1fr; }
    .industry-detail-grid { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .process-step-detail { grid-template-columns: 1fr; }
    .process-step-number { width: 48px; height: 48px; font-size: var(--text-lg); }
}
