/* Mortacc Landing Page Styles */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            /* Dark palette (hero/sections) */
            --ink: #0f172a;
            --ink-2: #334155;
            --ink-3: #64748b;
            --ink-4: #94a3b8;

            /* Brand */
            --brand: #2563eb;
            --brand-dark: #1d4ed8;
            --brand-light: #3b82f6;
            --brand-soft: #eff6ff;
            --brand-muted: #bfdbfe;

            /* Premium accents */
            --accent-purple: #7c3aed;
            --accent-teal: #0d9488;
            --accent-amber: #f59e0b;

            /* Surface */
            --surface: #fff;
            --bg: #f8fafc;
            --bg-dark: #0f172a;
            --bg-dark-2: #1e293b;
            --border: #e2e8f0;
            --border-dark: rgba(255,255,255,.08);

            /* Semantic */
            --green: #16a34a;
            --green-bg: #dcfce7;
            --amber: #d97706;
            --amber-bg: #fef3c7;
            --red: #dc2626;
            --red-bg: #fee2e2;

            /* Radii & Shadows */
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
            --shadow: 0 4px 6px rgba(15,23,42,.05), 0 2px 4px rgba(15,23,42,.04);
            --shadow-lg: 0 20px 25px rgba(15,23,42,.08), 0 8px 10px rgba(15,23,42,.04);
            --shadow-xl: 0 32px 48px rgba(15,23,42,.14), 0 12px 20px rgba(15,23,42,.08);

            /* Animations */
            --ease-out: cubic-bezier(.16,1,.3,1);
            --ease-in-out: cubic-bezier(.65,0,.35,1);
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--ink);
            background: var(--surface);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── NAV (premium sticky + mega-menu) ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 0 48px; height: 68px;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(255,255,255,.88); backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border-bottom: 1px solid rgba(0,0,0,.06);
            transition: background .3s, box-shadow .3s;
        }
        nav.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
        .nav-logo {
            font-family: 'DM Serif Display', serif; font-size: 30px; font-weight: 700;
            color: var(--ink); text-decoration: none; letter-spacing: -.5px;
        }
        .nav-logo span { color: var(--brand); }
        .nav-links { display: flex; gap: 0; align-items: center; }
        .nav-links > .nav-item {
            position: relative; padding: 24px 16px; cursor: pointer;
            font-size: 13.5px; color: var(--ink-3); text-decoration: none;
            font-weight: 500; transition: color .15s; letter-spacing: .1px;
            white-space: nowrap; display: flex; align-items: center; gap: 4px;
        }
        .nav-links > .nav-item:hover { color: var(--ink); }
        .nav-links > .nav-item .nav-arrow { font-size: 8px; transition: transform .2s; }
        .nav-links > .nav-item:hover .nav-arrow { transform: rotate(180deg); }

        /* Mega-menu dropdown */
        .mega-dropdown {
            display: none;
            position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
            background: #fff; border: 1px solid #e5e7eb; border-radius: 24px;
            box-shadow: 0 30px 80px rgba(15,23,42,.22);
            padding: 28px 32px; width: 900px; max-width: 92vw;
            grid-template-columns: 1fr 1fr; gap: 24px 40px;
            z-index: 999999;
        }
        .nav-item:hover .mega-dropdown { display: grid; }
        .mega-dropdown.wide { grid-template-columns: 1fr 1fr 1fr; min-width: 640px; }
        .mega-col h4 {
            font-size: 10.5px; font-weight: 700; color: var(--ink-4);
            text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px;
        }
        .mega-col a {
            display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px;
            font-size: 13px; font-weight: 400; color: var(--ink-2); text-decoration: none;
            transition: all .12s; margin-bottom: 2px;
        }
        .mega-col a:hover { background: var(--bg); color: var(--brand); }
        .mega-col a .mega-icon {
            width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center; font-size: 13px;
        }
        .mega-col a .mega-icon.blue  { background: var(--brand-soft); }
        .mega-col a .mega-icon.green { background: var(--green-bg); }
        .mega-col a .mega-icon.purple { background: #ede9fe; }
        .mega-col a .mega-icon.amber { background: var(--amber-bg); }
        .mega-col a .mega-icon.teal  { background: #ccfbf1; }
        .mega-col a div .mega-label { font-weight: 500; font-size: 13px; }
        .mega-col a div .mega-sub  { font-size: 11px; color: var(--ink-4); margin-top: 1px; }
        .mega-feature-card {
            grid-column: 1 / -1; background: var(--bg); border-radius: var(--radius);
            padding: 14px 18px; display: flex; align-items: center; gap: 14px;
            margin-top: 4px; border: 1px solid var(--border);
        }
        .mega-feature-card .mf-icon {
            width: 40px; height: 40px; border-radius: 8px; background: var(--brand-soft);
            display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
        }
        .mega-feature-card .mf-text strong { font-size: 13px; color: var(--ink); display: block; }
        .mega-feature-card .mf-text span   { font-size: 11.5px; color: var(--ink-3); }

        .nav-cta { display: flex; gap: 10px; align-items: center; }

        /* ── BUTTONS ── */
        .btn {
            display: inline-flex; align-items: center; gap: 7px;
            padding: 9px 20px; border-radius: 8px; font-size: 14px;
            font-weight: 500; text-decoration: none; cursor: pointer;
            border: none; font-family: inherit; transition: all .2s var(--ease-out);
            white-space: nowrap; letter-spacing: .1px;
        }
        .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
        .btn-primary { background: var(--brand); color: #fff; }
        .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
        .btn-outline { background: transparent; color: var(--ink-2); border: 1px solid var(--border); }
        .btn-outline:hover { background: var(--bg); border-color: #cbd5e1; }
        .btn-outline-light { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
        .btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: #fff; }
        .btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
        .btn-xl { padding: 15px 36px; font-size: 16px; border-radius: 10px; font-weight: 600; }
        .btn-white { background: #fff; color: var(--brand); font-weight: 600; }
        .btn-white:hover { background: #f1f5f9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

        /* ── HERO (dark, Athennian-style) ── */
        .hero {
            position: relative; overflow: visible; overflow-x: clip;
            background: var(--bg-dark);
            min-height: 95vh;
            display: flex; align-items: center;
            padding: 120px 48px 100px;
        }
        /* Background glows */
        .hero-glow-1 {
            position: absolute; top: -15%; left: -8%;
            width: 900px; height: 900px;
            background: radial-gradient(ellipse at center, rgba(37,99,235,.13) 0%, transparent 65%);
            pointer-events: none; animation: heroGlow 8s ease-in-out infinite;
        }
        .hero-glow-2 {
            position: absolute; bottom: -20%; right: -10%;
            width: 700px; height: 700px;
            background: radial-gradient(ellipse at center, rgba(124,58,237,.09) 0%, transparent 65%);
            pointer-events: none; animation: heroGlow 8s ease-in-out infinite 4s;
        }
        .hero-glow-3 {
            position: absolute; top: 30%; left: 50%;
            width: 500px; height: 500px;
            background: radial-gradient(ellipse at center, rgba(14,165,233,.06) 0%, transparent 60%);
            pointer-events: none; animation: heroGlow 10s ease-in-out infinite 2s;
        }
        @keyframes heroGlow {
            0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
            33% { opacity: .5; transform: scale(1.08) translate(20px, -15px); }
            66% { opacity: .7; transform: scale(0.94) translate(-10px, 10px); }
        }

        /* Abstract decorative shape */
        .hero-abstract {
            position: absolute; top: 8%; right: 5%;
            width: 320px; height: 320px;
            border: 1.5px solid rgba(255,255,255,.06);
            border-radius: 50%;
            pointer-events: none;
            animation: abstractRotate 24s linear infinite;
        }
        .hero-abstract::before {
            content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
            width: 120px; height: 120px;
            border: 1.5px solid rgba(37,99,235,.12);
            border-radius: 50%;
        }
        @keyframes abstractRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-inner {
            position: relative; z-index: 2;
            width: 100%; max-width: 1260px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 72px; align-items: center;
        }

        .hero-left { position: relative; max-width: 100%; min-width: 0; }
        .hero-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.25);
            color: #60a5fa; font-size: 12.5px; font-weight: 600;
            padding: 6px 16px; border-radius: 99px; margin-bottom: 28px;
            letter-spacing: .4px;
        }
        .hero-tag .dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: #60a5fa; animation: dotPulse 2s ease-in-out infinite;
        }
        @keyframes dotPulse { 0%,100%{opacity:1;} 50%{opacity:.2;} }

        .hero h1 {
            font-size: clamp(40px, 5vw, 64px); font-weight: 800; color: #fff;
            line-height: 1.06; letter-spacing: -.03em; margin-bottom: 24px;
        }
        .hero h1 em {
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #818cf8 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; font-style: normal;
        }
        .hero p {
            font-size: 17.5px; color: rgba(255,255,255,.55);
            margin-bottom: 38px; line-height: 1.75; max-width: 500px;
        }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
        .hero-trust-label { font-size: 11px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .9px; margin-bottom: 12px; font-weight: 500; }
        .hero-trust-logos { display: flex; gap: 8px; flex-wrap: wrap; }
        .trust-pill {
            background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
            color: rgba(255,255,255,.55); font-size: 11.5px; font-weight: 500;
            padding: 6px 14px; border-radius: 7px; letter-spacing: .2px;
            transition: all .2s;
        }
        .trust-pill:hover { border-color: rgba(96,165,250,.35); color: #93c5fd; background: rgba(37,99,235,.1); }

        /* ── ANIMATED DEMO SLIDESHOW ── */
        .hero-visual { position: relative; max-width: 100%; min-width: 0; }
        .hero-visual::before {
            content: ''; position: absolute; inset: -40px;
            background: radial-gradient(ellipse at 55% 35%, rgba(37,99,235,.14) 0%, transparent 65%);
            pointer-events: none;
        }
        .mock-browser {
            background: #fff; border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius-lg); box-shadow: 0 40px 70px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
            overflow: hidden; position: relative;
        }
        /* 3-slide auto-cycling demo */
        .demo-slides { position: relative; min-height: 460px; }
        .demo-slide {
            position: absolute; inset: 0;
            opacity: 0; transition: opacity .8s ease;
            animation: demoCycle 9s ease-in-out infinite;
            pointer-events: none;
        }
        .demo-slide:nth-child(1) { animation-delay: 0s; }
        .demo-slide:nth-child(2) { animation-delay: 3s; }
        .demo-slide:nth-child(3) { animation-delay: 6s; }
        @keyframes demoCycle {
            0%, 27% { opacity: 1; transform: translateY(0); }
            33%, 100% { opacity: 0; transform: translateY(4px); }
        }
        .demo-step-badge {
            display: inline-flex; align-items: center; gap: 6px;
            background: var(--brand-soft); color: var(--brand);
            font-size: 10.5px; font-weight: 700; padding: 4px 10px;
            border-radius: 99px; margin-bottom: 12px; letter-spacing: .3px;
        }
        .demo-step-badge .step-num {
            width: 16px; height: 16px; border-radius: 50%;
            background: var(--brand); color: #fff; font-size: 9px;
            display: flex; align-items: center; justify-content: center;
        }
        .demo-step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
        .demo-step-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; margin-bottom: 14px; }
        .demo-mini-table { width: 100%; border-collapse: collapse; font-size: 11px; }
        .demo-mini-table th { text-align: left; padding: 6px 10px; background: #f1f5f9; color: var(--ink-3); font-size: 9.5px; text-transform: uppercase; letter-spacing: .5px; border-radius: 4px 4px 0 0; }
        .demo-mini-table td { padding: 7px 10px; border-bottom: 1px solid #f1f5f9; color: var(--ink-2); }
        .demo-progress-track { height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
        .demo-progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--brand), #7c3aed); animation: demoProgressFill 3s ease-in-out infinite 3s; }
        @keyframes demoProgressFill {
            0% { width: 30%; }
            50% { width: 85%; }
            100% { width: 30%; }
        }
        .demo-check-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 12px; color: var(--ink-2); }
        .demo-check-row .dchk { color: var(--green); font-weight: 700; }
        .demo-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: dotPulse 1.5s ease-in-out infinite; display: inline-block; margin-right: 4px; }
        .mock-browser-bar {
            padding: 11px 14px; background: #f1f5f9; border-bottom: 1px solid var(--border);
            display: flex; align-items: center; gap: 8px;
        }
        .mock-dot { width: 11px; height: 11px; border-radius: 50%; }
        .mock-dot.r { background: #fc5753; }
        .mock-dot.y { background: #fdbc40; }
        .mock-dot.g { background: #33c748; }
        .mock-url {
            flex: 1; background: #fff; border: 1px solid var(--border);
            border-radius: 6px; padding: 5px 10px; font-size: 11px;
            color: var(--ink-4); margin: 0 8px;
        }
        .mock-dashboard { display: grid; grid-template-columns: 190px 1fr; min-height: 440px; font-size: 12px; }
        .mock-sidebar {
            background: #0f172a; padding: 14px 10px;
            display: flex; flex-direction: column; gap: 2px;
        }
        .mock-sidebar-logo {
            font-family: 'DM Serif Display', serif; font-size: 17px; color: #fff;
            padding: 6px 8px 14px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 10px;
        }
        .mock-sidebar-logo span { color: #60a5fa; }
        .mock-nav-label { font-size: 9px; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .7px; padding: 8px 8px 4px; }
        .mock-nav-item {
            display: flex; align-items: center; gap: 7px;
            padding: 7px 8px; border-radius: 5px; color: rgba(255,255,255,.45);
            font-size: 11.5px; transition: all .15s;
        }
        .mock-nav-item.active { background: rgba(37,99,235,.18); color: #93c5fd; }
        .mock-nav-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
        .mock-main { background: #f8fafc; padding: 18px; }
        .mock-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
        .mock-topbar-title { font-size: 15px; font-weight: 600; color: #0f172a; }
        .mock-add-btn { background: #2563eb; color: #fff; border-radius: 6px; padding: 5px 12px; font-size: 11.5px; font-weight: 600; }
        .mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
        .mock-stat-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 12px 14px; }
        .mock-stat-card .lbl { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: .4px; }
        .mock-stat-card .val { font-size: 22px; font-weight: 700; color: #0f172a; margin-top: 3px; }
        .mock-stat-card .sub { font-size: 10px; color: #94a3b8; margin-top: 2px; }
        .mock-table-header {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 7px 12px; background: #fff; border: 1px solid #e2e8f0;
            border-radius: 6px 6px 0 0; font-size: 10px; font-weight: 600;
            color: #64748b; text-transform: uppercase; letter-spacing: .4px;
        }
        .mock-table-row {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 9px 12px; background: #fff; border: 1px solid #e2e8f0;
            border-top: none; font-size: 11.5px; color: #334155;
            transition: background .1s;
        }
        .mock-table-row:hover { background: #f8fafc; }
        .mock-table-row:last-child { border-radius: 0 0 6px 6px; }
        .mock-badge {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 3px 8px; border-radius: 99px; font-size: 10px; font-weight: 500;
        }
        .mock-badge.green { background: #dcfce7; color: #16a34a; }
        .mock-badge.amber { background: #fef3c7; color: #d97706; }
        .mock-badge.blue  { background: #eff6ff; color: #2563eb; }

        /* Floating cards */
        .hero-float-card {
            position: absolute; background: #fff; border: 1px solid var(--border);
            border-radius: 11px; padding: 11px 15px;
            box-shadow: 0 12px 32px rgba(0,0,0,.18);
            font-size: 12px; font-weight: 500; color: var(--ink);
            display: flex; align-items: center; gap: 9px;
            animation: floatCard 5s ease-in-out infinite;
            z-index: 5;
        }
        .hero-float-card.left { bottom: 32px; left: -28px; animation-delay: 0s; }
        .hero-float-card.right { top: 48px; right: -24px; animation-delay: 2.5s; }
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-7px); }
        }
        .float-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
        .float-icon.green { background: #dcfce7; }
        .float-icon.blue  { background: #eff6ff; }

        /* ── MARQUEE (Athennian-style logo strip) ── */
        .marquee-strip {
            background: var(--bg-dark-2); border-top: 1px solid rgba(255,255,255,.06);
            border-bottom: 1px solid rgba(255,255,255,.06);
            padding: 22px 0; overflow: hidden; position: relative;
        }
        .marquee-label {
            position: absolute; left: 0; top: 0; bottom: 0;
            padding: 0 32px; display: flex; align-items: center;
            font-size: 11px; font-weight: 600; color: rgba(255,255,255,.25);
            text-transform: uppercase; letter-spacing: .8px;
            background: linear-gradient(90deg, var(--bg-dark-2) 60%, transparent);
            z-index: 2; white-space: nowrap;
        }
        .marquee-track {
            display: flex; gap: 48px;
            animation: marqueeScroll 28s linear infinite;
            width: max-content;
        }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-track:hover { animation-play-state: paused; }
        .marquee-item {
            font-family: 'DM Serif Display', serif; font-size: 16px;
            color: rgba(255,255,255,.35); letter-spacing: -.2px;
            white-space: nowrap; transition: color .2s;
            display: flex; align-items: center; gap: 8px;
        }
        .marquee-item:hover { color: rgba(255,255,255,.7); }
        .marquee-item .bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .5; }

        /* ── STATS BAR ── */
        .stats-bar {
            background: var(--bg-dark);
            padding: 64px 48px;
            display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
            position: relative; overflow: visible;
        }
        .stats-bar::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96,165,250,.4), transparent);
        }
        .stats-bar::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124,58,237,.3), transparent);
        }
        .stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.06); position: relative; z-index: 2; }
        .stat-item:last-child { border-right: none; }
        .stat-num { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
        .stat-num span { background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-desc { font-size: 13.5px; color: rgba(255,255,255,.35); margin-top: 10px; line-height: 1.5; max-width: 220px; margin-left: auto; margin-right: auto; }

        /* ── SECTIONS ── */
        section { padding: 100px 48px; }
        .section-dark { background: var(--bg-dark); color: #fff; }
        .section-dark .section-tag { color: #60a5fa; }
        .section-dark .section-title { color: #fff; }
        .section-dark .section-sub { color: rgba(255,255,255,.45); }
        .section-muted { background: var(--bg); }
        .section-tag { font-size: 12.5px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
        .section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.15; max-width: 640px; }
        .section-sub { font-size: 16px; color: var(--ink-3); margin-top: 14px; line-height: 1.7; max-width: 540px; }
        .section-header { margin-bottom: 60px; }
        .section-header.centered { text-align: center; }
        .section-header.centered .section-title,
        .section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

        /* ── AUDIENCE CARDS ── */
        .audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1140px; margin: 0 auto; }
        .audience-card {
            background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
            border-radius: var(--radius-lg); padding: 32px 24px;
            transition: all .25s var(--ease-out); text-decoration: none; color: inherit;
            display: block; position: relative; overflow: hidden;
        }
        .audience-card:hover {
            background: rgba(255,255,255,.06); border-color: rgba(96,165,250,.3);
            transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3);
        }
        .audience-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, var(--brand), var(--accent-purple));
            opacity: 0; transition: opacity .25s;
        }
        .audience-card:hover::before { opacity: 1; }
        .audience-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
        .audience-icon.blue   { background: rgba(37,99,235,.15); }
        .audience-icon.purple { background: rgba(124,58,237,.15); }
        .audience-icon.teal   { background: rgba(13,148,136,.15); }
        .audience-icon.amber  { background: rgba(245,158,11,.15); }
        .audience-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
        .audience-desc  { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 16px; }
        .audience-link  { font-size: 13px; font-weight: 600; color: #60a5fa; text-decoration: none; transition: color .15s; display: inline-flex; align-items: center; gap: 4px; }
        .audience-link:hover { color: #93c5fd; }

        /* ── FEATURES GRID ── */
        .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1140px; margin: 0 auto; }
        .feature-card {
            background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius-lg); padding: 30px;
            transition: all .25s var(--ease-out); text-decoration: none; display: block;
            color: inherit; position: relative; overflow: hidden;
        }
        .feature-card:hover {
            box-shadow: 0 16px 40px rgba(15,23,42,.12); border-color: #93c5fd;
            transform: translateY(-4px);
        }
        .feature-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--brand), var(--accent-purple));
            opacity: 0; transition: opacity .25s;
        }
        .feature-card:hover::before { opacity: 1; }

        /* SVG-style icons */
        .feature-icon-svg {
            width: 52px; height: 52px; border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px; position: relative;
        }
        .feature-icon-svg svg { width: 24px; height: 24px; }
        .feature-icon-svg.blue   { background: var(--brand-soft); }
        .feature-icon-svg.blue svg   { color: var(--brand); }
        .feature-icon-svg.green  { background: var(--green-bg); }
        .feature-icon-svg.green svg  { color: var(--green); }
        .feature-icon-svg.purple { background: #ede9fe; }
        .feature-icon-svg.purple svg { color: #7c3aed; }
        .feature-icon-svg.amber  { background: var(--amber-bg); }
        .feature-icon-svg.amber svg  { color: var(--amber); }
        .feature-icon-svg.teal   { background: #ccfbf1; }
        .feature-icon-svg.teal svg   { color: #0d9488; }
        .feature-icon-svg.red    { background: var(--red-bg); }
        .feature-icon-svg.red svg    { color: var(--red); }

        /* Hero SVG float icons */
        .float-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
        .float-icon svg { width: 16px; height: 16px; }
        .float-icon.green { background: #dcfce7; }
        .float-icon.blue  { background: #eff6ff; }

        .feature-title { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -.2px; }
        .feature-desc  { font-size: 14px; color: var(--ink-3); line-height: 1.7; }

        /* ── FEATURE SHOWCASE (alternating) ── */
        .showcase-section {
            padding: 90px 48px; display: grid;
            grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
            max-width: 1260px; margin: 0 auto;
        }
        .showcase-section.reverse { direction: rtl; }
        .showcase-section.reverse > * { direction: ltr; }
        .showcase-content .section-tag { margin-bottom: 16px; }
        .showcase-content .section-title { font-size: clamp(24px, 3vw, 38px); margin-bottom: 18px; }
        .showcase-content p { font-size: 15.5px; color: var(--ink-3); line-height: 1.75; margin-bottom: 24px; }
        .section-dark .showcase-content p { color: rgba(255,255,255,.5); }
        .section-dark .showcase-content .section-title { color: #fff; }
        .showcase-list { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; }
        .showcase-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
        .section-dark .showcase-list li { color: rgba(255,255,255,.65); }
        .showcase-list li .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
        .showcase-visual {
            background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius-xl); padding: 22px;
            box-shadow: var(--shadow-lg); overflow: visible; position: relative;
            max-width: 100%; word-wrap: break-word;
        }
        .section-dark .showcase-visual {
            background: #1e293b; border-color: rgba(255,255,255,.08);
            box-shadow: 0 20px 50px rgba(0,0,0,.35);
        }
        .showcase-visual::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--brand), var(--accent-purple));
        }

        /* Mock components (reused from original - entity list, doc gen, calendar) */
        .mock-entity-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
        .mock-entity-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
        .section-dark .mock-entity-title { color: #fff; }
        .mock-entity-row {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 13px; background: var(--bg); border: 1px solid var(--border);
            border-radius: 8px; margin-bottom: 7px; font-size: 12px; color: var(--ink-2);
            transition: background .15s;
        }
        .section-dark .mock-entity-row { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
        .mock-entity-avatar {
            width: 30px; height: 30px; border-radius: 7px; background: var(--brand-soft);
            color: var(--brand); display: flex; align-items: center; justify-content: center;
            font-size: 10.5px; font-weight: 700; flex-shrink: 0;
        }
        .mock-entity-name { font-weight: 600; color: var(--ink); font-size: 12.5px; }
        .section-dark .mock-entity-name { color: #fff; }
        .mock-entity-meta { font-size: 11px; color: var(--ink-4); }
        .section-dark .mock-entity-meta { color: rgba(255,255,255,.35); }
        .mock-entity-right { margin-left: auto; display: flex; gap: 6px; align-items: center; }

        .mock-gen-header { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
        .section-dark .mock-gen-header { color: #fff; }
        .mock-doc-list { display: grid; gap: 6px; }
        .mock-doc-item {
            display: flex; align-items: center; gap: 9px;
            padding: 9px 12px; background: var(--bg); border: 1px solid var(--border);
            border-radius: 8px; font-size: 12px; color: var(--ink-2);
        }
        .section-dark .mock-doc-item { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
        .mock-doc-icon { font-size: 15px; flex-shrink: 0; }
        .mock-doc-lang { margin-left: auto; font-size: 10px; font-weight: 600; color: var(--ink-4); display: flex; gap: 4px; }
        .section-dark .mock-doc-lang { color: rgba(255,255,255,.3); }
        .lang-tag { padding: 2px 6px; border-radius: 4px; background: var(--bg); border: 1px solid var(--border); }
        .section-dark .lang-tag { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
        .mock-gen-btn {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            margin-top: 16px; background: var(--brand); color: #fff;
            border-radius: 8px; padding: 11px; font-size: 12.5px; font-weight: 600;
        }

        .mock-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
        .mock-cal-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
        .section-dark .mock-cal-title { color: #fff; }
        .mock-deadline-item {
            display: flex; align-items: flex-start; gap: 11px;
            padding: 11px 13px; background: var(--bg); border: 1px solid var(--border);
            border-radius: 8px; margin-bottom: 7px;
        }
        .section-dark .mock-deadline-item { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
        .mock-deadline-date {
            text-align: center; background: var(--brand-soft); border-radius: 8px;
            padding: 5px 9px; flex-shrink: 0; min-width: 42px;
        }
        .section-dark .mock-deadline-date { background: rgba(37,99,235,.2); }
        .mock-deadline-date .month { font-size: 9px; color: var(--brand); text-transform: uppercase; letter-spacing: .4px; font-weight: 600; }
        .mock-deadline-date .day { font-size: 17px; font-weight: 700; color: var(--brand); line-height: 1; }
        .mock-deadline-text .name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
        .section-dark .mock-deadline-text .name { color: #fff; }
        .mock-deadline-text .corp { font-size: 11px; color: var(--ink-4); margin-top: 2px; }
        .section-dark .mock-deadline-text .corp { color: rgba(255,255,255,.35); }
        .mock-deadline-right { margin-left: auto; }

        /* ── HOW IT WORKS ── */
        .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; max-width: 1000px; margin: 0 auto; }
        .step-card { text-align: center; position: relative; }
        .step-card:not(:last-child)::after {
            content: ''; position: absolute; top: 30px; right: -22px;
            width: 44px; height: 2px; background: var(--border);
        }
        .section-dark .step-card:not(:last-child)::after { background: rgba(255,255,255,.1); }
        .step-num {
            width: 60px; height: 60px; border-radius: 50%;
            background: linear-gradient(135deg, var(--brand), #1d4ed8);
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 22px; font-weight: 700; margin: 0 auto 18px;
            box-shadow: 0 8px 24px rgba(37,99,235,.3);
        }
        .step-title { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
        .section-dark .step-title { color: #fff; }
        .step-desc  { font-size: 14px; color: var(--ink-3); line-height: 1.7; }
        .section-dark .step-desc { color: rgba(255,255,255,.45); }

        /* ── PRICING ── */
        .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
        .pricing-card {
            background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius-lg); padding: 34px;
            position: relative; transition: all .3s var(--ease-out);
        }
        .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
        .pricing-card.featured {
            background: var(--bg-dark); border-color: var(--bg-dark);
            box-shadow: 0 24px 48px rgba(15,23,42,.2); transform: scale(1.03);
        }
        .pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); box-shadow: 0 32px 56px rgba(15,23,42,.28); }
        .pricing-badge {
            position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, var(--brand), #1d4ed8);
            color: #fff; font-size: 11.5px; font-weight: 600;
            padding: 5px 16px; border-radius: 99px; white-space: nowrap;
            box-shadow: 0 4px 12px rgba(37,99,235,.3);
        }
        .pricing-plan { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .7px; color: var(--ink-3); margin-bottom: 8px; }
        .pricing-card.featured .pricing-plan { color: rgba(255,255,255,.4); }
        .pricing-price { font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
        .pricing-card.featured .pricing-price { color: #fff; }
        .pricing-price span { font-size: 16px; font-weight: 400; color: var(--ink-3); }
        .pricing-card.featured .pricing-price span { color: rgba(255,255,255,.35); }
        .pricing-desc { font-size: 14px; color: var(--ink-3); margin: 10px 0 24px; line-height: 1.6; }
        .pricing-card.featured .pricing-desc { color: rgba(255,255,255,.4); }
        .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
        .pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
        .pricing-card.featured .pricing-features li { color: rgba(255,255,255,.7); }
        .pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
        .pricing-card.featured .pricing-features li::before { color: #60a5fa; }
        .pricing-cta { display: block; text-align: center; padding: 12px; border-radius: 8px; font-size: 14.5px; font-weight: 500; text-decoration: none; border: 1px solid var(--border); color: var(--ink); transition: all .2s; }
        .pricing-cta:hover { background: var(--bg); }
        .pricing-card.featured .pricing-cta { background: var(--brand); color: #fff; border-color: var(--brand); }
        .pricing-card.featured .pricing-cta:hover { background: var(--brand-dark); box-shadow: 0 6px 16px rgba(37,99,235,.35); }

        /* ── TESTIMONIAL CAROUSEL ── */
        .testimonial-carousel { max-width: 800px; margin: 0 auto; position: relative; }
        .testimonial-track { position: relative; min-height: 280px; overflow: hidden; }
        .testimonial-slide {
            position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease, transform .6s ease;
            transform: translateX(40px); pointer-events: none;
            text-align: center; padding: 20px 40px;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
        }
        .testimonial-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
        .testimonial-slide.exit { opacity: 0; transform: translateX(-40px); }
        .tst-company-logo {
            font-size: 15px; font-weight: 700; color: rgba(255,255,255,.25);
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
        }
        .testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 18px; letter-spacing: 2px; }
        .testimonial-quote {
            font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.85;
            margin-bottom: 24px; max-width: 600px; font-style: italic; font-weight: 400;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar {
            width: 52px; height: 52px; border-radius: 50%;
            background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(124,58,237,.3));
            color: #93c5fd; display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 700; flex-shrink: 0; border: 2px solid rgba(255,255,255,.1);
        }
        .testimonial-name { font-size: 15px; font-weight: 600; color: #fff; }
        .testimonial-role { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 2px; }

        /* Company logo pills */
        .tst-pills { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
        .tst-pill {
            padding: 8px 16px; border-radius: 8px; font-size: 12.5px; font-weight: 600;
            background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
            color: rgba(255,255,255,.4); cursor: pointer; transition: all .2s;
            font-family: inherit; white-space: nowrap;
        }
        .tst-pill:hover { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
        .tst-pill.active { background: rgba(37,99,235,.15); border-color: rgba(96,165,250,.4); color: #93c5fd; }
        .tst-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
        .tst-dot {
            width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15);
            border: none; cursor: pointer; transition: all .25s; padding: 0;
        }
        .tst-dot.active { background: #60a5fa; width: 24px; border-radius: 4px; }

        /* ── BLOG ── */
        .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
        .blog-card {
            background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius-lg); overflow: hidden;
            text-decoration: none; color: inherit; display: flex; flex-direction: column;
            transition: all .25s var(--ease-out);
        }
        .blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand-muted); }
        .blog-card-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 46px; }
        .blog-card-body { padding: 22px; flex: 1; }
        .blog-card-tag { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--brand); margin-bottom: 10px; }
        .blog-card-title { font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.45; margin-bottom: 10px; }
        .blog-card-desc { font-size: 13.5px; color: var(--ink-3); line-height: 1.7; }
        .blog-card-footer { padding: 14px 22px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--ink-4); display: flex; justify-content: space-between; align-items: center; }
        .blog-card-footer .read-more { color: var(--brand); font-weight: 500; }

        /* ── FAQ ── */
        .faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .2s; }
        .faq-item.open { border-color: var(--brand-muted); }
        .faq-question {
            width: 100%; text-align: left; padding: 20px 24px;
            background: var(--surface); border: none; cursor: pointer;
            font-family: inherit; font-size: 15.5px; font-weight: 500; color: var(--ink);
            display: flex; align-items: center; justify-content: space-between;
            transition: background .15s; letter-spacing: -.1px;
        }
        .faq-question:hover { background: var(--bg); }
        .faq-question .faq-arrow { font-size: 12px; color: var(--ink-4); transition: transform .25s var(--ease-out); flex-shrink: 0; }
        .faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--brand); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out), padding .35s var(--ease-out); }
        .faq-item.open .faq-answer { max-height: 350px; }
        .faq-answer p { padding: 0 24px 22px; font-size: 14.5px; color: var(--ink-3); line-height: 1.75; }

        /* ── AWARDS / RECOGNITION ── */
        .awards-strip {
            background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            padding: 20px 48px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
        }
        .awards-label { font-size: 12px; font-weight: 600; color: var(--ink-4); text-transform: uppercase; letter-spacing: .8px; white-space: nowrap; flex-shrink: 0; }
        .awards-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }
        .award-badge {
            display: flex; align-items: center; gap: 8px;
            font-size: 12px; font-weight: 500; color: var(--ink-3);
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 8px; padding: 8px 14px; transition: all .15s;
        }
        .award-badge:hover { border-color: var(--brand-muted); color: var(--ink); }
        .award-badge .medal { font-size: 15px; }

        /* ── TRUST BAR ── */
        .trust-bar {
            background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            padding: 26px 48px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
        }
        .trust-badge-item {
            display: flex; align-items: center; gap: 8px;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 9px; padding: 10px 18px;
            font-size: 13px; font-weight: 500; color: var(--ink-2);
        }
        .trust-badge-item .badge-icon { font-size: 17px; }

        /* ── CTA BANNER ── */
        .cta-banner {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2744 100%);
            border-radius: var(--radius-xl); padding: 84px 48px; text-align: center;
            margin: 0 48px 100px; position: relative; overflow: hidden;
        }
        .cta-banner::before {
            content: ''; position: absolute; top: -50%; left: -20%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
        }
        .cta-banner::after {
            content: ''; position: absolute; bottom: -30%; right: -10%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
        }
        .cta-banner h2 {
            font-size: 40px; font-weight: 800; color: #fff;
            letter-spacing: -.02em; margin-bottom: 16px; position: relative;
        }
        .cta-banner p {
            font-size: 16.5px; color: rgba(255,255,255,.45);
            margin-bottom: 36px; position: relative; line-height: 1.6;
            max-width: 540px; margin-left: auto; margin-right: auto;
        }
        .cta-banner .btn { position: relative; }

        /* ── FOOTER ── */
        footer {
            background: var(--bg-dark-2); border-top: 1px solid rgba(255,255,255,.06);
            padding: 64px 48px 48px; display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
        }
        .footer-brand .wordmark { font-family: 'DM Serif Display', serif; font-size: 23px; color: #fff; }
        .footer-brand .wordmark span { color: #60a5fa; }
        .footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.35); margin-top: 12px; line-height: 1.7; max-width: 280px; }
        .footer-brand .footer-social { display: flex; gap: 10px; margin-top: 16px; }
        .footer-brand .footer-social a {
            width: 34px; height: 34px; border-radius: 8px;
            background: rgba(255,255,255,.05); color: rgba(255,255,255,.4);
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 15px; transition: all .15s;
        }
        .footer-brand .footer-social a:hover { background: rgba(255,255,255,.1); color: #fff; }
        .footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
        .footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.35); text-decoration: none; margin-bottom: 11px; transition: color .15s; }
        .footer-col a:hover { color: rgba(255,255,255,.7); }
        .footer-bottom {
            text-align: center; padding: 24px 48px;
            font-size: 12.5px; color: rgba(255,255,255,.2);
            background: var(--bg-dark);
            border-top: 1px solid rgba(255,255,255,.04);
        }

        /* Explore AI summary section */
        .explore-ai {
            grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.06);
            padding-top: 28px; margin-top: 12px;
        }
        .explore-ai h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
        .explore-ai-links { display: flex; gap: 8px; flex-wrap: wrap; }
        .explore-ai-links a {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 14px; border-radius: 8px;
            background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
            color: rgba(255,255,255,.45); font-size: 12.5px; text-decoration: none;
            transition: all .15s; font-weight: 500;
        }
        .explore-ai-links a:hover {
            background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2);
            color: rgba(255,255,255,.8);
        }
        .explore-ai-links a .ai-icon {
            width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 10px; font-weight: 700;
        }
        .explore-ai-links a .ai-icon.gpt    { background: #10a37f; color: #fff; }
        .explore-ai-links a .ai-icon.claude { background: #d97706; color: #fff; }
        .explore-ai-links a .ai-icon.gemini { background: #4285f4; color: #fff; }
        .explore-ai-links a .ai-icon.grok   { background: #1d9bf0; color: #fff; }
        .explore-ai-links a .ai-icon.pplx   { background: #6366f1; color: #fff; }

        /* ── NAV HAMBURGER ── */
        .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1501; }
        .hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; display: block; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-nav { display: none; position: fixed; inset: 0; z-index: 1500; background: #fff; flex-direction: column; padding: 88px 28px 28px; }
        .mobile-nav.open { display: flex; }
        .mobile-nav a { font-size: 17px; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--border); transition: color .15s; }
        .mobile-nav a:hover { color: var(--brand); }
        .mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

        /* ── PRICING TOGGLE ── */
        .pricing-toggle-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
        .toggle-lbl { font-size: 14.5px; font-weight: 500; color: var(--ink-3); transition: color .15s; }
        .toggle-lbl.active { color: var(--ink); font-weight: 600; }
        .toggle-wrap { position: relative; width: 48px; height: 28px; }
        .toggle-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
        .toggle-track { position: absolute; inset: 0; background: var(--brand); border-radius: 99px; cursor: pointer; transition: background .2s; }
        .toggle-wrap input:not(:checked) ~ .toggle-track { background: #cbd5e1; }
        .toggle-thumb { position: absolute; height: 22px; width: 22px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s var(--ease-out); pointer-events: none; box-shadow: 0 2px 4px rgba(0,0,0,.15); }
        .toggle-wrap input:checked ~ .toggle-thumb { transform: translateX(20px); }
        .annual-save-badge { background: var(--green-bg); color: var(--green); font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 99px; }

        /* ── COOKIE BANNER ── */
        .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--bg-dark); padding: 18px 48px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s var(--ease-out); border-top: 1px solid rgba(255,255,255,.08); }
        .cookie-banner.visible { transform: translateY(0); }
        .cookie-text { flex: 1; font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; min-width: 200px; }
        .cookie-text a { color: rgba(255,255,255,.8); text-decoration: underline; }
        .cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
        .btn-accept { background: var(--brand); color: #fff; padding: 9px 24px; border-radius: 7px; font-size: 13.5px; font-weight: 500; border: none; cursor: pointer; font-family: inherit; transition: background .15s; }
        .btn-accept:hover { background: var(--brand-dark); }
        .btn-decline { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); padding: 9px 18px; border-radius: 7px; font-size: 13.5px; font-weight: 500; border: none; cursor: pointer; font-family: inherit; }
        .btn-decline:hover { background: rgba(255,255,255,.12); }

        /* ── SCROLL REVEAL ── */
        .reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
        .reveal.revealed { opacity: 1; transform: none; }
        .reveal.revealed { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }

        /* ── Global: prevent horizontal overflow ── */
        html, body {
            overflow-x: clip;
            max-width: 100%;
        }
        *, *::before, *::after {
            max-width: 100%;
        }
        img, svg, video, canvas {
            max-width: 100%; height: auto;
        }

        /* ── RESPONSIVE: Stack everything at laptop width ── */
        /* ── SIMPLIFIED HOMEPAGE: card styles ── */
        .auto-card {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 18px; text-decoration: none; color: #fff;
            transition: all .25s; display: flex; flex-direction: column; gap: 8px;
        }
        .auto-card:hover { background: rgba(37,99,235,.12); border-color: rgba(37,99,235,.3); }
        .auto-icon { font-size: 22px; }
        .auto-title { font-weight: 700; font-size: 14px; }
        .auto-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }

        /* Featured revenue-driving cards */
        .auto-card.featured {
            background: rgba(37,99,235,.08);
            border: 1px solid rgba(96,165,250,.25);
            padding: 24px 20px;
            position: relative;
            overflow: hidden;
        }
        .auto-card.featured::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #2563eb, #7c3aed, #a78bfa);
            opacity: .8;
        }
        .auto-card.featured:hover {
            background: rgba(37,99,235,.16);
            border-color: rgba(96,165,250,.5);
            box-shadow: 0 0 24px rgba(37,99,235,.15);
            transform: translateY(-3px);
        }
        .auto-card.featured .auto-icon { font-size: 26px; }
        .auto-card.featured .auto-title { font-size: 15px; }
        .auto-card.featured .auto-desc { font-size: 13px; color: rgba(255,255,255,.6); }
        .featured-badge {
            position: absolute;
            top: 10px; right: 12px;
            font-size: 9.5px; font-weight: 700;
            text-transform: uppercase; letter-spacing: .4px;
            padding: 3px 8px;
            border-radius: 99px;
            background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(124,58,237,.3));
            border: 1px solid rgba(96,165,250,.3);
            color: #93c5fd;
            white-space: nowrap;
        }

        .roi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
        .roi-num { font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
        .roi-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }

        /* Why Firms Choose Mortacc — premium feature cards */
        .why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: all .3s cubic-bezier(.16,1,.3,1); cursor: default; position: relative; overflow: hidden; }
        .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #2563eb, #7c3aed, #a78bfa); opacity: 0; transition: opacity .3s ease; }
        .why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.06); border-color: #cbd5e1; }
        .why-card:hover::before { opacity: 1; }
        .why-card-icon { font-size: 28px; margin-bottom: 14px; line-height: 1; }
        .why-card-title { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 8px; letter-spacing: -.1px; }
        .why-card-desc { font-size: 13.5px; color: var(--ink-3); line-height: 1.65; }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        @media (max-width: 900px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .why-card { padding: 22px 18px; }
            .why-card-title { font-size: 14px; }
            .why-card-desc { font-size: 13px; }
        }
        @media (max-width: 600px) {
            .why-grid { grid-template-columns: 1fr; gap: 10px; }
            .why-card { padding: 20px 16px; }
        }

        .juris-card { padding: 14px 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; text-align: center; min-width: 130px; }
        .juris-name { font-size: 16px; font-weight: 700; color: #fff; }
        .juris-law { font-size: 10px; color: rgba(255,255,255,.35); }
        .bilingual-badge { padding: 6px 16px; background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.25); border-radius: 99px; font-size: 12px; color: #60a5fa; font-weight: 500; }

        .price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; text-align: center; position: relative; }
        .price-card.featured { border: 2px solid var(--brand); }
        .price-name { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
        .price-amt { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
        .price-amt span { font-size: 14px; color: var(--ink-4); }
        .price-for { font-size: 11px; color: var(--ink-4); margin-bottom: 16px; }
        .price-features { list-style: none; text-align: left; font-size: 13px; color: var(--ink-2); display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; padding: 0; }
        .price-cta { display: block; padding: 10px; background: var(--brand); color: #fff; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; }
        .price-cta.outline { background: var(--surface); color: var(--brand); border: 1.5px solid var(--brand); }
        .price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; padding: 4px 14px; border-radius: 99px; font-size: 11px; font-weight: 600; white-space: nowrap; }

        @media (max-width: 1200px) {
            /* Force all two-column sections to single column */
            .hero-inner,
            .showcase-section,
            .split-section,
            .feature-split,
            .automation-section,
            .governance-section,
            .compliance-section {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 32px !important;
                max-width: 100% !important;
            }
            /* All visual/mockup panels: full width, centered, below text */
            .hero-visual,
            .section-visual,
            .showcase-visual,
            .mock-browser,
            .mock-dashboard,
            .mockup,
            .dashboard-preview,
            .product-preview,
            [class*="-visual"],
            [class*="-mockup"],
            [class*="-preview"] {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                margin: 32px auto 0 auto !important;
                transform: none !important;
                position: relative !important;
                right: auto !important;
                left: auto !important;
                overflow: visible !important;
            }
            /* Hero feature cards: 2 columns */
            .hero-feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                width: 100% !important;
                max-width: 100% !important;
                gap: 10px !important;
            }
            .hero-feat-card {
                padding: 14px;
                min-width: 0;
            }
            /* Hero text */
            .hero-left {
                max-width: 100% !important;
                min-width: 0 !important;
            }
            .hero h1 {
                font-size: clamp(28px, 4.5vw, 48px);
            }
            /* Sections */
            section, .section, .section-dark, .section-muted {
                padding-left: 24px !important;
                padding-right: 24px !important;
                overflow-x: clip;
            }
            section > *, .section > *, .section-dark > *, .section-muted > * {
                max-width: 100% !important;
            }
            /* Comparison tables */
            [style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            /* Audience grid */
            .audience-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            /* Remove any negative margins or fancy positioning */
            [style*="margin-left: -"],
            [style*="margin-right: -"] {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            [style*="translateX"] {
                transform: none !important;
            }
        }

        /* ── Tablet: stack audience and cards ── */
        @media (max-width: 1100px) {
            .hero { min-height: auto; padding: 100px 32px 72px; }
            .hero p { max-width: 100%; }
            .showcase-section { padding: 60px 32px; }
        }

        /* ── Mobile: single column everywhere ── */
        @media (max-width: 700px) {
            .hero-feature-grid {
                grid-template-columns: 1fr !important;
            }
            .audience-grid {
                grid-template-columns: 1fr !important;
            }
            .hero { padding: 80px 20px 56px; }
        }

        @media (max-width: 960px) {
            nav { padding: 0 20px; }
            .nav-links { display: none; }
            .nav-cta { display: none; }
            .hamburger { display: flex; }
            .hero { padding: 110px 20px 60px; }
            .hero-inner { padding: 0; }
            section { padding: 60px 20px; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .audience-grid { grid-template-columns: 1fr 1fr; }
            .steps-grid { grid-template-columns: 1fr 1fr; }
            .step-card:not(:last-child)::after { display: none; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
            .pricing-card.featured { transform: none; }
            .pricing-card.featured:hover { transform: translateY(-3px); }
            .testimonials-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .stats-bar { grid-template-columns: repeat(2,1fr); gap: 28px; padding: 40px 24px; }
            .cta-banner { margin: 0 20px 60px; padding: 56px 24px; }
            footer { grid-template-columns: 1fr 1fr; padding: 40px 20px; gap: 32px; }
            .showcase-section { padding: 60px 20px; }
            .awards-strip { padding: 18px 20px; gap: 20px; }
            .trust-bar { padding: 18px 20px; gap: 10px; }
            .marquee-strip { padding: 18px 0; }
            .marquee-label { padding: 0 16px; }
            .tst-pills { gap: 6px; }
            .tst-pill { font-size: 11px; padding: 6px 10px; }
            .testimonial-slide { padding: 10px 16px; }
            .testimonial-quote { font-size: 14px; }
        }
        @media (max-width: 600px) {
            .features-grid { grid-template-columns: 1fr; }
            .audience-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 0; }
            .stat-item:last-child { border-bottom: none; }
            .stats-bar { grid-template-columns: 1fr; }
            .hero h1 { font-size: 32px; }
            .cta-banner h2 { font-size: 28px; }
            .section-title { font-size: 26px; }
        }

        /* ── Hero Feature Grid ──────────────────────────────────────── */
        .hero-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            width: 100%;
        }
        .hero-feat-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 16px;
            text-decoration: none;
            color: #fff;
            transition: all .25s;
            display: flex;
            flex-direction: column;
            gap: 6px;
            position: relative;
            min-width: 0;
            animation: featCardIn .5s ease backwards;
            animation-delay: var(--delay, 0s);
        }
        .hero-feat-card:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,.3);
        }
        .hfc-medal {
            font-size: 14px;
            opacity: .7;
            position: absolute;
            top: 8px;
            right: 10px;
        }
        .hfc-icon {
            font-size: 22px;
        }
        .hfc-title {
            font-weight: 700;
            font-size: 13px;
            color: #fff;
        }
        .hfc-sub {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            line-height: 1.4;
        }
        @keyframes featCardIn {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 900px) {
            .hero-feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .hero-feature-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── Premium Visual Polish ──────────────────────────────────── */
        /* Card consistency — all cards share these base styles */
        .pricing-card, .guide-card, .step-card {
            transition: all .3s cubic-bezier(.4,0,.2,1);
        }
        .pricing-card:hover, .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(15,23,42,.08);
        }

        /* Smooth section transitions */
        .section, .section-dark, .section-muted {
            position: relative;
        }
        .section::after, .section-dark::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,transparent,rgba(37,99,235,.08),transparent);
        }

        /* Enhanced shadow hierarchy */
        .shadow-sm { box-shadow: 0 1px 2px rgba(15,23,42,.04); }
        .shadow-md { box-shadow: 0 4px 12px rgba(15,23,42,.06); }
        .shadow-lg { box-shadow: 0 12px 40px rgba(15,23,42,.08); }
        .shadow-xl { box-shadow: 0 24px 60px rgba(15,23,42,.1); }

        /* Premium gradient accents */
        .gradient-blue {
            background: linear-gradient(135deg,#2563eb,#1d4ed8);
        }
        .gradient-purple {
            background: linear-gradient(135deg,#7c3aed,#6d28d9);
        }
        .gradient-green {
            background: linear-gradient(135deg,#059669,#047857);
        }

        /* Typography refinements */
        .text-balance {
            text-wrap: balance;
        }
        .text-gradient {
            background: linear-gradient(135deg,#2563eb,#7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Smooth reveal animation */
        .reveal {
            opacity: 1;
            transform: none;
            transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }

        /* Card hover lift */
        .lift {
            transition: all .3s cubic-bezier(.4,0,.2,1);
        }
        .lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(15,23,42,.08);
        }

        /* Glass morphism for premium feel */
        .glass {
            background: rgba(255,255,255,.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,.3);
        }
        .glass-dark {
            background: rgba(15,23,42,.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,.06);
        }
    