
        :root {
            --navy: #0D1B2A;
            --navy-mid: #1a3a5c;
            --blue: #0077FF;
            --blue-soft: #e8f2ff;
            --blue-mid: #c7dffe;
            --teal: #27E8DE;
            --teal-soft: #e6fcfa;
            --white: #FFFFFF;
            --bg: #F9FAFB;
            --bg-warm: #F9FAFB;
            --bg-gradient: linear-gradient(135deg, #e0f7f6 0%, #e8f4fd 100%);
            --border: #E5E7EB;
            --border-strong: #D1D5DB;
            --text: #374151;
            --text-mid: #6B7280;
            --text-light: #9CA3AF;
            --red: #DC2626;
            --red-soft: #FEF2F2;
            --green: #059669;
            --green-soft: #F0FDF4;
            --gradient: linear-gradient(135deg, #27E8DE 0%, #0077FF 100%);
            --shadow-xs: 0 1px 2px rgba(13,27,42,0.04);
            --shadow-sm: 0 2px 8px rgba(13,27,42,0.06);
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(13,27,42,0.09);
            --shadow-xl: 0 24px 64px rgba(13,27,42,0.11);
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 20px;
            --radius-pill: 50px;
            --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
        body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; }

        .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
        .section { padding: 64px 0; }

        /* ---- EYEBROW LABEL ---- */
        .eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
            text-transform: uppercase; color: var(--blue);
            margin-bottom: 18px;
        }
        .eyebrow::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
        }

        /* ---- BUTTONS ---- */
        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font); font-weight: 500; font-size: 15px;
            border: none; cursor: pointer; transition: all 0.3s var(--ease);
            border-radius: var(--radius-pill); text-decoration: none;
        }
        .btn-primary {
            background: var(--navy); color: var(--white);
            padding: 14px 28px; letter-spacing: -0.1px;
        }
        .btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
        .btn-secondary {
            background: transparent; color: var(--navy);
            padding: 13px 27px; border: 1.5px solid var(--border-strong);
        }
        .btn-secondary:hover { border-color: var(--navy); background: var(--bg); }
        .btn-sm { padding: 10px 22px; font-size: 14px; }
        .btn-outline-white {
            background: transparent; color: var(--white);
            padding: 13px 27px; border: 1.5px solid rgba(255,255,255,0.3);
        }
        .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

        .arrow-icon { transition: transform 0.3s var(--ease); }
        .btn:hover .arrow-icon { transform: translateX(3px); }

        /* ---- ICON BOX ---- */
        .icon-box {
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .icon-box svg { width: 22px; height: 22px; }
        .icon-blue { background: var(--blue-soft); }
        .icon-blue svg { stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .icon-teal { background: var(--teal-soft); }
        .icon-teal svg { stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

        /* Check */
        .check {
            width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
            background: var(--teal);
            display: inline-flex; align-items: center; justify-content: center;
        }
        .check svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

        /* ================================================================
           HEADER
           ================================================================ */
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 18px 0; background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: all 0.3s var(--ease);
        }
        .header.scrolled { padding: 12px 0; border-bottom-color: var(--border); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; }

        .logo { display: flex; align-items: center; gap: 10px; }
        .logo-img { 
            height: 38px; width: auto; display: block;
            
        }
        .logo { display: flex; align-items: center; }
        .logo-mark svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; }
        .logo-wordmark { font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -0.3px; }
        .logo-wordmark sup { font-size: 10px; font-weight: 500; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; vertical-align: top; margin-top: 3px; display: inline-block; }

        .nav { display: flex; align-items: center; gap: 32px; }
        .nav-link { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
        .nav-link:hover { color: var(--navy); }

        .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
        .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav {
                position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
                background: var(--white); flex-direction: column; align-items: stretch;
                padding: 72px 28px 28px; gap: 0; transition: right 0.4s var(--ease);
                box-shadow: -20px 0 60px rgba(0,0,0,0.07); border-left: 1px solid var(--border);
            }
            .nav.open { right: 0; }
            .nav-link { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
            .nav .btn { margin-top: 20px; justify-content: center; }
        }

        /* ================================================================
           HERO
           ================================================================ */
        .hero {
            padding: 148px 0 96px; position: relative; overflow: hidden;
            background: var(--bg-gradient);
        }
        /* Subtle grid background */
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 48px 48px;
            opacity: 0.35; pointer-events: none;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
        }
        .hero-inner { position: relative; z-index: 1; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

        .hero-text {}
        .hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800; letter-spacing: -0.5px; margin-bottom: 22px;
            color: var(--navy); line-height: 1.18;
        }
        .hero-desc {
            font-size: 17px; color: var(--text-mid); line-height: 1.8;
            margin-bottom: 38px; max-width: 460px;
        }
        .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

        /* Hero visual */
        .hero-visual { position: relative; }
        .hero-dashboard {
            background: var(--white); border-radius: var(--radius-xl);
            border: 1px solid var(--border); box-shadow: var(--shadow-xl);
            padding: 24px; overflow: hidden; position: relative;
        }
        .dash-topbar {
            display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
        }
        .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
        .dash-dot:nth-child(1) { background: #FF5F57; }
        .dash-dot:nth-child(2) { background: #FFBD2E; }
        .dash-dot:nth-child(3) { background: #28CA40; }
        .dash-title { margin-left: 8px; font-size: 12px; font-weight: 600; color: var(--text-mid); }

        .dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
        .dash-stat {
            background: var(--bg); border-radius: 10px; padding: 14px 12px;
            border: 1px solid var(--border);
        }
        .dash-stat-label { font-size: 10px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
        .dash-stat-val { font-size: 20px; font-weight: 600; color: var(--navy); }
        .dash-stat-val.accent { color: var(--blue); }
        .dash-stat-val.green { color: var(--green); }
        .dash-delta { font-size: 10px; color: var(--green); font-weight: 600; margin-top: 2px; }

        .dash-chart-area { background: var(--bg); border-radius: 10px; padding: 16px; margin-bottom: 14px; border: 1px solid var(--border); }
        .dash-chart-label { font-size: 11px; font-weight: 600; color: var(--text-mid); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; }
        .dash-bar { flex: 1; background: var(--blue-mid); border-radius: 4px 4px 0 0; transition: height 0.4s; }
        .dash-bar.hi { background: var(--blue); }
        .dash-bar.mid { background: #93C5FD; }

        .dash-list { display: flex; flex-direction: column; gap: 8px; }
        .dash-row {
            display: flex; align-items: center; gap: 10px;
            background: var(--bg); border-radius: 8px; padding: 10px 12px;
            border: 1px solid var(--border);
        }
        .dash-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--blue); }
        .dash-row-info { flex: 1; }
        .dash-row-name { font-size: 12px; font-weight: 600; color: var(--navy); }
        .dash-row-time { font-size: 11px; color: var(--text-light); }
        .dash-badge {
            font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-pill);
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .badge-conf { background: #DCFCE7; color: #15803D; }
        .badge-pend { background: #FEF9C3; color: #854D0E; }
        .badge-new { background: var(--blue-soft); color: var(--blue); }

        /* Floating pip */
        .hero-pip {
            position: absolute; background: var(--white); border-radius: var(--radius);
            padding: 12px 16px; box-shadow: var(--shadow-lg);
            border: 1px solid var(--border); z-index: 2;
            animation: floatUp 3s ease-in-out infinite;
        }
        @keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
        .hero-pip-1 { top: -14px; left: -20px; }
        .hero-pip-2 { bottom: 30px; right: -20px; animation-delay: -1.5s; }
        .pip-label { font-size: 10px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
        .pip-val { font-size: 16px; font-weight: 700; color: var(--navy); }
        .pip-row { display: flex; align-items: center; gap: 5px; }
        .pip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
        @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

        @media (max-width: 960px) {
            .hero-grid { grid-template-columns: 1fr; gap: 56px; }
            .hero-visual { max-width: 520px; }
            .hero-pip { display: none; }
        }
        @media (max-width: 640px) {
            .hero { padding: 120px 0 72px; }
        }

        /* ================================================================
           HOW IT WORKS
           ================================================================ */
        .how { background: var(--white); }
        .how-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
        .how h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; }
        .how-lead { color: var(--text-mid); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }

        .steps { display: flex; flex-direction: column; gap: 0; }
        .step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); position: relative; }
        .step:last-child { border-bottom: none; }
        .step-num {
            width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border-strong);
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 700; color: var(--navy); flex-shrink: 0;
            background: var(--white);
        }
        .step-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
        .step-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

        .how-visual { position: relative; }
        .problem-board {
            background: var(--white); border-radius: var(--radius-xl);
            border: 1px solid var(--border); padding: 36px; box-shadow: var(--shadow-lg);
        }
        .board-title { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }

        .chaos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
        .chaos-app {
            background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
            padding: 12px 10px; text-align: center; font-size: 11px; font-weight: 600;
            color: var(--text-mid); transition: all 0.3s;
        }
        .chaos-app .app-emoji { font-size: 20px; display: block; margin-bottom: 5px; }

        .vs-divider { display: flex; align-items: center; gap: 14px; margin: 8px 0 24px; }
        .vs-line { flex: 1; height: 1px; background: var(--border); }
        .vs-badge { font-size: 10px; font-weight: 700; color: var(--white); background: var(--navy); padding: 4px 10px; border-radius: var(--radius-pill); letter-spacing: 1px; text-transform: uppercase; }

        .kai-unified {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
            border-radius: var(--radius); padding: 24px; text-align: center;
            color: var(--white);
        }
        .kai-unified .kai-logo-sm { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.5px; }
        .kai-unified p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
        .kai-features-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
        .kai-tag {
            font-size: 11px; font-weight: 600; padding: 5px 12px;
            background: rgba(255,255,255,0.1); border-radius: var(--radius-pill);
            color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.12);
        }

        @media (max-width: 960px) { .how-grid { grid-template-columns: 1fr; } }

        /* ================================================================
           SERVICES
           ================================================================ */
        .services-section { background: var(--white); }
        .section-intro { text-align: center; max-width: 560px; margin: 0 auto 36px; }
        .section-intro h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; }
        .section-intro p { color: var(--text-mid); font-size: 16px; line-height: 1.8; }

        .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
        .svc-card {
            background: var(--white); padding: 36px 28px;
            transition: all 0.3s var(--ease); position: relative;
        }
        .svc-card:hover { background: var(--bg); z-index: 1; }
        .svc-card .icon-box { margin-bottom: 20px; }
        .svc-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
        .svc-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
        .svc-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 16px; opacity: 0; transition: opacity 0.3s; text-decoration: none; cursor: pointer; }
        .svc-card:hover .svc-card-link { opacity: 1; }

        @media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

        /* ================================================================
           COMPARISON
           ================================================================ */
        .comparison-section { background: var(--blue-soft); }
        .comp-wrap { max-width: 860px; margin: 0 auto; }
        .comp-intro { text-align: center; margin-bottom: 48px; }
        .comp-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
        .comp-intro p { color: var(--text-mid); font-size: 16px; }

        .comp-table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
        .comp-head {
            display: grid; grid-template-columns: 1.4fr 1fr 1fr;
            padding: 0; background: var(--white);
            border-bottom: 2px solid var(--border);
        }
        .comp-head-cell { padding: 18px 24px; font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
        .comp-head-cell.kai { background: var(--navy); color: var(--white); text-align: center; }
        .comp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 1px solid var(--border); }
        .comp-row:last-child { border-bottom: none; }
        .comp-cell { padding: 16px 24px; font-size: 14px; display: flex; align-items: center; }
        .comp-cell.label { font-weight: 600; color: var(--navy); gap: 10px; }
        .comp-cell.no { color: var(--red); font-weight: 500; }
        .comp-cell.yes { color: var(--navy); font-weight: 600; gap: 8px; }
        

        @media (max-width: 640px) {
            .comp-head, .comp-row { grid-template-columns: 1fr; }
            .comp-head-cell:first-child { display: none; }
            .comp-cell.label::before { content: none; }
        }

        /* ================================================================
           DETAILED SERVICES (TABS)
           ================================================================ */
        .services-detail { background: var(--bg-gradient); }
        .services-detail .section-intro { margin-bottom: 32px; }

        .tabs-wrap {
            display: grid; grid-template-columns: 240px 1fr; gap: 0;
            border: 1px solid var(--border); border-radius: var(--radius-xl);
            overflow: hidden; box-shadow: var(--shadow-lg); min-height: 480px;
        }
        .tabs-nav {
            background: var(--navy); padding: 16px 12px;
            display: flex; flex-direction: column; gap: 2px;
            border-right: 1px solid var(--border);
        }
        .tab-trigger {
            background: transparent; border: none; color: rgba(255,255,255,0.7);
            padding: 12px 14px; border-radius: var(--radius); font-family: var(--font);
            font-size: 13px; font-weight: 600; cursor: pointer; text-align: left;
            transition: all 0.2s var(--ease);
        }
        .tab-trigger:hover { background: var(--navy-mid); color: var(--white); }
        .tab-trigger.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }

        .tab-panel { padding: 40px; display: none; background: var(--white); }
        .tab-panel.active { display: block; animation: fadeIn 0.3s var(--ease); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

        .tab-panel h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
        .tab-panel > p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
        .features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
        .feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--navy); font-weight: 500; }

        @media (max-width: 768px) {
            .tabs-wrap { grid-template-columns: 1fr; }
            .tabs-nav { flex-direction: row; flex-wrap: wrap; padding: 12px; gap: 4px; border-right: none; border-bottom: 1px solid var(--border); }
            .tab-trigger { flex: 0 0 auto; font-size: 12px; padding: 8px 12px; }
        }

        /* ================================================================
           FAQ
           ================================================================ */
        .faq-section { background: var(--bg-gradient); }
        .faq-wrap { max-width: 720px; margin: 0 auto; }
        .faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-item:last-child { border-bottom: none; }
        .faq-q {
            background: var(--navy); color: var(--white); padding: 20px 24px;
            display: flex; justify-content: space-between; align-items: center;
            cursor: pointer; font-size: 15px; font-weight: 600;
            transition: background 0.2s; gap: 16px;
        }
        .faq-q:hover { background: var(--navy-mid); }
        .faq-chevron { width: 18px; height: 18px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
        .faq-chevron.open { transform: rotate(180deg); }
        .faq-chevron svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; }
        .faq-a {
            max-height: 0; overflow: hidden; background: var(--white);
            transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
            font-size: 14px; color: var(--text-mid); line-height: 1.8; padding: 0 24px;
        }
        .faq-a.open { max-height: 150px; padding: 18px 24px; }

        /* ================================================================
           CTA SECTION
           ================================================================ */
        .cta-section { background: var(--navy); position: relative; overflow: hidden; }
        .cta-section::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(10,191,180,0.08) 0%, transparent 70%);
        }
        .cta-inner { text-align: center; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
        .cta-inner .eyebrow { color: var(--teal); }
        .cta-inner .eyebrow::before { background: var(--teal); }
        .cta-inner h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 18px; letter-spacing: -0.4px; }
        .cta-inner p { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 36px; line-height: 1.8; }
        .cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

        /* ================================================================
           FOOTER
           ================================================================ */
        .footer { padding: 44px 0 32px; border-top: 1px solid rgba(255,255,255,0.08); background: var(--navy); }
        .footer-inner { display: flex; justify-content: space-between; align-items: center; }
        .footer-logo { display: flex; align-items: center; gap: 8px; }
        .footer-logo-mark { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,0.7); stroke-width: 2; stroke-linecap: round; }
        .footer-isotipo { 
            width: 28px; height: 28px; object-fit: contain;
            
        }
        .footer-wordmark { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); }

        /* Funnel image */
        .funnel-wrap {
            display: flex; align-items: center; justify-content: center;
        }
        .funnel-img {
            width: 100%; max-width: 680px; height: auto;
            filter: drop-shadow(0 20px 48px rgba(13,27,42,0.18));
            border-radius: 20px;
        }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
        .footer-links a:hover { color: rgba(255,255,255,0.75); }
        .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 28px; text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
        .social-row { display: flex; gap: 8px; }
        .social-btn {
            width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; color: rgba(255,255,255,0.45);
        }
        .social-btn:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
        .social-btn svg { width: 15px; height: 15px; fill: currentColor; }

        @media (max-width: 640px) {
            .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
        }

        
        
        
        

        /* ================================================================
           PAGE ROUTING
           ================================================================ */
        .page { display: none; }
        .page.active { display: block; }

        /* PAGE HEAD */
        .page-head {
            padding: 120px 0 32px; text-align: center;
            background: var(--bg-gradient);
        }
        .page-head h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.4px; }
        .page-head p { color: var(--text-mid); font-size: 16px; }
    