/* ─── Design tokens ─────────────────────────────────────────────── */
        :root {
            --bg: #030712;
            --surface: rgba(15, 23, 42, 0.8);
            --surface-hover: rgba(30, 41, 59, 0.9);
            --glass: rgba(255,255,255,0.04);
            --glass-hover: rgba(255,255,255,0.08);
            --border: rgba(255,255,255,0.09);
            --border-bright: rgba(255,255,255,0.18);
            --ink: #f1f5f9;
            --muted: rgba(148, 163, 184, 0.9);
            --faint: rgba(100, 116, 139, 0.7);
            --cyan: #06b6d4;
            --cyan-glow: rgba(6, 182, 212, 0.35);
            --violet: #8b5cf6;
            --violet-glow: rgba(139, 92, 246, 0.35);
            --indigo: #6366f1;
            --emerald: #10b981;
            --rose: #f43f5e;
            --amber: #f59e0b;
            --max-w: 1160px;
            --r-sm: 10px;
            --r-md: 16px;
            --r-lg: 24px;
            --r-xl: 32px;
        }

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

        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: "Inter", "Segoe UI", system-ui, sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
        }
        [lang="ar"] body, [lang="ar"] { font-family: "Tajawal", "Segoe UI", system-ui, sans-serif; }

        a { color: inherit; text-decoration: none; }
        img { display: block; }
        button { font-family: inherit; }

        /* ─── Animated mesh background ──────────────────────────────────── */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: -3;
            background: var(--bg);
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0;
            animation: orb-float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
            top: -200px; left: -150px;
            animation-delay: 0s; animation-duration: 22s;
        }
        .orb-2 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(6,182,212,0.16) 0%, transparent 70%);
            top: -100px; right: -100px;
            animation-delay: -7s; animation-duration: 18s;
        }
        .orb-3 {
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
            bottom: -300px; left: 20%;
            animation-delay: -12s; animation-duration: 25s;
        }
        .orb-4 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
            bottom: 10%; right: -100px;
            animation-delay: -4s; animation-duration: 20s;
        }

        @keyframes orb-float {
            0%   { opacity: 0; transform: translateY(0px) scale(1); }
            10%  { opacity: 1; }
            50%  { transform: translateY(-40px) scale(1.05); }
            90%  { opacity: 1; }
            100% { opacity: 0; transform: translateY(0px) scale(1); }
        }

        /* Grid overlay */
        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: -2;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
        }

        /* ─── Layout helpers ─────────────────────────────────────────────── */
        .wrap { width: min(var(--max-w), 92%); margin: 0 auto; }

        .section { padding: 100px 0; }
        .section-sm { padding: 60px 0; }

        /* ─── Typography ─────────────────────────────────────────────────── */
        .label-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--cyan);
            background: rgba(6,182,212,0.1);
            border: 1px solid rgba(6,182,212,0.25);
            border-radius: 999px;
            padding: 6px 13px;
        }

        .label-chip .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 6px var(--cyan);
            animation: pulse-dot 2s ease-in-out infinite;
        }

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

        .display {
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 900;
            line-height: 1.06;
            letter-spacing: -1.8px;
            margin-top: 22px;
        }

        .display .grad {
            background: linear-gradient(135deg, #fff 20%, var(--cyan) 58%, var(--violet) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 48px rgba(6, 182, 212, 0.38));
        }

        /* Second line of the hero headline */
        .display-rest {
            display: block;
            margin-top: 10px;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.05;
        }

        .display-rest .dim {
            color: rgba(148, 163, 184, 0.55);
            font-style: italic;
            font-weight: 400;
        }

        .display-rest .snap {
            color: #fff;
            font-style: italic;
            position: relative;
            white-space: nowrap;
        }

        /* Subtle animated underline on the payoff word */
        .display-rest .snap::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--cyan), var(--violet));
            animation: underline-shimmer 3s ease-in-out infinite;
            background-size: 200% 100%;
        }

        @keyframes underline-shimmer {
            0%   { background-position: 0% 50%;   opacity: 0.7; }
            50%  { background-position: 100% 50%; opacity: 1; }
            100% { background-position: 0% 50%;   opacity: 0.7; }
        }

        .subtitle {
            font-size: 18px;
            color: var(--muted);
            line-height: 1.75;
            max-width: 54ch;
            margin-top: 20px;
        }

        h2.section-title {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 800;
            letter-spacing: -1.2px;
            line-height: 1.1;
        }

        h2.section-title .grad {
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-sub {
            font-size: 16px;
            color: var(--muted);
            max-width: 60ch;
            line-height: 1.75;
            margin-top: 14px;
        }

        /* ─── Buttons ────────────────────────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 12px;
            border: 1px solid transparent;
            padding: 13px 22px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
            color: #fff;
            box-shadow: 0 0 0 0 rgba(6,182,212,0);
        }

        .btn-primary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(6,182,212,0.45), 0 4px 15px rgba(139,92,246,0.3);
        }

        .btn-primary:hover::before { opacity: 1; }

        .btn-ghost {
            background: rgba(255,255,255,0.05);
            border-color: var(--border-bright);
            color: var(--ink);
            backdrop-filter: blur(8px);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.28);
            transform: translateY(-1px);
        }

        .btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }

        .btn-icon {
            width: 36px; height: 36px;
            padding: 0;
            border-radius: 10px;
            background: var(--glass);
            border: 1px solid var(--border);
        }

        /* ─── Navbar ─────────────────────────────────────────────────────── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(3,7,18,0.7);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 20px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
            min-width: 0;
        }

        .brand img {
            height: 40px;
            width: auto;
        }

        .brand-wordmark {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            padding: 6px 12px;
            border-radius: 8px;
            transition: all 0.15s;
        }

        .nav-links a:hover {
            color: var(--ink);
            background: var(--glass-hover);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .nav-lang {
            gap: 8px;
            padding-inline: 12px 14px;
        }

        .nav-lang-icon {
            display: inline-grid;
            place-items: center;
            min-width: 24px;
            height: 24px;
            border-radius: 999px;
            background: rgba(6,182,212,0.14);
            color: #a5f3fc;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
        }

        .nav-login-short {
            display: none;
        }

        /* ─── Hero ───────────────────────────────────────────────────────── */
        .hero {
            padding: 110px 0 80px;
            position: relative;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--muted);
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 5px 11px;
        }

        .badge .ico { font-size: 13px; }

        /* Live chat mockup */
        .chat-mockup {
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid var(--border-bright);
            border-radius: var(--r-xl);
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(6,182,212,0.08),
                0 40px 80px rgba(0,0,0,0.6),
                0 0 100px rgba(99,102,241,0.08);
            backdrop-filter: blur(20px);
            position: relative;
        }

        .chat-mockup::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            background: rgba(255,255,255,0.02);
        }

        .chat-avatar {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            display: grid;
            place-items: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .chat-bot-name {
            font-size: 14px;
            font-weight: 600;
        }

        .chat-status {
            font-size: 12px;
            color: var(--emerald);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .chat-status::before {
            content: "";
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--emerald);
            box-shadow: 0 0 6px var(--emerald);
        }

        .chat-powered {
            margin-left: auto;
            font-size: 11px;
            color: var(--faint);
        }

        .chat-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-height: 280px;
        }

        .msg {
            display: flex;
            gap: 10px;
            align-items: flex-end;
            animation: msg-in 0.4s ease both;
        }

        @keyframes msg-in {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .msg-bot { flex-direction: row; }
        .msg-user { flex-direction: row-reverse; }

        .msg-avatar {
            width: 28px; height: 28px;
            border-radius: 8px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            font-size: 13px;
        }

        .msg-bot .msg-avatar { background: linear-gradient(135deg, var(--cyan), var(--indigo)); }
        .msg-user .msg-avatar { background: linear-gradient(135deg, var(--violet), var(--rose)); }

        .msg-bubble {
            max-width: 78%;
            border-radius: 14px;
            padding: 10px 14px;
            font-size: 13px;
            line-height: 1.55;
        }

        .msg-bot .msg-bubble {
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            border-bottom-left-radius: 4px;
        }

        .msg-user .msg-bubble {
            background: linear-gradient(135deg, rgba(6,182,212,0.25), rgba(99,102,241,0.25));
            border: 1px solid rgba(6,182,212,0.2);
            border-bottom-right-radius: 4px;
            text-align: right;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
            align-items: center;
            padding: 4px 0;
        }

        .typing-dots span {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            animation: typing 1.4s ease-in-out infinite;
        }

        .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
        .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
            30% { opacity: 1; transform: translateY(-4px); }
        }

        .chat-input-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 16px;
            border-top: 1px solid var(--border);
            background: rgba(255,255,255,0.015);
        }

        .chat-input-field {
            flex: 1;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 9px 13px;
            font-size: 13px;
            color: var(--muted);
            font-family: inherit;
        }

        .chat-send {
            width: 34px; height: 34px;
            border-radius: 9px;
            border: none;
            background: linear-gradient(135deg, var(--cyan), var(--indigo));
            color: #fff;
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 14px;
            transition: transform 0.2s;
        }

        .chat-send:hover { transform: scale(1.08); }

        /* Floating metrics on hero card */
        .hero-float-badge {
            position: absolute;
            background: rgba(15,23,42,0.95);
            border: 1px solid var(--border-bright);
            border-radius: 14px;
            padding: 10px 14px;
            font-size: 12px;
            backdrop-filter: blur(12px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: badge-float 4s ease-in-out infinite;
        }

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

        .hero-float-badge.tl {
            top: -18px; left: -24px;
            animation-delay: 0s;
        }

        .hero-float-badge.br {
            bottom: -18px; right: -24px;
            animation-delay: -2s;
        }

        .float-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ─── Stats band ─────────────────────────────────────────────────── */
        .stats-band {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 40px 0;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            overflow: hidden;
        }

        .stat-cell {
            background: var(--surface);
            padding: 28px 24px;
            text-align: center;
            transition: background 0.2s;
        }

        .stat-cell:hover { background: var(--surface-hover); }

        .stat-number {
            font-size: 36px;
            font-weight: 900;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, #fff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 13px;
            color: var(--muted);
            margin-top: 4px;
        }

        /* ─── Feature cards ──────────────────────────────────────────────── */
        /* ─── Features bento grid ───────────────────────────────────────── */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .feat-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
                        border-color 0.28s cubic-bezier(0.4,0,0.2,1),
                        box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
            display: flex;
            flex-direction: column;
            will-change: transform;
        }

        /* Subtle gradient background tint */
        .feat-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 0% 0%, var(--ac-bg) 0%, transparent 60%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.35s;
            border-radius: inherit;
        }
        .feat-card:hover::after { opacity: 1; }

        /* Colored top accent bar */
        .feat-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            border-radius: var(--r-lg) var(--r-lg) 0 0;
            background: linear-gradient(90deg, transparent, var(--ac), transparent);
            opacity: 0.3;
            transition: opacity 0.3s;
        }

        .feat-card:hover { transform: translateY(-5px); }
        .feat-card:hover::before { opacity: 1; }

        /* Per-card accent colors */
        .feat-card.ac-cyan   { --ac: var(--cyan);    --ac-bg: rgba(6,182,212,0.08);   --ac-border: rgba(6,182,212,0.28); }
        .feat-card.ac-violet { --ac: var(--violet);  --ac-bg: rgba(139,92,246,0.08);  --ac-border: rgba(139,92,246,0.28); }
        .feat-card.ac-indigo { --ac: var(--indigo);  --ac-bg: rgba(99,102,241,0.08);  --ac-border: rgba(99,102,241,0.28); }
        .feat-card.ac-emerald{ --ac: var(--emerald); --ac-bg: rgba(16,185,129,0.08);  --ac-border: rgba(16,185,129,0.28); }
        .feat-card.ac-amber  { --ac: var(--amber);   --ac-bg: rgba(245,158,11,0.08);  --ac-border: rgba(245,158,11,0.28); }
        .feat-card.ac-rose   { --ac: var(--rose);    --ac-bg: rgba(244,63,94,0.08);   --ac-border: rgba(244,63,94,0.28); }

        .feat-card:hover {
            border-color: var(--ac-border);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--ac-border);
        }

        /* Featured wide card */
        .feat-featured {
            grid-column: span 2;
            flex-direction: row;
            gap: 36px;
            align-items: center;
        }

        .feat-featured .feat-body { flex: 1; min-width: 0; }

        .feat-head {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
            padding-inline-end: 34px;
            position: relative;
            z-index: 1;
        }

        [dir="rtl"] .feat-head {
            padding-inline-end: 0;
            padding-inline-start: 34px;
        }

        /* Feature icon */
        .feat-icon {
            width: 54px; height: 54px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            font-size: 24px;
            margin-bottom: 18px;
            background: var(--ac-bg);
            border: 1px solid var(--ac-border);
            flex-shrink: 0;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .feat-card:hover .feat-icon {
            transform: scale(1.08);
            box-shadow: 0 6px 24px var(--ac-bg);
        }

        .feat-head .feat-icon {
            margin-bottom: 0;
        }

        /* Card number badge (for non-featured cards) */
        .feat-card-num {
            position: absolute;
            top: 18px;
            right: 20px;
            font-size: 11px;
            font-weight: 800;
            color: var(--ac);
            opacity: 0.35;
            letter-spacing: 0.04em;
        }

        [dir="rtl"] .feat-card-num {
            right: auto;
            left: 20px;
        }

        /* Feature tag label */
        .feat-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--ac);
            margin-bottom: 10px;
        }

        .feat-head .feat-tag {
            margin-bottom: 6px;
        }

        .feat-card h3 {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.4px;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .feat-head h3 {
            margin-bottom: 0;
        }

        .feat-card p {
            position: relative;
            z-index: 1;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            flex: 1;
        }

        /* Proof / outcome line */
        .feat-proof {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--ac);
            background: var(--ac-bg);
            border: 1px solid var(--ac-border);
            border-radius: 999px;
            padding: 5px 13px;
            width: fit-content;
        }

        /* Featured card — doc list visual */
        .feat-visual {
            flex-shrink: 0;
            width: 240px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: var(--r-md);
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 9px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        }

        .feat-visual-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--faint);
            margin-bottom: 6px;
        }

        .feat-visual-count {
            font-size: 10px;
            font-weight: 700;
            color: var(--indigo);
            background: rgba(99,102,241,0.12);
            border: 1px solid rgba(99,102,241,0.22);
            border-radius: 999px;
            padding: 2px 7px;
        }

        .doc-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 9px;
            font-size: 12px;
            transition: background 0.2s;
        }
        .doc-row:hover { background: rgba(255,255,255,0.07); }

        .doc-name {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--muted);
        }

        .doc-badge {
            font-size: 10px;
            font-weight: 700;
            color: var(--emerald);
            background: rgba(16,185,129,0.12);
            border: 1px solid rgba(16,185,129,0.25);
            border-radius: 999px;
            padding: 2px 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .feat-visual-footer {
            margin-top: 4px;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 11px;
            color: var(--faint);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Icon color shortcuts */
        .ic-cyan    { background: rgba(6,182,212,0.15); }
        .ic-violet  { background: rgba(139,92,246,0.15); }
        .ic-indigo  { background: rgba(99,102,241,0.15); }
        .ic-emerald { background: rgba(16,185,129,0.15); }
        .ic-rose    { background: rgba(244,63,94,0.15); }
        .ic-amber   { background: rgba(245,158,11,0.15); }

        /* ─── How it works ───────────────────────────────────────────────── */
        .workflow-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .step {
            display: flex;
            gap: 20px;
            position: relative;
        }

        .step-spine {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .step-circle {
            width: 40px; height: 40px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            font-size: 14px;
            font-weight: 800;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(139,92,246,0.2));
            border: 1px solid rgba(6,182,212,0.3);
            color: var(--cyan);
            position: relative;
            z-index: 1;
            transition: all 0.2s;
        }

        .step:hover .step-circle {
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            color: #fff;
            box-shadow: 0 0 20px var(--cyan-glow);
        }

        .step-line {
            width: 2px;
            flex: 1;
            background: linear-gradient(180deg, rgba(6,182,212,0.3), rgba(139,92,246,0.1));
            margin: 4px 0;
            min-height: 32px;
        }

        .step:last-child .step-line { display: none; }

        .step-body {
            padding-bottom: 32px;
        }

        .step:last-child .step-body { padding-bottom: 0; }

        .step-body h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            margin-top: 8px;
        }

        .step-body p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.65;
        }

        .tag-badge {
            display: inline-flex;
            align-items: center;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 999px;
            margin-left: 8px;
            background: rgba(244,63,94,0.15);
            color: #f87171;
            border: 1px solid rgba(244,63,94,0.3);
        }

        /* Workflow visual card */
        .workflow-visual {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .workflow-visual::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--violet), transparent);
        }

        .pipeline-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }

        .pipeline-row:last-child { border-bottom: none; }

        .pl-icon {
            width: 32px; height: 32px;
            border-radius: 9px;
            display: grid;
            place-items: center;
            font-size: 15px;
            flex-shrink: 0;
        }

        .pl-label { flex: 1; font-weight: 500; }

        .pl-status {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 999px;
        }

        .pl-done  { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
        .pl-run   { background: rgba(6,182,212,0.15); color: #22d3ee; border: 1px solid rgba(6,182,212,0.25);
                    animation: status-pulse 1.8s ease-in-out infinite; }
        .pl-queue { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }

        @keyframes status-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.55; }
        }

        /* ─── Testimonials ───────────────────────────────────────────────── */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .testi-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 24px;
            transition: all 0.2s;
        }

        .testi-card:hover {
            border-color: rgba(139,92,246,0.3);
            transform: translateY(-3px);
        }

        .stars {
            color: var(--amber);
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .testi-quote {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(241,245,249,0.9);
            margin-bottom: 18px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testi-avatar {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
        }

        .testi-name {
            font-size: 13px;
            font-weight: 700;
        }

        .testi-role {
            font-size: 12px;
            color: var(--muted);
        }

        /* ─── Pricing ───────────────────────────────────────────────────── */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

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

        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 28px 26px;
            position: relative;
            transition: border-color 0.2s, transform 0.2s;
        }

        .pricing-card:hover {
            border-color: rgba(6, 182, 212, 0.35);
            transform: translateY(-2px);
        }

        .pricing-card.featured {
            border-color: rgba(139, 92, 246, 0.35);
            box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12);
        }

        .pricing-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.28);
            margin-bottom: 14px;
        }

        .pricing-badges-row .pricing-badge { margin-bottom: 0; }

        .pricing-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .pricing-card .pricing-desc {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .price-was {
            font-size: 15px;
            color: var(--faint);
            text-decoration: line-through;
            margin-inline-end: 8px;
        }

        .price-now {
            font-size: 36px;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-unit {
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
            margin-top: 6px;
        }

        .pricing-footnote {
            text-align: center;
            margin-top: 24px;
            font-size: 13px;
            color: var(--faint);
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* ─── CTA section ────────────────────────────────────────────────── */
        .cta-block {
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            padding: 70px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--surface);
        }

        .cta-block::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
        }

        .cta-glow {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(500px 300px at 50% 0%, rgba(6,182,212,0.1), transparent),
                radial-gradient(400px 250px at 80% 100%, rgba(139,92,246,0.1), transparent);
            pointer-events: none;
        }

        .cta-block h2 {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 900;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-block p {
            color: var(--muted);
            font-size: 17px;
            max-width: 52ch;
            margin: 0 auto 32px;
            position: relative;
        }

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

        .cta-note {
            margin-top: 16px;
            font-size: 12px;
            color: var(--faint);
        }

        /* ─── FAQ ────────────────────────────────────────────────────────── */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            align-items: start;
        }

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

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item:hover { border-color: var(--border-bright); }

        .faq-item.open { border-color: rgba(6,182,212,0.35); }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.4;
        }

        .faq-question:hover { background: var(--glass); }

        .faq-chevron {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--muted);
            transition: transform 0.3s, border-color 0.2s, color 0.2s;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.2s;
        }

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

        .faq-answer-inner {
            padding: 0 22px 20px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        .faq-answer-inner strong { color: var(--ink); }

        /* ─── Contact form ───────────────────────────────────────────────── */
        .form-panel {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .form-panel::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full { grid-column: 1 / -1; }

        .form-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--muted);
        }

        .form-field {
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: var(--r-sm);
            padding: 12px 14px;
            font-size: 14px;
            color: var(--ink);
            font-family: inherit;
            transition: all 0.2s;
            width: 100%;
        }

        .form-field:focus {
            outline: none;
            border-color: rgba(6,182,212,0.5);
            background: rgba(6,182,212,0.05);
            box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
        }

        .form-field::placeholder { color: rgba(148,163,184,0.45); }

        .phone-input-wrap {
            display: flex;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--r-sm);
            background: rgba(255,255,255,0.04);
            overflow: hidden;
            transition: all 0.2s;
        }
        .phone-input-wrap:focus-within {
            border-color: rgba(6,182,212,0.5);
            background: rgba(6,182,212,0.05);
            box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
        }
        .phone-dial-select {
            background: rgba(255,255,255,0.06);
            border: none;
            border-right: 1px solid var(--border);
            padding: 12px 10px;
            font-size: 13px;
            color: var(--ink);
            font-family: inherit;
            cursor: pointer;
            outline: none;
            flex-shrink: 0;
            min-width: 112px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2394a3b8' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            padding-right: 24px;
        }
        .phone-dial-select option {
            background: #1e293b;
            color: var(--ink);
        }
        .phone-number-input {
            background: transparent;
            border: none;
            padding: 12px 14px;
            font-size: 14px;
            color: var(--ink);
            font-family: inherit;
            flex: 1;
            outline: none;
            min-width: 0;
        }
        .phone-number-input::placeholder { color: rgba(148,163,184,0.45); }

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

        .form-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .form-note {
            font-size: 12px;
            color: var(--faint);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Contact layout */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info h2 { margin-bottom: 14px; }
        .contact-info p { margin-bottom: 28px; }

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

        .channel-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 14px 16px;
            transition: all 0.2s;
        }

        .channel-card:hover {
            background: var(--glass-hover);
            border-color: var(--border-bright);
            transform: translateX(4px);
        }

        .channel-icon {
            width: 40px; height: 40px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .channel-label { font-size: 13px; color: var(--muted); }
        .channel-value { font-size: 14px; font-weight: 600; }

        /* ─── Footer ─────────────────────────────────────────────────────── */
        .footer {
            border-top: 1px solid var(--border);
            padding: 46px 0 34px;
            background:
                radial-gradient(circle at 12% 0%, rgba(6,182,212,0.08), transparent 32%),
                rgba(255,255,255,0.015);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: min(100%, 360px);
        }

        .footer-logo {
            height: 42px;
            width: auto;
            flex-shrink: 0;
            filter: drop-shadow(0 10px 24px rgba(6,182,212,0.16));
        }

        .footer-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: var(--muted);
        }

        .footer-links a {
            padding: 7px 10px;
            border-radius: 999px;
            transition: color 0.16s, background 0.16s;
        }

        .footer-links a:hover {
            color: var(--ink);
            background: var(--glass-hover);
        }

        .footer-copy {
            font-size: 13px;
            color: var(--faint);
            line-height: 1.6;
        }

        /* ─── Scroll reveal ──────────────────────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
        }

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

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

        /* ─── Hamburger menu ─────────────────────────────────────────────── */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px; height: 40px;
            border-radius: 10px;
            border: 1px solid var(--border-bright);
            background: var(--glass);
            cursor: pointer;
            padding: 9px;
            flex-shrink: 0;
        }

        .nav-hamburger span {
            display: block;
            height: 2px;
            border-radius: 2px;
            background: var(--ink);
            transition: all 0.25s ease;
        }

        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 12px 0 16px;
            border-top: 1px solid var(--border);
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--muted);
            padding: 11px 16px;
            border-radius: 10px;
            transition: all 0.15s;
        }

        .mobile-menu a:hover, .mobile-menu a:active {
            color: var(--ink);
            background: var(--glass-hover);
        }

        .mobile-menu .mob-divider {
            height: 1px;
            background: var(--border);
            margin: 6px 0;
        }

        .mobile-menu .mob-cta {
            margin-top: 4px;
        }

        /* ─── Responsive — tablet (≤1024px) ─────────────────────────────── */
        @media (max-width: 1024px) {
            .hero-layout          { grid-template-columns: 1fr; gap: 40px; }
            .hero-float-badge.tl  { top: -10px; left: 0; }
            .hero-float-badge.br  { bottom: -10px; right: 0; }
            .workflow-layout      { grid-template-columns: 1fr; gap: 36px; }
            .contact-layout       { grid-template-columns: 1fr; gap: 36px; }
            .stats-row            { grid-template-columns: repeat(2, 1fr); }
            .testi-grid           { grid-template-columns: repeat(2, 1fr); }
            .features-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .feat-featured        { grid-column: span 2; flex-direction: row; }
            .feat-visual          { width: 200px; }
            .feat-card            { padding: 28px; }
            .nav-links            { display: none; }
            .nav-hamburger        { display: flex; }
        }

        /* ─── Responsive — mobile (≤768px) ──────────────────────────────── */
        @media (max-width: 768px) {
            /* Layout & spacing */
            .section              { padding: 56px 0; }
            .section-sm           { padding: 40px 0; }
            .wrap                 { width: 94%; }

            /* Nav */
            .nav-inner            { min-height: 64px; gap: 10px; }
            .brand img            { height: 38px; }
            .nav-actions          { gap: 8px; }
            .nav-actions .btn     { min-height: 40px; border-radius: 11px; }
            .nav-lang             { padding: 8px 10px; }
            .nav-login            { padding: 10px 13px; }
            .nav-hamburger        { width: 42px; height: 42px; border-radius: 12px; }

            /* Hero */
            .hero                 { padding: 72px 0 52px; }
            .hero-layout          { text-align: center; }
            .hero-badges          { justify-content: center; gap: 7px; }
            .hero-actions         { justify-content: center; }
            .hero-float-badge     { display: none; }
            .subtitle             {
                font-size: 16px;
                text-align: justify;
                text-align-last: center;
                hyphens: auto;
                margin-left: auto;
                margin-right: auto;
            }

            /* Chat mockup */
            .chat-col             { padding: 12px 0 !important; }
            .chat-body            { min-height: 220px; }
            .msg-bubble           { font-size: 12.5px; }

            /* Stats */
            .stats-row            { grid-template-columns: repeat(2, 1fr); }
            .stat-cell            { padding: 20px 16px; }
            .stat-number          { font-size: 28px; }

            /* Features */
            .features-grid        { grid-template-columns: 1fr; gap: 14px; }
            .feat-featured        { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 18px; }
            .feat-visual          { width: 100%; padding: 14px; }
            .feat-card            { padding: 22px; border-radius: 20px; }
            .feat-head            { gap: 14px; margin-bottom: 14px; padding-inline-end: 34px; }
            .feat-icon            { width: 50px; height: 50px; font-size: 22px; margin-bottom: 0; border-radius: 15px; }
            .feat-tag             { font-size: 10px; margin-bottom: 5px; letter-spacing: 0.08em; }
            .feat-card h3         { font-size: 18px; line-height: 1.25; margin-bottom: 0; }
            .feat-card p          { text-align: start; hyphens: none; font-size: 14.5px; line-height: 1.75; }
            .feat-proof           { margin-top: 16px; max-width: 100%; line-height: 1.35; }
            .feat-card-num        { top: 16px; right: 18px; font-size: 12px; opacity: 0.24; }
            [dir="rtl"] .feat-card-num { right: auto; left: 18px; }
            [dir="rtl"] .feat-head { padding-inline-end: 0; padding-inline-start: 34px; }

            /* Section headings */
            h2.section-title      { font-size: clamp(24px, 6vw, 34px); }
            .section-sub          { text-align: justify; hyphens: auto; font-size: 15px; }

            /* Display headline */
            .display              { font-size: clamp(24px, 7vw, 38px); letter-spacing: -1px; }
            .display-rest         { letter-spacing: -0.8px; margin-top: 6px; }
            .display-rest .snap::after { height: 2px; bottom: -2px; }

            /* Workflow */
            .step-body p          { text-align: justify; hyphens: auto; }
            .workflow-visual      { display: none; }

            /* Testimonials */
            .testi-grid           { grid-template-columns: 1fr; gap: 12px; }
            .testi-quote          { text-align: justify; hyphens: auto; }

            /* CTA block */
            .cta-block            { padding: 44px 22px; text-align: center; }
            .cta-block p          { text-align: center; font-size: 15px; }
            .cta-actions          { flex-direction: column; align-items: stretch; }
            .cta-actions .btn     { width: 100%; justify-content: center; }
            .cta-note             { font-size: 12px; }

            /* Contact */
            .contact-channels     { gap: 10px; }
            .channel-card         { padding: 12px 14px; }

            /* Form */
            .form-panel           { padding: 24px 20px; }
            .form-grid            { grid-template-columns: 1fr; gap: 12px; }
            .form-group.full      { grid-column: 1; }
            .form-actions         { flex-direction: column; align-items: stretch; }
            .form-actions .btn    { width: 100%; justify-content: center; }
            .form-note            { justify-content: center; }

            /* Footer */
            .footer-inner         {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 18px;
            }
            .footer-brand         { flex-direction: column; justify-content: center; gap: 10px; }
            .footer-logo          { height: 54px; }
            .footer-links         { justify-content: center; gap: 8px; }
        }

        /* ─── Responsive — small mobile (≤480px) ────────────────────────── */
        @media (max-width: 480px) {
            /* Stats: 2 cols still works, but tighten */
            .stat-number          { font-size: 26px; letter-spacing: -1px; }
            .stat-label           { font-size: 12px; }

            /* Badges wrap nicely */
            .hero-badges          { gap: 6px; }
            .badge                { font-size: 11px; padding: 4px 9px; }

            /* Buttons: comfortable touch targets */
            .btn-lg               { padding: 15px 20px; font-size: 15px; }
            .btn                  { min-height: 46px; }
            .nav-inner            { gap: 8px; }
            .brand img            { height: 36px; }
            .nav-actions          { gap: 6px; }
            .nav-actions .btn     { min-height: 40px; }
            .nav-lang             { padding: 8px; }
            .nav-lang-text        { display: none; }
            .nav-login            { padding: 9px 11px; font-size: 13px; }
            .nav-login-full       { display: none; }
            .nav-login-short      { display: inline; }
            .nav-hamburger        { width: 40px; height: 40px; }

            /* Labels */
            .label-chip           { font-size: 11px; padding: 5px 11px; }

            /* Feature cards */
            .feat-card            { padding: 18px; }
            .feat-head            { gap: 12px; margin-bottom: 12px; padding-inline-end: 28px; }
            [dir="rtl"] .feat-head { padding-inline-end: 0; padding-inline-start: 28px; }
            .feat-icon            { width: 44px; height: 44px; font-size: 20px; border-radius: 14px; }
            .feat-card h3         { font-size: 16.5px; }
            .feat-card p          { font-size: 13.5px; line-height: 1.7; }
            .feat-proof           { font-size: 11.5px; padding: 5px 10px; }
            .doc-row              { padding: 7px 8px; font-size: 11.5px; }

            /* Steps */
            .step-circle          { width: 36px; height: 36px; font-size: 13px; }
            .step-body h4         { font-size: 15px; }

            /* Channel cards */
            .channel-value        { font-size: 13px; }

            /* Chat input placeholder */
            .chat-input-field     { font-size: 12px; }

            /* Footer */
            .footer               { padding: 40px 0 28px; }
            .footer-brand         { align-items: center; gap: 9px; }
            .footer-logo          { height: 58px; }
            .footer-copy          { font-size: 12px; }
        }