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

        :root {
            --primary: #0f766e;
            --primary-dark: #0d6560;
            --primary-light: #14b8a6;
            --primary-50: #f0fdfa;
            --primary-100: #ccfbf1;
            --primary-200: #99f6e4;
            --accent: #0f766e;
            --bg: #ffffff;
            --bg-soft: #f8fffe;
            --bg-section: #f0fdfa;
            --bg-card: #ffffff;
            --bg-card-hover: #f0fdfa;
            --text: #0f172a;
            --text-secondary: #475569;
            --text-light: #64748b;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --gradient-1: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
            --gradient-2: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
            --gradient-hero: linear-gradient(170deg, #f0fdfa 0%, #ffffff 40%, #ccfbf1 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
            --shadow-teal: 0 8px 32px rgba(15,118,110,0.2);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
        .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
        .section { padding: 120px 0; }
        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .section-label::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 1px;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 2.85rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 580px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 34px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }
        .btn-primary {
            background: var(--gradient-2);
            color: #fff;
            box-shadow: var(--shadow-teal);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(15,118,110,0.35);
        }
        .btn-outline {
            background: var(--bg);
            color: var(--text);
            border: 1.5px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .btn-outline:hover {
            border-color: var(--primary-light);
            background: var(--primary-50);
            box-shadow: var(--shadow-md);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ─── Navigation ─── */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 16px 0;
            transition: all 0.4s;
            background: transparent;
            border-bottom: 1px solid transparent;
        }
        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom-color: var(--border);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }
        nav .container { display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            transition: all 0.4s;
        }
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .logo-text { font-weight: 800; font-size: 1.3rem; color: #fff; transition: color 0.4s; }
        .logo-text span { color: #2dd4bf; transition: color 0.4s; }
        nav.scrolled .logo-text { color: var(--text); }
        nav.scrolled .logo-text span { color: var(--primary); }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 5px 6px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.1);
            transition: all 0.4s;
        }
        nav.scrolled .nav-links {
            background: rgba(15,118,110,0.04);
            border-color: rgba(15,118,110,0.1);
            box-shadow: 0 2px 16px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 12px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: #fff;
            background: rgba(255,255,255,0.12);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 3px rgba(0,0,0,0.08);
        }
        nav.scrolled .nav-links a { color: var(--text-secondary); }
        nav.scrolled .nav-links a:hover {
            color: var(--primary);
            background: rgba(15,118,110,0.06);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(15,118,110,0.08);
        }
        .nav-cta .btn {
            padding: 10px 26px;
            font-size: 0.85rem;
            border-radius: 10px;
        }
        .nav-cta .btn-primary {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            box-shadow: none;
            color: #fff;
            transition: all 0.4s;
        }
        .nav-cta .btn-primary:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        nav.scrolled .nav-cta .btn-primary {
            background: var(--gradient-2);
            border-color: transparent;
            box-shadow: var(--shadow-teal);
            color: #fff;
        }
        nav.scrolled .nav-cta .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(15,118,110,0.3);
        }
        .mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; transition: color 0.4s; }
        nav.scrolled .mobile-toggle { color: var(--text); }

        /* ─── Hero ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(180deg, #0f766e 0%, #0d6560 55%, #0a5650 100%);
            color: #fff;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -300px;
            right: -200px;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(45,212,191,0.18) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -250px;
            left: -200px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }
        .hero .container-wide { position: relative; z-index: 1; }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            margin-bottom: 32px;
            backdrop-filter: blur(8px);
        }
        .hero-badge .dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #2dd4bf;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

        .hero h1 {
            font-size: clamp(3rem, 5.8vw, 4.8rem);
            font-weight: 900;
            line-height: 1.06;
            margin-bottom: 26px;
            letter-spacing: -0.04em;
            color: #fff;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, #2dd4bf 0%, #99f6e4 50%, #5eead4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 44px;
            max-width: 520px;
            line-height: 1.8;
        }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero .btn-primary {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 4px 24px rgba(0,0,0,0.15);
        }
        .hero .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }
        .hero .btn-outline {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.25);
            box-shadow: none;
        }
        .hero .btn-outline:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
        }
        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 56px;
            padding-top: 36px;
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        .hero-stat h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #2dd4bf;
        }
        .hero-stat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 3px; font-weight: 500; }

        /* Hero Visual */
        .hero-visual { position: relative; }
        .app-preview {
            background: #fff;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
            transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .app-preview:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
        .app-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: var(--primary-50);
            border-bottom: 1px solid var(--border);
        }
        .app-dot { width: 11px; height: 11px; border-radius: 50%; }
        .app-dot.r { background: #fca5a5; }
        .app-dot.y { background: #fcd34d; }
        .app-dot.g { background: #86efac; }
        .app-title {
            flex: 1;
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .app-body {
            padding: 0;
        }
        .app-content {
            display: grid;
            grid-template-columns: 180px 1fr;
        }
        .app-sidebar {
            background: linear-gradient(180deg, var(--primary) 0%, #0d6560 100%);
            padding: 20px 0;
            color: #fff;
        }
        .app-sidebar-title {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0 16px;
            margin-bottom: 16px;
            opacity: 0.6;
        }
        .app-sidebar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 16px;
            font-size: 0.78rem;
            font-weight: 500;
            opacity: 0.7;
            cursor: default;
            transition: all 0.2s;
        }
        .app-sidebar-item.active {
            opacity: 1;
            background: rgba(255,255,255,0.12);
            border-right: 2px solid #fff;
        }
        .app-sidebar-item .shortcut {
            margin-left: auto;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            padding: 2px 6px;
            background: rgba(255,255,255,0.15);
            border-radius: 4px;
        }
        .app-main { padding: 24px; background: #fafffe; }
        .app-main-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .app-main-header h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
        .app-main-tag {
            font-size: 0.6rem;
            padding: 3px 10px;
            background: var(--primary-100);
            color: var(--primary);
            border-radius: 100px;
            font-weight: 600;
        }
        .app-table { width: 100%; border-collapse: collapse; }
        .app-table th {
            text-align: left;
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            padding: 8px 10px;
            border-bottom: 1px solid var(--border);
        }
        .app-table td {
            font-size: 0.76rem;
            padding: 10px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }
        .app-table td:last-child { font-family: 'JetBrains Mono', monospace; font-weight: 600; color: var(--primary); }
        .app-table tr:last-child td { border-bottom: none; }

        .hero-float-badge {
            position: absolute;
            background: rgba(255,255,255,0.95);
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
            z-index: 2;
            animation: float 4s ease-in-out infinite;
            backdrop-filter: blur(12px);
        }
        .hero-float-badge.badge-1 { top: 10px; right: -28px; }
        .hero-float-badge.badge-2 { bottom: 50px; left: -36px; animation-delay: 2s; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
        .float-badge-icon { font-size: 1.3rem; margin-bottom: 4px; }
        .float-badge-text { font-size: 0.72rem; font-weight: 700; color: var(--text); }
        .float-badge-sub { font-size: 0.6rem; color: var(--text-light); }

        /* ─── Features ─── */
        #features { background: var(--bg); }
        .features-header { text-align: center; margin-bottom: 72px; }
        .features-header .section-subtitle { margin: 0 auto; }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .feature-card:hover {
            border-color: var(--primary-100);
            background: var(--bg-card-hover);
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .feature-card:hover::before { opacity: 1; }
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--primary-50);
            border: 1px solid var(--primary-100);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            font-size: 1.4rem;
        }
        .feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
        .feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

        /* ─── Modules ─── */
        #modules { background: var(--bg-section); }
        .modules-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .module-list { display: flex; flex-direction: column; gap: 14px; }
        .module-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 22px 26px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.35s;
            box-shadow: var(--shadow-sm);
        }
        .module-item:hover, .module-item.active {
            border-color: var(--primary-light);
            background: var(--primary-50);
            box-shadow: var(--shadow-md);
        }
        .module-item.active { border-left: 3px solid var(--primary); }
        .module-item .icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--primary-50);
            border: 1px solid var(--primary-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        .module-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
        .module-item p { font-size: 0.8rem; color: var(--text-light); margin-top: 3px; }

        .modules-visual {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 44px;
            box-shadow: var(--shadow-lg);
        }
        .modules-visual h3 {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.78rem;
            color: var(--primary);
            margin-bottom: 28px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .report-bars { display: flex; flex-direction: column; gap: 18px; }
        .report-bar { display: flex; align-items: center; gap: 16px; }
        .report-bar .label { font-size: 0.82rem; color: var(--text-secondary); width: 100px; text-align: right; font-weight: 500; }
        .report-bar .bar-track {
            flex: 1;
            height: 10px;
            background: var(--primary-50);
            border-radius: 5px;
            overflow: hidden;
        }
        .report-bar .bar-fill {
            height: 100%;
            border-radius: 5px;
            background: var(--gradient-1);
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .report-bar .value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.82rem;
            color: var(--primary-dark);
            width: 55px;
            font-weight: 600;
        }
        .report-summary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 32px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
        }
        .report-summary .item { text-align: center; }
        .report-summary .item .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
        }
        .report-summary .item .lbl {
            font-size: 0.68rem;
            color: var(--text-light);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        /* ─── Keyboard Section ─── */
        #speed {
            background: var(--bg);
            text-align: center;
        }
        .speed-header { margin-bottom: 60px; }
        .speed-header .section-subtitle { margin: 0 auto; }
        .keyboard-demo {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 56px;
        }
        .kbd {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            min-width: 85px;
            transition: all 0.35s;
            box-shadow: var(--shadow-sm);
        }
        .kbd:hover {
            border-color: var(--primary-light);
            transform: translateY(-6px);
            box-shadow: var(--shadow-teal);
            background: var(--primary-50);
        }
        .kbd .key-cap {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }
        .kbd .key-label {
            font-size: 0.62rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .speed-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        .speed-feature { text-align: center; }
        .speed-feature .num {
            font-size: 2.8rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }
        .speed-feature .label { font-size: 0.88rem; color: var(--text-secondary); margin-top: 6px; font-weight: 500; }

        /* ─── Pricing ─── */
        #pricing { background: var(--bg-section); }
        .pricing-header { text-align: center; margin-bottom: 72px; }
        .pricing-header .section-subtitle { margin: 0 auto; }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1020px;
            margin: 0 auto;
        }
        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 44px 34px;
            position: relative;
            transition: all 0.4s;
            box-shadow: var(--shadow-sm);
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-teal);
            background: linear-gradient(180deg, var(--primary-50) 0%, #fff 50%);
        }
        .pricing-card.featured:hover { box-shadow: 0 16px 48px rgba(15,118,110,0.25); }
        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            padding: 5px 22px;
            background: var(--gradient-2);
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #fff;
        }
        .pricing-card .plan-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }
        .pricing-card .price {
            margin-bottom: 4px;
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 2px;
        }
        .pricing-card .price-amount {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .pricing-card .price-period {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }
        .pricing-card .price-note {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 32px;
        }
        .pricing-card .features-list { list-style: none; margin-bottom: 36px; }
        .pricing-card .features-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .pricing-card .features-list li .check {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .pricing-card .btn { width: 100%; justify-content: center; }
        .pricing-card .price-original {
            font-size: 0.85rem;
            font-weight: 500;
            color: #94a3b8;
            text-decoration: line-through;
            width: 100%;
            display: none;
            margin-bottom: 2px;
        }
        .pricing-card .save-badge {
            display: none;
            font-size: 0.65rem;
            font-weight: 700;
            color: #fff;
            background: #10b981;
            padding: 3px 10px;
            border-radius: 100px;
            margin-left: 10px;
            align-self: center;
        }
        .yearly-active .pricing-card .price-original { display: block; }
        .yearly-active .pricing-card .save-badge { display: inline-block; }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 56px;
        }
        .pricing-toggle span {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s;
        }
        .pricing-toggle span.active { color: var(--primary); }
        .toggle-switch {
            width: 52px;
            height: 28px;
            background: var(--border);
            border-radius: 14px;
            cursor: pointer;
            position: relative;
            transition: background 0.3s;
        }
        .toggle-switch.active { background: var(--primary); }
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .toggle-switch.active::after { transform: translateX(24px); }
        .yearly-tag {
            font-size: 0.68rem;
            font-weight: 700;
            color: #10b981;
            background: #ecfdf5;
            padding: 3px 10px;
            border-radius: 100px;
            margin-left: 4px;
        }

        /* ─── CTA ─── */
        .cta-section {
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-2);
            color: #fff;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }
        .cta-content { position: relative; z-index: 1; }
        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 900;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }
        .cta-content p {
            font-size: 1.1rem;
            opacity: 0.85;
            margin-bottom: 40px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .cta-actions { display: flex; gap: 16px; justify-content: center; }

        /* ─── Footer ─── */
        footer {
            padding: 72px 0 36px;
            background: var(--bg);
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;
            margin-bottom: 56px;
        }
        .footer-brand .logo { margin-bottom: 4px; }
        footer .logo-text { color: var(--text); }
        footer .logo-text span { color: var(--primary); }
        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 14px;
            line-height: 1.7;
            max-width: 300px;
        }
        .footer-col h4 {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text);
            margin-bottom: 20px;
        }
        .footer-col a {
            display: block;
            font-size: 0.88rem;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 6px 0;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--primary); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* ─── Compare Table ─── */
        .compare-section { margin-top: 80px; }
        .compare-toggle {
            text-align: center;
            margin-bottom: 36px;
        }
        .compare-toggle button {
            background: none;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 12px 28px;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s;
        }
        .compare-toggle button:hover {
            background: var(--primary-50);
            border-color: var(--primary-light);
        }
        .compare-toggle button.active {
            background: var(--gradient-2);
            color: #fff;
            border-color: transparent;
        }
        .compare-table-wrap {
            display: none;
            overflow-x: auto;
            border: 1px solid var(--border);
            border-radius: 20px;
            background: #fff;
            box-shadow: var(--shadow-md);
        }
        .compare-table-wrap.open { display: block; }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .compare-table thead th {
            padding: 20px 18px;
            font-size: 0.82rem;
            font-weight: 700;
            text-align: center;
            border-bottom: 2px solid var(--border);
            background: var(--primary-50);
            color: var(--text);
        }
        .compare-table thead th:first-child {
            text-align: left;
            font-size: 0.85rem;
            border-top-left-radius: 20px;
        }
        .compare-table thead th:last-child { border-top-right-radius: 20px; }
        .compare-table thead th.highlight-col {
            background: var(--primary);
            color: #fff;
        }
        .compare-table tbody td {
            padding: 14px 18px;
            font-size: 0.85rem;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }
        .compare-table tbody td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--text);
        }
        .compare-table tbody tr:hover { background: var(--primary-50); }
        .compare-table tbody tr:last-child td { border-bottom: none; }
        .compare-table .yes { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
        .compare-table .no { color: #cbd5e1; font-size: 1.1rem; }
        .compare-table .cat-row td {
            background: var(--bg-section);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            padding: 12px 18px;
        }

        /* ─── FAQ ─── */
        #faq { background: var(--bg); }
        .faq-header { text-align: center; margin-bottom: 56px; }
        .faq-header .section-subtitle { margin: 0 auto; }
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .faq-item:hover { border-color: var(--primary-100); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-arrow {
            font-size: 1.2rem;
            color: var(--text-light);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ─── How it Works ─── */
        #how-it-works { background: var(--bg); }
        .steps-header { text-align: center; margin-bottom: 72px; }
        .steps-header .section-subtitle { margin: 0 auto; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 960px; margin: 0 auto; position: relative; }
        .steps-grid::before {
            content: ''; position: absolute; top: 48px; left: 15%; right: 15%;
            height: 2px; background: var(--border);
            z-index: 0;
        }
        .step-card { text-align: center; position: relative; z-index: 1; }
        .step-num {
            width: 96px; height: 96px; border-radius: 50%;
            background: var(--primary-50); border: 2px solid var(--primary-100);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 24px; font-size: 2.5rem;
            transition: all 0.35s;
        }
        .step-card:hover .step-num { background: var(--primary); border-color: var(--primary); transform: scale(1.08); }
        .step-card:hover .step-num span { filter: brightness(10); }
        .step-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
        .step-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; max-width: 260px; margin: 0 auto; }

        /* ─── Testimonials ─── */
        #testimonials { background: var(--bg-section); }
        .testimonials-header { text-align: center; margin-bottom: 64px; }
        .testimonials-header .section-subtitle { margin: 0 auto; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .testimonial-card {
            background: #fff; border: 1px solid var(--border); border-radius: 20px;
            padding: 36px 30px; transition: all 0.35s; position: relative;
        }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
        .testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
        .testimonial-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--primary-50); border: 1px solid var(--primary-100);
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 0.9rem; color: var(--primary); flex-shrink: 0;
        }
        .testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
        .testimonial-role { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

        /* ─── Migration ─── */
        #migration { background: var(--bg); }
        .migration-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
        .migration-content .section-title { margin-bottom: 20px; }
        .migration-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
        .migration-list { list-style: none; margin-bottom: 36px; }
        .migration-list li {
            display: flex; align-items: center; gap: 14px;
            padding: 12px 0; font-size: 0.92rem; color: var(--text-secondary);
            border-bottom: 1px solid var(--border-light);
        }
        .migration-list li:last-child { border-bottom: none; }
        .migration-list li .icon {
            width: 36px; height: 36px; border-radius: 10px;
            background: var(--primary-50); border: 1px solid var(--primary-100);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; flex-shrink: 0;
        }
        .migration-visual {
            background: var(--bg-section); border: 1px solid var(--border);
            border-radius: 24px; padding: 48px; text-align: center;
        }
        .migration-logos { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
        .migration-logo-item {
            padding: 16px 28px; background: #fff; border: 1px solid var(--border);
            border-radius: 14px; font-size: 0.9rem; font-weight: 700; color: var(--text-light);
            transition: all 0.3s;
        }
        .migration-logo-item:hover { border-color: var(--primary-light); color: var(--primary); }
        .migration-arrow { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
        .migration-target {
            display: inline-flex; align-items: center; gap: 12px;
            padding: 16px 32px; background: var(--primary-50); border: 2px solid var(--primary);
            border-radius: 16px; font-weight: 800; font-size: 1.1rem; color: var(--primary);
        }

        @media (max-width: 1024px) {
            .testimonials-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .steps-grid { grid-template-columns: 1fr; gap: 40px; }
            .steps-grid::before { display: none; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .migration-layout { grid-template-columns: 1fr; }
        }

        /* ─── Contact Modal ─── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .modal-overlay.open { display: flex; }
        .modal {
            background: #fff;
            border-radius: 24px;
            width: 100%;
            max-width: 520px;
            box-shadow: 0 32px 80px rgba(0,0,0,0.2);
            position: relative;
            animation: modalIn 0.35s cubic-bezier(0.4,0,0.2,1);
            overflow: hidden;
        }
        @keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .modal-header {
            background: var(--gradient-2);
            padding: 32px 36px 28px;
            color: #fff;
        }
        .modal-header h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
        .modal-header p { font-size: 0.85rem; opacity: 0.8; }
        .modal-close {
            position: absolute;
            top: 18px; right: 20px;
            width: 36px; height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.15);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background 0.2s;
        }
        .modal-close:hover { background: rgba(255,255,255,0.3); }
        .modal-body { padding: 32px 36px 36px; }
        .form-group { margin-bottom: 20px; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 7px;
            letter-spacing: 0.3px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--text);
            background: var(--bg);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            -webkit-appearance: none;
            appearance: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-group .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-submit {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 14px;
            background: var(--gradient-2);
            color: #fff;
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow-teal);
        }
        .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(15,118,110,0.3); }
        .form-success {
            display: none;
            text-align: center;
            padding: 48px 36px;
        }
        .form-success.show { display: block; }
        .form-success .icon { font-size: 3rem; margin-bottom: 16px; }
        .form-success h4 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
        .form-success p { font-size: 0.9rem; color: var(--text-secondary); }

        /* ─── Animations ─── */
        .fade-in {
            opacity: 0;
            transform: translateY(32px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .fade-in-delay-1 { transition-delay: 0.1s; }
        .fade-in-delay-2 { transition-delay: 0.2s; }
        .fade-in-delay-3 { transition-delay: 0.3s; }

        /* ─── Responsive ─── */
        @media (max-width: 1024px) {
            .container, .container-wide { padding: 0 28px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .modules-layout { grid-template-columns: 1fr; gap: 48px; }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; gap: 24px; }
            .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; }
            .app-content { grid-template-columns: 1fr; }
            .app-sidebar { display: none; }
            .hero-grid { gap: 48px; }
            .hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
            .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
            .testimonials-grid { grid-template-columns: 1fr 1fr; }
            .migration-layout { gap: 48px; }
        }

        @media (max-width: 768px) {
            html { font-size: 15px; }
            .container, .container-wide { padding: 0 20px; }
            .section { padding: 64px 0; }

            /* Navigation */
            nav .container { padding: 0 20px; }
            .nav-links { display: none; }
            .mobile-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
            .nav-links.show {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: calc(100% + 10px);
                left: 16px;
                right: 16px;
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 16px;
                box-shadow: var(--shadow-lg);
                padding: 10px;
                gap: 2px;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
            .nav-links.show li { width: 100%; }
            .nav-links.show a {
                display: block;
                width: 100%;
                color: var(--text-secondary);
                padding: 12px 16px;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            .nav-links.show a:hover { color: var(--primary); background: var(--primary-50); }
            .nav-cta { display: none; }

            /* Hero */
            .hero { padding: 100px 0 56px; min-height: auto; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); letter-spacing: -0.02em; }
            .hero p { margin: 0 auto 32px; max-width: 100%; font-size: 1.05rem; }
            .hero-badge { margin-bottom: 22px; }
            .hero-actions { justify-content: center; flex-wrap: wrap; }
            .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
            .hero-stats { justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; }
            .hero-visual { display: none; }

            /* Feature / module / pricing grids */
            .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .feature-card { padding: 28px 22px; }
            .modules-layout { grid-template-columns: 1fr; gap: 40px; }
            .modules-visual { padding: 28px; }
            .speed-features { grid-template-columns: 1fr; gap: 28px; }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; gap: 18px; }
            .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 100%; }
            .pricing-card { padding: 32px 22px; }
            .pricing-toggle { margin-bottom: 40px; flex-wrap: wrap; }

            /* Comparison table */
            .compare-table-wrap.open { overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .compare-table { min-width: 640px; }

            /* FAQ */
            .faq-question { padding: 16px 18px; font-size: 0.9rem; min-height: 44px; }
            .faq-answer-inner { padding: 0 18px 18px; font-size: 0.88rem; }

            /* Footer */
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
            .footer-brand { grid-column: 1 / -1; }
            .footer-brand p { max-width: 100%; }
            .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
            .footer-col a { min-height: 44px; display: flex; align-items: center; padding: 8px 0; }

            /* Misc */
            .keyboard-demo { gap: 8px; }
            .kbd { padding: 14px 16px; min-width: 70px; }
            .cta-actions { flex-wrap: wrap; justify-content: center; }
            .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
            .migration-logos { gap: 16px; }
            .migration-logo-item { padding: 12px 18px; font-size: 0.82rem; }
        }

        @media (max-width: 480px) {
            html { font-size: 14px; }
            .container, .container-wide { padding: 0 16px; }
            .section { padding: 48px 0; }

            .logo-text { font-size: 1.1rem; }
            .logo-icon { width: 34px; height: 34px; }

            /* Hero */
            .hero { padding: 88px 0 44px; }
            .hero-badge { font-size: 0.7rem; padding: 7px 16px; }
            .hero h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); margin-bottom: 18px; }
            .hero p { font-size: 0.95rem; margin-bottom: 26px; }
            .hero-stats { gap: 18px; margin-top: 32px; padding-top: 24px; }
            .hero-stat h3 { font-size: 1.6rem; }

            /* Single-column grids below 480px */
            .features-grid { grid-template-columns: 1fr; gap: 16px; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 360px; gap: 16px; }
            .pricing-grid .pricing-card:last-child { max-width: 100%; }
            .pricing-card { padding: 28px 20px; }
            .pricing-card .price-amount { font-size: 2.2rem; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-brand { grid-column: auto; }
            .migration-logos { flex-direction: column; align-items: stretch; }
            .migration-logo-item { text-align: center; }

            /* Comparison table: shrink font instead of relying solely on scroll */
            .compare-table { min-width: 560px; }
            .compare-table thead th { padding: 14px 10px; font-size: 0.72rem; }
            .compare-table tbody td { padding: 10px; font-size: 0.76rem; }
            .compare-toggle button { width: 100%; padding: 13px 20px; }

            /* FAQ */
            .faq-question { padding: 14px 16px; font-size: 0.85rem; gap: 10px; }
            .faq-arrow { font-size: 1rem; margin-left: 10px; }
            .faq-answer-inner { padding: 0 16px 16px; font-size: 0.84rem; }

            /* Buttons / touch targets */
            .btn { padding: 13px 24px; font-size: 0.88rem; min-height: 44px; width: 100%; }
            .hero-actions .btn, .cta-actions .btn { max-width: 100%; }
            .nav-cta .btn { width: auto; }

            /* Icon-only download buttons on small screens — text hidden, icon stays */
            .hero-actions .btn-primary, .cta-actions .btn-white {
                width: 56px; height: 56px; max-width: 56px; min-height: 56px;
                padding: 0; border-radius: 50%; flex-shrink: 0;
                display: inline-flex; align-items: center; justify-content: center;
            }
            .hero-actions .btn-primary .btn-label, .cta-actions .btn-white .btn-label { display: none; }
            .hero-actions, .cta-actions { align-items: center; }

            /* Modal */
            .modal-overlay { padding: 12px; }
            .modal { max-width: 100%; border-radius: 18px; max-height: 92vh; overflow-y: auto; }
            .modal-header { padding: 24px 20px 20px; }
            .modal-header h3 { font-size: 1.15rem; }
            .modal-body { padding: 22px 20px 26px; }
            .modal-close { top: 12px; right: 14px; width: 36px; height: 36px; }
            .form-group .form-row { grid-template-columns: 1fr; gap: 0; }
            .form-group input, .form-group select, .form-group textarea { min-height: 44px; }
            .form-submit { min-height: 48px; }

            /* Keyboard demo */
            .kbd { padding: 12px 14px; min-width: 60px; }
            .kbd .key-cap { font-size: 1.05rem; }

            /* Step cards */
            .step-num { width: 78px; height: 78px; font-size: 2rem; }

            /* App preview inside hero (hidden on mobile already, safe to keep) */
            .app-table { font-size: 0.7rem; }
        }
