.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Helvetica";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.3px;--e-global-typography-secondary-font-family:"Helvetica";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-secondary-line-height:1.3px;--e-global-typography-text-font-family:"Helvetica";--e-global-typography-text-font-weight:400;--e-global-typography-text-text-transform:none;--e-global-typography-text-line-height:1.6px;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#1F0A14;font-size:16px;font-weight:400;}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{background-color:#B0844B;border-style:solid;border-color:#F1F5F9;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{border-style:solid;border-color:#F1F5F9;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
           CSS CUSTOM PROPERTIES
           ============================================ */
        :root {
            --white: #FFFFFF;
            --black: #0F0F0F;
            --gray-50: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #E8E8E8;
            --gray-300: #D4D4D4;
            --gray-400: #A3A3A3;
            --gray-500: #737373;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;

            --coral: #E85D3A;
            --coral-light: #FF7F5C;
            --coral-dark: #C44A2B;
            --amber: #F59E0B;
            --amber-light: #FCD34D;
            --warm-pink: #F472B6;
            --deep-plum: #1E1033;
            --soft-violet: #7C3AED;

            --gradient-hero: linear-gradient(135deg, #E85D3A 0%, #F59E0B 50%, #F472B6 100%);
            --gradient-warm: linear-gradient(135deg, #FFF7ED 0%, #FFF1F2 100%);
            --gradient-dark: linear-gradient(135deg, #1E1033 0%, #0F0F0F 100%);

            --text-primary: #171717;
            --text-secondary: #525252;
            --text-tertiary: #737373;

            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, sans-serif;

            --section-pad: clamp(80px, 10vw, 140px);
            --container-max: 1200px;
            --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 10px;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::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);
            color: var(--text-primary);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img, svg { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 64px);
        }

        /* ============================================
           SCROLL REVEAL
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }
        .reveal-d4 { transition-delay: 0.4s; }

        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0 0;
            height: 72px;
            display: flex;
            align-items: center;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0,0,0,0.06);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--white);
            transition: color 0.3s ease;
        }
        .nav.scrolled .nav-logo { color: var(--text-primary); }

        .nav-logo svg { transition: all 0.3s ease; }
        .nav.scrolled .nav-logo svg .logo-mark { fill: var(--coral); }
        .nav.scrolled .nav-logo svg .logo-l { fill: white; }
        .nav.scrolled .nav-logo svg .logo-p { fill: white; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
            transition: color 0.2s ease;
        }
        .nav-links a:hover { color: var(--white); }
        .nav.scrolled .nav-links a { color: var(--text-secondary); }
        .nav.scrolled .nav-links a:hover { color: var(--text-primary); }

        .nav-cta-btn {
            padding: 10px 24px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 999px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .nav-cta-btn:hover {
            background: rgba(255,255,255,0.25);
        }
        .nav.scrolled .nav-cta-btn {
            background: var(--coral);
            color: var(--white);
            border-color: var(--coral);
        }
        .nav.scrolled .nav-cta-btn:hover {
            background: var(--coral-dark);
            border-color: var(--coral-dark);
        }

        /* Mobile nav */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: background 0.3s ease;
        }
        .nav.scrolled .nav-toggle span { background: var(--text-primary); }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 999px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            line-height: 1.25;
        }

        .btn-primary {
            background: var(--white);
            color: var(--coral-dark);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .btn-dark {
            background: var(--text-primary);
            color: var(--white);
        }
        .btn-dark:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .btn-coral {
            background: var(--coral);
            color: var(--white);
        }
        .btn-coral:hover {
            background: var(--coral-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(232,93,58,0.3);
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--gray-200);
        }
        .btn-outline-dark:hover {
            border-color: var(--text-primary);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: rgba(255,255,255,0.12);
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.2);
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,0.2);
        }

        .btn-arrow { transition: transform 0.2s ease; }
        .btn:hover .btn-arrow { transform: translateX(4px); }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            overflow: hidden;
            padding-top: 72px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(244,114,182,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245,158,11,0.3) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: clamp(60px, 8vw, 100px) 0;
        }

        .hero-content { position: relative; z-index: 2; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 32px;
        }

        .hero-badge-dot {
            width: 7px; height: 7px;
            background: var(--white);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 5.5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            color: var(--white);
            margin-bottom: 24px;
            letter-spacing: -0.04em;
        }

        .hero-sub {
            font-size: clamp(1.05rem, 1.5vw, 1.2rem);
            color: rgba(255,255,255,0.85);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

        /* Hero illustration */
        .hero-visual {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-illustration {
            width: 100%;
            max-width: 520px;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
        }

        /* Floating shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero-shape-1 {
            width: 400px; height: 400px;
            background: var(--white);
            top: -10%; right: -5%;
            animation: float 8s ease-in-out infinite;
        }
        .hero-shape-2 {
            width: 250px; height: 250px;
            background: var(--white);
            bottom: 10%; left: -3%;
            animation: float 6s ease-in-out infinite reverse;
        }

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

        /* ============================================
           SECTION SHARED
           ============================================ */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--coral);
            margin-bottom: 16px;
        }
        .section-label::before {
            content: '';
            width: 24px; height: 2px;
            background: var(--coral);
            border-radius: 2px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.08;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: clamp(1rem, 1.3vw, 1.1rem);
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.7;
        }

        /* ============================================
           PROBLEM / OPERATIONAL DRAG
           ============================================ */
        .problem {
            padding: var(--section-pad) 0;
            background: var(--white);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 56px;
        }

        .problem-illustration {
            width: 100%;
            max-width: 480px;
        }

        .drag-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 36px;
        }

        .drag-stat {
            padding: 24px;
            background: var(--gray-50);
            border-radius: var(--radius-md);
            border-left: 3px solid var(--coral);
        }

        .drag-stat-number {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--coral);
            letter-spacing: -0.03em;
        }

        .drag-stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* ============================================
           ENGINE VISUALIZATION
           ============================================ */
        .engine {
            padding: var(--section-pad) 0;
            background: var(--gradient-warm);
            position: relative;
            overflow: hidden;
        }

        .engine::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(232,93,58,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .engine-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .engine-header .section-subtitle { margin: 0 auto; }

        .engine-visual {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .engine-side {
            padding: 40px;
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .engine-isv {
            background: var(--white);
            border: 2px solid var(--gray-200);
        }

        .engine-leap {
            background: var(--gradient-hero);
            color: var(--white);
            border: none;
            box-shadow: 0 20px 60px rgba(232,93,58,0.2);
        }

        .engine-side-icon {
            width: 64px; height: 64px;
            margin: 0 auto 16px;
        }

        .engine-side h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }
        .engine-isv h3 { color: var(--text-primary); }

        .engine-side p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .engine-isv p { color: var(--text-secondary); }
        .engine-leap p { color: rgba(255,255,255,0.85); }

        .engine-connector {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .engine-plus {
            width: 56px; height: 56px;
            background: var(--text-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .engine-equals {
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-tertiary);
        }

        .engine-result {
            margin-top: 56px;
            padding: 40px;
            background: var(--white);
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .engine-result h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .engine-result p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .engine-result-bar {
            display: flex;
            gap: 0;
            margin-top: 24px;
            border-radius: 999px;
            overflow: hidden;
            height: 8px;
            background: var(--gray-100);
        }

        .engine-result-fill {
            height: 100%;
            background: var(--gradient-hero);
            width: 0%;
            border-radius: 999px;
            transition: width 1.5s var(--ease-smooth);
        }

        .engine-result-fill.animated { width: 100%; }

        /* ============================================
           SIX PILLARS
           ============================================ */
        .pillars {
            padding: var(--section-pad) 0;
            background: var(--white);
        }

        .pillars-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .pillars-header .section-subtitle { margin: 0 auto; }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .pillar-card {
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            background: var(--gray-50);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .pillar-card:hover {
            border-color: var(--gray-200);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }

        .pillar-icon {
            width: 52px; height: 52px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .pillar-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .pillar-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        .pillar-number {
            position: absolute;
            top: 20px; right: 24px;
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            color: var(--gray-100);
            line-height: 1;
            pointer-events: none;
        }

        /* ============================================
           ACCOUNTABILITY — OLD vs NEW
           ============================================ */
        .accountability {
            padding: var(--section-pad) 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .accountability::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(232,93,58,0.3), transparent);
        }

        .accountability .section-label { color: var(--coral-light); }
        .accountability .section-label::before { background: var(--coral-light); }
        .accountability .section-title { color: var(--white); }
        .accountability .section-subtitle { color: rgba(255,255,255,0.6); }

        .accountability-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .accountability-header .section-subtitle { margin: 0 auto; }

        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .comparison-card {
            padding: 40px 32px;
            border-radius: var(--radius-lg);
        }

        .comparison-old {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .comparison-new {
            background: linear-gradient(135deg, rgba(232,93,58,0.15), rgba(245,158,11,0.1));
            border: 1px solid rgba(232,93,58,0.2);
        }

        .comparison-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 24px;
        }
        .comparison-old .comparison-tag {
            background: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.4);
        }
        .comparison-new .comparison-tag {
            background: rgba(232,93,58,0.2);
            color: var(--coral-light);
        }

        .comparison-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        .comparison-old h3 { color: rgba(255,255,255,0.5); }
        .comparison-new h3 { color: var(--white); }

        .comparison-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .comparison-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.9rem;
            line-height: 1.55;
        }
        .comparison-old li { color: rgba(255,255,255,0.35); }
        .comparison-new li { color: rgba(255,255,255,0.8); }

        .comparison-list .icon {
            flex-shrink: 0;
            width: 22px; height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            margin-top: 2px;
        }
        .comparison-old .icon {
            background: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.25);
        }
        .comparison-new .icon {
            background: rgba(232,93,58,0.2);
            color: var(--coral-light);
        }

        /* ============================================
           EMOTIONAL SHIFT — Braze-style Typography
           ============================================ */
        .shift {
            padding: var(--section-pad) 0;
            background: var(--white);
            text-align: center;
        }

        .shift-header {
            margin-bottom: 64px;
        }
        .shift-header .section-subtitle { margin: 0 auto; }

        .shift-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 800px;
            margin: 0 auto;
        }

        .shift-card {
            padding: 48px 32px;
            border-radius: var(--radius-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .shift-from {
            background: var(--gray-50);
        }
        .shift-to {
            background: var(--gradient-warm);
        }

        .shift-arrow-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 16px;
        }
        .shift-from .shift-arrow-label { color: var(--gray-400); }
        .shift-to .shift-arrow-label { color: var(--coral); }

        .shift-word {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 12px;
        }
        .shift-from .shift-word { color: var(--gray-300); }
        .shift-to .shift-word {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .shift-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .shift-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            grid-column: 1 / -1;
            padding: 8px 0;
        }

        /* ============================================
           BACKED BY TD SYNNEX
           ============================================ */
        .backed {
            padding: var(--section-pad) 0;
            background: var(--gray-50);
        }

        .backed-content {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .backed-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 56px;
            margin-bottom: 40px;
        }

        .stat-card {
            padding: 32px 16px;
            background: var(--white);
            border-radius: var(--radius-md);
            text-align: center;
            transition: transform 0.2s ease;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .stat-card:hover { transform: translateY(-3px); }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-tertiary);
            font-weight: 500;
        }

        .backed-description {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: var(--section-pad) 0;
            background: var(--gradient-hero);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 36px;
            line-height: 1.65;
        }

        .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           CONTACT
           ============================================ */
        .contact {
            padding: var(--section-pad) 0;
            background: var(--white);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .contact-header .section-subtitle { margin: 0 auto; }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            max-width: 960px;
            margin: 0 auto;
        }

        .contact-info { display: flex; flex-direction: column; justify-content: center; }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .contact-info > p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
            font-size: 0.95rem;
        }

        .contact-channels { display: flex; flex-direction: column; gap: 12px; }

        .contact-channel {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            background: var(--gray-50);
            border-radius: var(--radius-sm);
            transition: transform 0.2s ease;
        }
        .contact-channel:hover { transform: translateX(4px); }

        .channel-icon {
            width: 40px; height: 40px;
            border-radius: var(--radius-sm);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .channel-label { font-size: 0.72rem; color: var(--text-tertiary); font-weight: 500; }
        .channel-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }

        /* Contact form */
        .contact-form-wrapper {
            background: var(--gray-50);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .contact-form-wrapper h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: var(--text-primary);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group.full { grid-column: 1 / -1; }

        .form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.9rem;
            background: var(--white);
            color: var(--text-primary);
            transition: border-color 0.2s ease;
            outline: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--coral);
        }

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

        .form-submit {
            margin-top: 20px;
            width: 100%;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 56px 0 32px;
            background: var(--gray-900);
            color: rgba(255,255,255,0.5);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.65;
            color: rgba(255,255,255,0.4);
        }

        .footer-links {
            display: flex;
            gap: 64px;
        }

        .footer-col h5 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            transition: color 0.2s ease;
        }
        .footer-col a:hover { color: rgba(255,255,255,0.8); }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.8rem;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
            .hero-sub { margin: 0 auto 40px; }
            .hero-actions { justify-content: center; }
            .hero-visual { order: -1; }
            .hero-illustration { max-width: 380px; margin: 0 auto; }

            .problem-grid,
            .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .problem-illustration { max-width: 360px; margin: 0 auto; }

            .engine-visual { grid-template-columns: 1fr; gap: 24px; }
            .engine-connector { flex-direction: row; }

            .pillars-grid { grid-template-columns: 1fr 1fr; }
            .comparison { grid-template-columns: 1fr; }
            .shift-grid { grid-template-columns: 1fr; }
            .shift-connector { display: none; }

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

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

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px; left: 0; right: 0;
                background: var(--white);
                padding: 24px;
                gap: 16px;
                box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            }
            .nav-links.open a { color: var(--text-primary); }
            .nav-links.open .nav-cta-btn {
                background: var(--coral);
                color: var(--white);
                border-color: var(--coral);
                text-align: center;
                display: block;
                padding: 12px 24px;
            }

            .pillars-grid { grid-template-columns: 1fr; }
            .drag-stats { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; }
            .footer-links { flex-direction: column; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }/* End custom CSS */