        :root {
            --green: #22c55e;
            --green-dark: #16a34a;
            --green-light: #dcfce7;
            --green-glow: rgba(34, 197, 94, 0.15);
            --dark: #f8fafc;
            --dark2: #f1f5f9;
            --dark3: #e2e8f0;
            --card: #ffffff;
            --text: #0f172a;
            --muted: #64748b;
            --white: #ffffff;
            --orange: #F97316;
            --yellow: #EAB308;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Syne', sans-serif;
        }

        /* ─── NOISE OVERLAY ─── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 300;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 60px;
            backdrop-filter: blur(20px);
            background: transparent;
            border-bottom: none;
            color: var(--white);
            transition: all 0.3s;
        }

        nav.scrolled {
            padding: 14px 60px;
            background: rgba(248, 250, 252, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        nav.scrolled .logo {
            color: var(--text);
        }

        nav.scrolled .nav-menu li a {
            color: var(--text);
        }

        nav.scrolled .nav-menu li a:hover {
            color: var(--green);
        }

        nav.scrolled .btn-nav-primary {
            background: var(--green);
            color: #000 !important;
            box-shadow: 0 4px 14px rgba(34,197,94,0.2);
        }

        nav.scrolled .btn-nav-primary:hover {
            background: var(--green-dark);
            box-shadow: 0 8px 20px rgba(34,197,94,0.3);
        }

        nav.scrolled .btn-nav-outline {
            background: rgba(15, 23, 42, 0.08);
            border: 1.5px solid rgba(15, 23, 42, 0.15);
            color: var(--text) !important;
        }

        nav.scrolled .btn-nav-outline:hover {
            background: rgba(15, 23, 42, 0.12);
            border-color: rgba(15, 23, 42, 0.25);
        }

        .logo {
            color: #fff;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.04em;
        }

        .logo span {
            color: var(--green);
        }

        .logo .dot {
            color: var(--orange);
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-menu li a {
            color: rgba(255,255,255,0.92);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-menu li a i { font-size: 0.8rem; }

        .nav-menu li a:hover { color: var(--white); }

        .nav-actions { display: flex; gap: 10px; align-items: center; }

        .btn-nav-primary {
            background: rgba(34, 197, 94, 0.95);
            color: #000 !important;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.22s;
            box-shadow: 0 4px 14px rgba(34,197,94,0.25);
        }
        .btn-nav-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(34,197,94,0.35); }

        .btn-nav-outline {
            background: rgba(255,255,255,0.12);
            border: 1.5px solid rgba(255,255,255,0.65);
            color: var(--white) !important;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.22s;
        }
        .btn-nav-outline:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

        .mobile-nav-toggle { display: none; border: 2px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; position: relative; z-index: 200; }
        .mobile-nav-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 999px; transition: transform 0.25s ease, opacity 0.25s ease; }
        .mobile-nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
        .mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
        .mobile-nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

        @media (max-width: 980px) { nav { padding: 18px 24px; } .mobile-nav-toggle { display: inline-flex !important; border: 2px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; position: relative; z-index: 200; }
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 24px;
                padding: 110px 24px 24px;
                background: #fff;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                transform: translateX(100%);
                transition: transform 0.28s ease;
                z-index: 160;
            }
            .nav-menu.open {
                transform: translateX(0);
            }
            .nav-menu li {
                width: 100%;
            }
            .nav-menu li a {
                font-size: 1.05rem;
                padding: 18px 0;
                color: var(--text);
                font-weight: 700;
                border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            }
            .nav-menu li a:hover {
                color: var(--green);
            }
            .nav-actions {
                display: none;
            }
            nav.open .nav-actions {
                display: flex;
                position: fixed;
                left: 0;
                right: 0;
                bottom: 24px;
                width: 100vw;
                flex-direction: column;
                justify-content: center;
                gap: 12px;
                padding: 0 24px;
                background: rgba(255,255,255,0.96);
                z-index: 151;
            }
            .btn-nav-primary,
            .btn-nav-outline {
                width: 100%;
                justify-content: center;
            }
            .btn-nav-outline {
                color: var(--text) !important;
                background: rgba(15, 23, 42, 0.06);
                border-color: rgba(15, 23, 42, 0.12);
            }
            .btn-nav-outline:hover {
                color: var(--text) !important;
                background: rgba(15, 23, 42, 0.1);
            }
            .nav-menu li + li {
                margin-top: 18px;
            }
            .mobile-nav-backdrop {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.48);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease;
                z-index: 140;
            }
            nav.open + .mobile-nav-backdrop {
                display: block;
                opacity: 1;
                pointer-events: auto;
            }
            body.nav-open {
                overscroll-behavior: none;
                overflow: hidden;
                height: 100vh;
            }
        }

        /* ─── BACKGROUND TEXTURES ─── */
        .hero-slide-1 {
            background: transparent;
        }

        /* HERO STICKY SECTION */
        .hero-wrapper {
            height: 120vh;
            position: relative;
        }

        .hero {
            position: relative;
            overflow: visible;
        }

        .hero-slide-1 {
            position: sticky;
            top: 0;
            height: 120vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 40px 60px 30px;
            z-index: 1;
            overflow: hidden;
            perspective: 1500px;
            transform-style: preserve-3d;
        }

        .hero-content-wrap {
            position: relative;
            z-index: 3;
            max-width: 720px;
            margin: 0 auto;
            width: 100%;
            opacity: 0.18;
            transition: opacity 0.62s ease;
            will-change: opacity;
        }

        .hero h1,
        .hero-sub,
        .hero-btns,
        .hero-stats,
        .scroll-btn {
            opacity: 0;
            transition: opacity 0.62s ease;
        }

        .hero h1 {
            transition-delay: 0.05s;
        }
        .hero-sub {
            transition-delay: 0.12s;
        }
        .hero-btns {
            transition-delay: 0.18s;
        }
        .hero-stats {
            transition-delay: 0.24s;
        }
        .scroll-btn {
            transition-delay: 0.3s;
        }

        .hero-title-line {
            display: block;
            overflow: hidden;
            white-space: nowrap;
            max-width: 0;
            animation: none;
        }
        .hero-title-line.line2 {
            animation-delay: 1.1s;
        }

        body.hero-scrolled .hero-title-line {
            animation: typing 1.8s steps(32,end) forwards;
        }

        @keyframes typing {
            from { max-width: 0; }
            to { max-width: 100%; }
        }

        body.hero-scrolled .hero-content-wrap {
            opacity: 1;
        }

        body.hero-scrolled .hero h1,
        body.hero-scrolled .hero-sub,
        body.hero-scrolled .hero-btns,
        body.hero-scrolled .hero-stats,
        body.hero-scrolled .scroll-btn {
            opacity: 1;
        }

        /* Slide 2 removed: hero uses a single 100vh section now */

        .hero-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 2;
        }

        .orb1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
            top: -80px;
            left: -80px;
            animation: floatOrb 8s ease-in-out infinite;
        }

        .orb2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            bottom: -80px;
            right: 80px;
            animation: floatOrb 10s ease-in-out infinite reverse;
        }

        .orb3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 70%);
            top: 150px;
            right: 200px;
            animation: floatOrb 12s ease-in-out infinite 2s;
        }

        @keyframes floatOrb {

            0%,
            100% {
                transform: translate(0, 0);
            }

            33% {
                transform: translate(30px, -20px);
            }

            66% {
                transform: translate(-20px, 30px);
            }
        }

        

        /* HERO VIDEO */
        .hero-video-wrapper {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
            background: #000;
        }

        .hero-video-wrapper video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            opacity: 0.75;
        }

        .hero-video-wrapper iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 177.77vh;
            height: 100vw;
            min-width: 177.77vw;
            min-height: 100vh;
            transform: translate(-50%, -50%);
            border: none;
            pointer-events: none;
            opacity: 0.75;
        }

        .hero-slide-1::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(180deg, rgba(5, 10, 20, 0.18) 0%, rgba(5, 10, 20, 0.35) 40%, rgba(5, 10, 20, 0.55) 100%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hero-video-wrapper { display: block; }
            .hero-wrapper {
                height: 90vh;
            }
            .hero-slide-1 {
                height: auto;
                justify-content: flex-start;
                padding-top: 70px;
                padding-bottom: 30px;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.25);
            border-radius: 50px;
            padding: 4px 12px;
            font-size: 0.68rem;
            color: var(--green);
            margin-bottom: 18px;
            /* animation removed to defer reveal until scroll */
        }

        .hero-badge .pulse {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s infinite;
            
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.4);
            }
        }

        .hero h1 {
            font-size: clamp(1.5rem, 3.5vw, 2.6rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 18px;
            /* animation removed to defer reveal until scroll */
        }

        .hero h1 .green {
            color: #7ef2aa;
        }

        .hero h1 .line2 {
            display: block;
        }

        .hero-sub {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.82);
            margin: 14px auto 24px;
            max-width: 680px;
            line-height: 1.7;
            /* animation removed to defer reveal until scroll */
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 22px;
            /* animation removed to defer reveal until scroll */
        }

        .btn-primary {
            background: rgba(34, 197, 94, 0.95);
            color: #000;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s;
            font-family: 'Syne', sans-serif;
            box-shadow: 0 6px 20px rgba(34,197,94,0.35);
            letter-spacing: 0.01em;
        }
        .btn-primary i { font-size: 0.85rem; }
        .btn-primary:hover {
            background: var(--green-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(34,197,94,0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.78rem;
            transition: all 0.2s;
            padding: 10px 20px;
            border-radius: 50px;
            border: 1.5px solid rgba(255,255,255,0.35);
            background: rgba(255,255,255,0.08);
        }
        .btn-secondary i { font-size: 0.75rem; color: var(--green); }
        .btn-secondary:hover {
            color: var(--green);
            border-color: rgba(34,197,94,0.4);
            background: rgba(34,197,94,0.06);
            transform: translateY(-2px);
        }

        /* scroll btn */
        .scroll-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            background: none;
            border: none;
            cursor: pointer;
            color: #fff;
            font-size: 0.7rem;
            font-family: 'DM Sans', sans-serif;
            transition: color 0.2s;
        }
        .scroll-btn:hover { color: var(--green); }
        .scroll-btn .scroll-mouse {
            width: 18px; height: 28px;
            border: 2px solid currentColor;
            border-radius: 10px;
            display: flex; justify-content: center; padding-top: 5px;
        }
        .scroll-btn .scroll-wheel {
            width: 2px; height: 6px;
            background: var(--green);
            border-radius: 2px;
            animation: scrollWheel 1.5s ease-in-out infinite;
        }

        .hero-stats {
            display: flex;
            gap: 20px;
            margin-top: 24px;
            margin-bottom: 18px;
            justify-content: center;
            /* animation removed to defer reveal until scroll */
        }

        .hero-stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
        }

        .hero-stat-num span {
            color: #fff;
        }

        .hero-stat-label {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.85);
            margin-top: 1px;
        }

        /* ─── PHONE MOCKUPS (slide 2) ─── */
        .hero-phones {
            position: relative;
            height: 400px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
        }

        .phone-frame {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.1);
            background: #f1f5f9;
        }
        .phone-frame::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(0,0,0,0.04) 100%);
            z-index: 5;
            pointer-events: none;
            border-radius: 28px;
        }

        .phone-float {
            position: relative;
            animation: phoneFloat 6s ease-in-out infinite;
            flex-shrink: 0;
        }
        .phone-float.float-left {
            animation-duration: 7s;
            animation-delay: 1s;
        }
        .phone-float.float-right {
            animation-duration: 8s;
            animation-delay: 0.5s;
        }
        .phone-float.float-main {
            z-index: 3;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .phone-main {
            width: 170px;
            height: 350px;
            position: relative;
        }

        .phone-left {
            width: 145px;
            height: 300px;
            position: relative;
            transform: translateY(20px);
            opacity: 0.85;
        }

        .phone-right {
            width: 145px;
            height: 300px;
            position: relative;
            transform: translateY(20px);
            opacity: 0.85;
        }

        .phone-left:hover,
        .phone-right:hover {
            opacity: 1;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
        }
        .phone-notch {
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 14px;
            background: rgba(0,0,0,0.85);
            border-radius: 0 0 10px 10px;
            z-index: 6;
        }
        .phone-notch::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: rgba(50,50,80,0.6);
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .phone-reflect {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.03) 100%);
            z-index: 4;
            pointer-events: none;
            border-radius: inherit;
        }

        .phone-glow {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 40px;
            background: rgba(46, 204, 113, 0.3);
            filter: blur(25px);
            border-radius: 50%;
            z-index: 1;
        }

        /* floating tags around phones */
        .float-tag {
            position: absolute;
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 10px;
            padding: 6px 12px;
            font-size: 0.68rem;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            z-index: 5;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
            animation: floatTag 4s ease-in-out infinite;
        }

        .float-tag:nth-child(2) {
            animation-delay: 1s;
        }

        .float-tag:nth-child(3) {
            animation-delay: 2s;
        }

        .float-tag:nth-child(4) {
            animation-delay: 1.5s;
        }

        @keyframes floatTag {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }
        }

        .tag-1 {
            top: 20px;
            left: 5%;
        }

        .tag-2 {
            bottom: 100px;
            left: 5%;
        }

        .tag-3 {
            top: 30px;
            right: 5%;
        }

        .tag-4 {
            bottom: 60px;
            right: 5%;
        }

        .tag-icon {
            font-size: 0.9rem;
        }

        .tag-title {
            font-weight: 500;
            font-size: 0.7rem;
            color: var(--text);
        }

        .tag-sub {
            color: var(--muted);
            font-size: 0.62rem;
        }

        .tag-green {
            color: var(--green);
            font-weight: 600;
        }

        /* ─── SCROLL INDICATOR ─── */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 0.75rem;
            z-index: 10;
            animation: fadeSlideUp 1s ease 1s both;
        }

        .scroll-mouse {
            width: 22px;
            height: 36px;
            border: 2px solid rgba(15, 23, 42, 0.2);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 6px;
        }

        .scroll-wheel {
            width: 3px;
            height: 8px;
            background: var(--green);
            border-radius: 2px;
            animation: scrollWheel 1.5s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0% {
                transform: translateY(0);
                opacity: 1;
            }

            100% {
                transform: translateY(10px);
                opacity: 0;
            }
        }

        /* ─── BRAND BAR ─── */
        .brand-bar {
            padding: 8px 60px;
            border-top: 1px solid rgba(15, 23, 42, 0.07);
            border-bottom: 1px solid rgba(15, 23, 42, 0.07);
            background: rgba(15, 23, 42, 0.02);
            overflow: hidden;
        }

        .brand-bar-inner {
            display: flex;
            gap: 48px;
            align-items: center;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .brand-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            opacity: 0.35;
            transition: opacity 0.3s;
        }

        .brand-logo:hover {
            opacity: 0.7;
        }

        .brand-logo svg {
            height: 28px;
            width: auto;
        }

        .brand-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(46, 204, 113, 0.25);
            flex-shrink: 0;
        }

        /* ─── SECTIONS COMMON ─── */
        section {
            position: relative;
            overflow: hidden;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.7;
            max-width: 520px;
            margin-top: 16px;
        }

        /* ─── HOW IT WORKS ─── */
        .how {
            padding: 120px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .how-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .how-header .section-sub {
            margin: 16px auto 0;
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .how-step {
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 24px;
            padding: 36px 28px;
            position: relative;
            transition: all 0.3s;
            cursor: default;
            opacity: 0;
            transform: translateY(30px);
        }

        .how-step.visible {
            animation: fadeSlideUp 0.5s ease forwards;
        }

        .how-step:nth-child(2) {
            animation-delay: 0.1s;
        }

        .how-step:nth-child(3) {
            animation-delay: 0.2s;
        }

        .how-step:nth-child(4) {
            animation-delay: 0.3s;
        }

        .how-step:hover {
            border-color: rgba(34, 197, 94, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
        }

        .step-num {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: rgba(46, 204, 113, 0.1);
            line-height: 1;
            position: absolute;
            top: 20px;
            right: 24px;
        }

        .step-emoji {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: 'Syne', sans-serif;
        }

        .step-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .how-connector {
            position: absolute;
            top: 56px;
            height: 2px;
            background: linear-gradient(90deg, rgba(46, 204, 113, 0.4), rgba(46, 204, 113, 0.1));
            border-radius: 2px;
            pointer-events: none;
            z-index: 0;
        }

        /* ─── APP FEATURES ─── */
        .features {
            padding: 120px 60px;
            background: var(--dark2);
        }

        .features-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 80px;
        }

        .features-grid.reverse {
            direction: rtl;
        }

        .features-grid.reverse>* {
            direction: ltr;
        }

        .features-phone-wrap {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .features-phone {
            width: 260px;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.07);
            transition: transform 0.4s ease;
        }

        .features-phone:hover {
            transform: scale(1.02) rotate(-1deg);
        }

        .features-phone img {
            width: 100%;
            display: block;
        }

        .features-glow-bg {
            position: absolute;
            inset: -40px;
            background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .feature-items {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s;
        }

        .feature-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(46, 204, 113, 0.12);
            border: 1px solid rgba(46, 204, 113, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .feature-item:hover .feature-icon {
            background: rgba(46, 204, 113, 0.2);
            transform: scale(1.05);
        }

        .feature-text h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            font-family: 'Syne', sans-serif;
        }

        .feature-text p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ─── STATS BELT ─── */
        .stats-belt {
            background: var(--green);
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .stats-belt::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #000;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .stat-num sup {
            font-size: 1.4rem;
            vertical-align: super;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.6);
            margin-top: 8px;
        }

        /* ─── RESTAURANT SIDE ─── */
        .restaurant {
            padding: 120px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .restaurant-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .restaurant-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .rest-feature-card {
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 18px;
            padding: 24px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .rest-feature-card.visible {
            animation: fadeSlideUp 0.5s ease forwards;
        }

        .rest-feature-card:hover {
            border-color: rgba(46, 204, 113, 0.2);
            transform: translateY(-4px);
            background: rgba(46, 204, 113, 0.04);
        }

        .rest-icon {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .rest-feature-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Syne', sans-serif;
        }

        .rest-feature-card p {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ─── MENU SHOWCASE ─── */
        .menu-showcase {
            padding: 120px 60px;
            background: var(--dark2);
        }

        .menu-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .see-all {
            color: var(--green);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .see-all:hover {
            gap: 12px;
        }

        .cats {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cat-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid rgba(15, 23, 42, 0.12);
            background: transparent;
            color: var(--muted);
            transition: all 0.2s;
            font-family: 'DM Sans', sans-serif;
        }

        .cat-btn:hover,
        .cat-btn.active {
            background: var(--green);
            color: #000;
            border-color: var(--green);
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .food-card {
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 22px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.95);
        }

        .food-card.visible {
            animation: fadeScale 0.4s ease forwards;
        }

        @keyframes fadeScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .food-card:hover {
            border-color: rgba(34, 197, 94, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .food-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .food-body {
            padding: 16px;
        }

        .food-name {
            font-family: 'Syne', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .food-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
        }

        .food-price {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--green);
        }

        .food-add {
            width: 32px;
            height: 32px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-family: 'DM Sans', sans-serif;
        }

        .food-add:hover {
            background: #26d968;
            transform: scale(1.1);
        }

        .food-time {
            font-size: 0.75rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ─── TESTIMONIALS ─── */
        .testimonials {
            padding: 120px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .test-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .test-header .section-sub {
            margin: 16px auto 0;
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .test-card {
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 22px;
            padding: 32px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .test-card.visible {
            animation: fadeSlideUp 0.5s ease forwards;
        }

        .test-card:hover {
            border-color: rgba(46, 204, 113, 0.15);
            transform: translateY(-4px);
        }

        .test-stars {
            color: var(--yellow);
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .test-text {
            font-size: 0.92rem;
            line-height: 1.7;
            color: var(--muted);
            margin-bottom: 24px;
            font-style: italic;
        }

        .test-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .test-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            background: var(--dark3);
            border: 2px solid rgba(34, 197, 94, 0.25);
            overflow: hidden;
        }

        .test-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .test-name {
            font-weight: 600;
            font-size: 0.9rem;
            font-family: 'Syne', sans-serif;
        }

        .test-role {
            font-size: 0.78rem;
            color: var(--muted);
        }

        /* ─── PRICING ─── */
        .pricing {
            padding: 120px 60px;
            background: var(--dark2);
        }

        .pricing-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-header .section-sub {
            margin: 16px auto 0;
        }

        .price-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 50px;
        }

        .toggle-label {
            font-size: 0.9rem;
            color: var(--muted);
            font-weight: 500;
        }

        .toggle-switch {
            width: 52px;
            height: 28px;
            background: var(--dark3);
            border-radius: 50px;
            border: 1px solid rgba(15, 23, 42, 0.12);
            position: relative;
            cursor: pointer;
            transition: background 0.2s;
        }

        .toggle-switch.on {
            background: var(--green);
        }

        .toggle-knob {
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
            transition: left 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        }

        .toggle-switch.on .toggle-knob {
            left: 28px;
        }

        .save-badge {
            background: rgba(46, 204, 113, 0.15);
            color: var(--green);
            font-size: 0.72rem;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid rgba(46, 204, 113, 0.25);
        }

        .price-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }

        .price-card {
            background: var(--card);
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: 24px;
            padding: 36px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .price-card.visible {
            animation: fadeSlideUp 0.5s ease forwards;
        }

        .price-card.featured {
            background: var(--green);
            border-color: var(--green);
            transform: scale(1.04) translateY(-8px);
            box-shadow: 0 30px 80px rgba(46, 204, 113, 0.3);
        }

        .price-card.featured.visible {
            animation: fadeSlideUpFeat 0.5s ease 0.1s forwards;
        }

        @keyframes fadeSlideUpFeat {
            to {
                opacity: 1;
                transform: scale(1.04) translateY(-8px);
            }
        }

        .price-card:not(.featured):hover {
            border-color: rgba(46, 204, 113, 0.2);
            transform: translateY(-6px);
        }

        .plan-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--green);
            background: rgba(46, 204, 113, 0.1);
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 20px;
            border: 1px solid rgba(46, 204, 113, 0.2);
        }

        .price-card.featured .plan-badge {
            background: rgba(0, 0, 0, 0.15);
            color: #000;
            border-color: rgba(0, 0, 0, 0.1);
        }

        .plan-name {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 8px;
            font-family: 'Syne', sans-serif;
        }

        .price-card.featured .plan-name,
        .price-card.featured .plan-desc,
        .price-card.featured .price-num,
        .price-card.featured .price-period,
        .price-card.featured .price-feature {
            color: #000;
        }

        .price-card.featured .price-feature.check::before {
            border-color: rgba(0, 0, 0, 0.4);
        }

        .plan-desc {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 28px;
        }

        .price-card.featured .plan-desc {
            color: rgba(0, 0, 0, 0.6);
        }

        .price-display {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 28px;
        }

        .price-dollar {
            font-size: 1.2rem;
            color: var(--muted);
        }

        .price-num {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .price-period {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .price-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .price-feature {
            font-size: 0.88rem;
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--muted);
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        }

        .price-card.featured .price-feature {
            color: rgba(0, 0, 0, 0.7);
            border-bottom-color: rgba(0, 0, 0, 0.08);
        }

        .check-icon {
            color: var(--green);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .price-card.featured .check-icon {
            color: #000;
        }

        .x-icon {
            color: rgba(15, 23, 42, 0.25);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .price-btn {
            display: block;
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            border: 1px solid rgba(15, 23, 42, 0.15);
            background: transparent;
            color: var(--text);
            transition: all 0.2s;
        }

        .price-btn:hover {
            background: rgba(15, 23, 42, 0.05);
        }

        .price-card.featured .price-btn {
            background: #000;
            color: var(--green);
            border-color: #000;
        }

        .price-card.featured .price-btn:hover {
            background: rgba(0, 0, 0, 0.85);
        }

        /* ─── FAQ ─── */
        .faq {
            padding: 120px 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header .section-sub {
            margin: 16px auto 0;
        }

        .faq-item {
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item.open {
            border-color: rgba(46, 204, 113, 0.2);
        }

        .faq-q {
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .faq-item.open .faq-q {
            color: var(--green);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            line-height: 1;
            flex-shrink: 0;
            transition: all 0.3s;
            color: var(--muted);
        }

        .faq-item.open .faq-icon {
            background: rgba(46, 204, 113, 0.15);
            color: var(--green);
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .faq-item.open .faq-a {
            max-height: 200px;
        }

        .faq-a-inner {
            padding: 0 28px 24px;
        }

        /* ─── CTA / DOWNLOAD ─── */
        .cta-section {
            padding: 120px 60px;
            background: var(--dark2);
        }

        .cta-inner {
            max-width: 1100px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.12) 0%, rgba(46, 204, 113, 0.03) 100%);
            border: 1px solid rgba(46, 204, 113, 0.15);
            border-radius: 36px;
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 60px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-title {
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .cta-sub {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.6;
            max-width: 480px;
        }

        .store-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 28px;
            background: var(--dark3);
            border: 1px solid rgba(15, 23, 42, 0.1);
            border-radius: 16px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.25s;
            width: 200px;
            white-space: nowrap;
        }

        .store-btn:hover {
            background: var(--green);
            color: #000;
            border-color: var(--green);
            transform: scale(1.03);
        }

        .store-icon {
            font-size: 1.6rem;
            flex-shrink: 0;
        }

        .store-text-sm {
            font-size: 0.68rem;
            color: inherit;
            opacity: 0.7;
            display: block;
        }

        .store-text-lg {
            font-size: 0.95rem;
            font-weight: 700;
            font-family: 'Syne', sans-serif;
        }

        .store-btn:hover .store-text-sm {
            opacity: 0.7;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--dark2);
            border-top: 1px solid rgba(15, 23, 42, 0.08);
            padding: 80px 60px 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            font-size: 1.4rem;
            margin-bottom: 16px;
            display: block;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            background: rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            text-decoration: none;
            color: var(--muted);
            transition: all 0.2s;
        }

        .social-btn:hover {
            background: rgba(46, 204, 113, 0.1);
            color: var(--green);
            border-color: rgba(46, 204, 113, 0.2);
        }

        .footer-col h5 {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 20px;
            font-family: 'Syne', sans-serif;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-col ul li a:hover {
            color: var(--green);
        }

        .footer-col ul li a::before {
            content: '→';
            font-size: 0.7rem;
            opacity: 0;
            transition: all 0.2s;
            transform: translateX(-6px);
        }

        .footer-col ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-bottom {
            border-top: 1px solid rgba(15, 23, 42, 0.08);
            padding-top: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-copy {
            font-size: 0.82rem;
            color: var(--muted);
        }

        .footer-copy span {
            color: var(--green);
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            font-size: 0.82rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── SCROLL REVEAL WRAPPER ─── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .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;
        }

        /* responsive */
        @media (max-width: 900px) {
            nav {
                padding: 16px 24px;
            }

            nav ul {
                display: none;
            }

            .hero-slide-1 {
                padding: 100px 24px 30px;
                height: 80vh;
            }

            .hero-phones {
                height: 260px;
            }

            .phone-main {
                width: 130px;
                height: 270px;
            }

            .phone-left, .phone-right {
                width: 110px;
                height: 230px;
            }

            .float-tag {
                padding: 4px 8px;
                font-size: 0.6rem;
                border-radius: 8px;
            }

            .tag-1 { top: 10px; left: 3%; }
            .tag-2 { bottom: 70px; left: 3%; }
            .tag-3 { top: 15px; right: 3%; }
            .tag-4 { bottom: 40px; right: 3%; }

            .tag-icon { font-size: 0.7rem; }
            .tag-title { font-size: 0.6rem; }
            .tag-sub { font-size: 0.55rem; }
            .phone-glow { width: 140px; height: 30px; bottom: -15px; }
            .phone-frame { border-radius: 18px; }
            .phone-notch { height: 10px; width: 35%; top: 4px; }
            .phone-notch::before { width: 4px; height: 4px; }
            .phone-reflect { display: none; }

            .how,
            .restaurant {
                padding: 80px 24px;
            }

            .how-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .features {
                padding: 80px 24px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .food-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .test-grid {
                grid-template-columns: 1fr;
            }

            .price-cards {
                grid-template-columns: 1fr;
            }

            .restaurant-grid {
                grid-template-columns: 1fr;
            }

            .cta-inner {
                grid-template-columns: 1fr;
                padding: 48px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .store-btns {
                flex-direction: row;
            }

            .menu-showcase {
                padding: 80px 24px;
            }

            .cta-section {
                padding: 80px 24px;
            }

            .pricing {
                padding: 80px 24px;
            }

            .faq {
                padding: 80px 24px;
            }

            .testimonials {
                padding: 80px 24px;
            }

            footer {
                padding: 60px 24px 40px;
            }

            .brand-bar {
                padding: 24px 24px;
            }
            .brand-logo svg {
                height: 22px;
            }
            .brand-bar-inner {
                gap: 32px;
            }

            .stats-belt {
                padding: 40px 24px;
            }
        }

        /* ─── TABLET RESPONSIVE (768px and below) ─── */
        @media (max-width: 768px) {
            :root {
                --font-size-base: 15px;
            }

            nav {
                padding: 14px 20px;
            }

            nav.scrolled {
                padding: 12px 20px;
            }

            .nav-menu {
                gap: 16px;
            }

            .nav-menu li a {
                font-size: 0.8rem;
            }

            .btn-nav-primary,
            .btn-nav-outline {
                padding: 8px 16px;
                font-size: 0.78rem;
            }

            .hero-slide-1 {
                padding: 100px 20px 30px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-sub {
                font-size: 0.95rem;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat-num {
                font-size: 1.8rem;
            }

            .hero-stat-label {
                font-size: 0.75rem;
            }

            .scroll-btn {
                font-size: 0.85rem;
                padding: 10px 18px;
            }

            .how {
                padding: 60px 20px;
            }

            .how h2 {
                font-size: 1.8rem;
            }

            .how-steps {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .how-step {
                padding: 28px 24px;
            }

            .features {
                padding: 60px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .restaurant {
                padding: 60px 20px;
            }

            .restaurant-grid {
                grid-template-columns: 1fr;
            }

            .rest-feature-card {
                padding: 20px;
            }

            .food-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .food-card {
                border-radius: 16px;
            }

            .test-grid {
                grid-template-columns: 1fr;
            }

            .price-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .price-card {
                padding: 28px;
            }

            .price-card.featured {
                transform: scale(1) translateY(0);
            }

            .plan-name {
                font-size: 1.2rem;
            }

            .price-num {
                font-size: 2.2rem;
            }

            .price-features {
                gap: 10px;
            }

            .price-feature {
                font-size: 0.8rem;
            }

            .cta-inner {
                gap: 30px;
                padding: 40px 20px;
            }

            .cta-title {
                font-size: 1.8rem;
            }

            .store-btns {
                flex-direction: column;
                gap: 12px;
            }

            .store-btn {
                width: 100%;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .brand-bar-inner {
                gap: 20px;
            }

            .testimonials {
                padding: 60px 20px;
            }

            .faq {
                padding: 60px 20px;
            }

            .faq-q {
                font-size: 0.95rem;
                padding: 16px 20px;
            }

            .faq-a-inner {
                font-size: 0.85rem;
                padding: 0 20px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-sub {
                font-size: 0.9rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.2rem;
            }
        }

        /* ─── MOBILE RESPONSIVE (480px and below) ─── */
        @media (max-width: 480px) {
            :root {
                --font-size-base: 14px;
            }

            nav {
                padding: 12px 16px;
                gap: 12px;
            }

            nav.scrolled {
                padding: 10px 16px;
            }

            .logo {
                font-size: 1.2rem;
            }

            .nav-menu {
                display: none;
                gap: 0;
            }
            .nav-menu.open {
                display: flex;
            }

            .nav-actions {
                gap: 6px;
                width: 100%;
                flex-wrap: wrap;
            }

            .btn-nav-primary,
            .btn-nav-outline {
                padding: 8px 12px;
                font-size: 0.7rem;
                flex: 1;
                min-width: 120px;
                justify-content: center;
            }

            .btn-nav-primary i,
            .btn-nav-outline i {
                display: none;
            }

            .hero-slide-1 {
                padding: 100px 16px 20px;
                height: auto;
                min-height: 80vh;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 10px;
            }

            .hero h1 {
                font-size: 1.5rem;
                line-height: 1.3;
            }

            .hero-sub {
                font-size: 0.85rem;
                padding: 0 10px;
            }

            .hero-btns {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 20px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .btn-primary i,
            .btn-secondary i {
                display: none;
            }

            .hero-stats {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 0 10px;
            }

            .hero-stat-num {
                font-size: 1.4rem;
            }

            .hero-stat-label {
                font-size: 0.7rem;
            }

            .scroll-btn {
                font-size: 0.75rem;
                padding: 8px 14px;
                gap: 4px;
            }

            .scroll-mouse,
            .scroll-wheel {
                width: 16px;
                height: 24px;
            }

            .how {
                padding: 40px 16px;
            }

            .how h2 {
                font-size: 1.4rem;
            }

            .how-steps {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .how-step {
                padding: 20px 16px;
            }

            .step-num {
                font-size: 1.2rem;
            }

            .step-emoji {
                font-size: 1.8rem;
            }

            .step-title {
                font-size: 1rem;
            }

            .step-desc {
                font-size: 0.8rem;
            }

            .features {
                padding: 40px 16px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-phone-wrap {
                display: none;
            }

            .feature-items {
                width: 100%;
            }

            .feature-item {
                padding: 16px;
            }

            .feature-icon {
                font-size: 1.8rem;
            }

            .feature-text h4 {
                font-size: 0.95rem;
            }

            .feature-text p {
                font-size: 0.8rem;
            }

            .restaurant {
                padding: 40px 16px;
            }

            .restaurant-grid {
                grid-template-columns: 1fr;
            }

            .restaurant-features {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .rest-feature-card {
                padding: 16px;
                border-radius: 12px;
            }

            .rest-icon {
                font-size: 1.6rem;
                margin-bottom: 8px;
            }

            .rest-feature-card h4 {
                font-size: 0.9rem;
            }

            .rest-feature-card p {
                font-size: 0.75rem;
            }

            .food-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .food-card {
                border-radius: 12px;
                padding: 12px;
            }

            .food-card img {
                height: 140px;
            }

            .food-info {
                padding: 10px;
            }

            .food-name {
                font-size: 0.9rem;
            }

            .food-rest {
                font-size: 0.7rem;
            }

            .food-stats {
                gap: 8px;
            }

            .test-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .test-card {
                padding: 16px;
            }

            .test-text {
                font-size: 0.8rem;
                line-height: 1.4;
            }

            .test-name {
                font-size: 0.85rem;
            }

            .test-role {
                font-size: 0.7rem;
            }

            .price-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .price-card {
                padding: 20px;
                border-radius: 16px;
            }

            .price-card.featured {
                transform: scale(1) translateY(0);
                padding: 20px;
            }

            .plan-badge {
                font-size: 0.65rem;
                padding: 3px 8px;
                margin-bottom: 12px;
            }

            .plan-name {
                font-size: 1rem;
                margin-bottom: 6px;
            }

            .plan-desc {
                font-size: 0.75rem;
            }

            .price-display {
                margin-bottom: 16px;
            }

            .price-num {
                font-size: 1.8rem;
            }

            .price-dollar {
                font-size: 0.8rem;
            }

            .price-period {
                font-size: 0.75rem;
            }

            .price-features {
                gap: 8px;
            }

            .price-feature {
                font-size: 0.75rem;
                padding: 6px 0;
            }

            .price-btn {
                font-size: 0.8rem;
                padding: 10px 16px;
                width: 100%;
            }

            .cta-inner {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 32px 16px;
            }

            .cta-title {
                font-size: 1.4rem;
            }

            .cta-sub {
                font-size: 0.85rem;
            }

            .store-btns {
                flex-direction: column;
                gap: 10px;
            }

            .store-btn {
                width: 100%;
                padding: 12px 16px;
                font-size: 0.8rem;
            }

            .store-text-lg {
                font-size: 0.9rem;
            }

            .store-text-sm {
                font-size: 0.65rem;
            }

            .store-icon {
                font-size: 1.4rem;
            }

            .footer-inner {
                padding: 40px 16px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 24px;
            }

            .footer-brand {
                margin-bottom: 16px;
            }

            .footer-brand img {
                height: 32px;
            }

            .footer-desc {
                font-size: 0.8rem;
            }

            .social-btn {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }

            .footer-col h5 {
                font-size: 0.75rem;
                margin-bottom: 12px;
            }

            .footer-col ul li a {
                font-size: 0.8rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
                padding-top: 16px;
            }

            .footer-copy {
                font-size: 0.75rem;
            }

            .footer-links {
                gap: 12px;
                flex-wrap: wrap;
            }

            .footer-links a {
                font-size: 0.75rem;
            }

            .brand-bar {
                padding: 16px;
            }

            .brand-logo svg {
                height: 18px;
            }

            .brand-bar-inner {
                gap: 12px;
            }

            .brand-dot {
                width: 3px;
                height: 3px;
            }

            .stats-belt {
                padding: 24px 16px;
            }

            .stat-item {
                padding: 16px;
            }

            .stat-num {
                font-size: 1.6rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .testimonials {
                padding: 40px 16px;
            }

            .faq {
                padding: 40px 16px;
            }

            .faq-header {
                text-align: center;
                margin-bottom: 32px;
            }

            .faq-item {
                border-radius: 12px;
                margin-bottom: 12px;
            }

            .faq-q {
                font-size: 0.9rem;
                padding: 14px 16px;
            }

            .faq-icon {
                font-size: 1.1rem;
            }

            .faq-a-inner {
                font-size: 0.8rem;
                padding: 0 16px 16px;
                line-height: 1.5;
            }

            .section-label {
                font-size: 0.7rem;
            }

            .section-title {
                font-size: 1.4rem;
                line-height: 1.3;
            }

            .section-sub {
                font-size: 0.85rem;
            }

            h1 {
                font-size: 1.4rem;
            }

            h2 {
                font-size: 1.3rem;
            }

            h3 {
                font-size: 1.05rem;
            }

            h4 {
                font-size: 0.95rem;
            }

            h5 {
                font-size: 0.85rem;
            }

            p {
                font-size: 0.85rem;
            }

            /* Stack specific layouts for mobile */
            [style*="grid-template-columns: repeat(3"],
            [style*="grid-template-columns: 1fr 1fr"] {
                display: grid !important;
                grid-template-columns: 1fr !important;
            }
        }
        /* css with responsive adjustments */
 
        @media (max-width: 900px) {
 
            /* WHY CHOOSE US — 3-col inline-grid */
            #why>div {
                padding: 80px 40px;
            }
 
            #why>div>div[style*="grid-template-columns:repeat(3"] {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
 
            /* DASHBOARD SECTION — 2-col inline-grid */
            #dashboard>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 48px !important;
            }
 
            /* DASHBOARD — feature card 2x3 inner grid */
            #dashboard>div>div>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px !important;
            }
 
            /* STATS BELT — ensure 2x2 on tablet */
            .stats-inner {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 32px;
            }
 
            /* HOW IT WORKS — 2-col on tablet */
            .how-steps {
                grid-template-columns: repeat(2, 1fr) !important;
            }
 
            /* FEATURES — phone mockup height */
            .features-phone {
                width: 220px;
            }
 
            /* PRICING — outer padding */
            .pricing {
                padding: 80px 40px;
            }
 
            /* RESTAURANT PORTAL outer padding */
            .restaurant {
                padding: 80px 40px;
            }
        }
 
 
        /* ─── MOBILE (max-width: 768px) ─── */
        @media (max-width: 768px) {
 
            /* WHY CHOOSE US — single column */
            #why>div {
                padding: 60px 24px;
            }
 
            #why>div>div[style*="grid-template-columns:repeat(3"] {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
 
            #why .rest-feature-card {
                padding: 28px 20px !important;
            }
 
            /* DASHBOARD SECTION */
            #dashboard>div {
                padding: 60px 24px !important;
            }
 
            #dashboard>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
 
            /* DASHBOARD inner feature cards: 2 col on mobile */
            #dashboard>div>div>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }
 
            #dashboard .rest-feature-card {
                padding: 20px !important;
            }
 
            /* DASHBOARD browser mockup */
            #dashboard img {
                border-radius: 0 0 12px 12px;
            }
 
            /* STATS BELT — 2 col */
            .stats-belt {
                padding: 48px 24px;
            }
 
            .stats-inner {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 24px;
            }
 
            .stat-num {
                font-size: 2.2rem;
            }
 
            /* HOW IT WORKS — single col */
            .how-steps {
                grid-template-columns: 1fr !important;
            }
 
            /* FEATURES grid padding */
            .features-grid {
                margin-top: 48px !important;
            }
 
            /* RESTAURANT PORTAL */
            .restaurant {
                padding: 60px 24px;
            }
 
            .restaurant-grid {
                gap: 40px;
            }
 
            /* FEATURES section padding */
            .features {
                padding: 60px 24px;
            }
 
            /* PRICING */
            .pricing {
                padding: 60px 24px;
            }
 
            .price-card.featured {
                transform: none !important;
            }
        }
 
 
        /* ─── SMALL MOBILE (max-width: 480px) ─── */
        @media (max-width: 480px) {
 
            /* WHY CHOOSE US */
            #why>div {
                padding: 48px 16px;
            }
 
            #why>div>div[style*="grid-template-columns:repeat(3"] {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
 
            #why .rest-feature-card {
                padding: 20px 16px !important;
                text-align: left !important;
            }
 
            #why .rest-feature-card div[style*="font-size:2rem"] {
                margin-bottom: 10px !important;
            }
 
            #why h4 {
                font-size: 0.95rem !important;
            }
 
            #why p {
                font-size: 0.82rem !important;
            }
 
            /* DASHBOARD SECTION */
            #dashboard>div {
                padding: 48px 16px !important;
            }
 
            #dashboard>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
 
            /* Dashboard inner feature cards: single col on very small screens */
            #dashboard>div>div>div>div>div[style*="grid-template-columns:1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
            }
 
            #dashboard .rest-feature-card {
                padding: 16px !important;
            }
 
            #dashboard .rest-feature-card h4 {
                font-size: 0.88rem !important;
            }
 
            /* STATS BELT — single col on very small screens */
            .stats-belt {
                padding: 36px 16px;
            }
 
            .stats-inner {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px;
            }
 
            .stat-num {
                font-size: 1.8rem;
            }
 
            .stat-label {
                font-size: 0.72rem;
            }
 
            /* HOW IT WORKS — single col */
            .how {
                padding: 48px 16px;
            }
 
            .how-steps {
                grid-template-columns: 1fr !important;
                gap: 16px;
            }
 
            /* FEATURES phone hide on tiny screens */
            .features-phone-wrap {
                display: none;
            }
 
            .features {
                padding: 48px 16px;
            }
 
            .features-grid {
                margin-top: 32px !important;
                gap: 24px !important;
            }
 
            /* RESTAURANT PORTAL */
            .restaurant {
                padding: 48px 16px;
            }
 
            .restaurant-grid {
                gap: 28px;
            }
 
            .restaurant-features {
                grid-template-columns: 1fr !important;
            }
 
            /* PRICING */
            .pricing {
                padding: 48px 16px;
            }
 
            .price-cards {
                gap: 12px;
            }
 
            /* HERO WRAPPER height fix */
            .hero-wrapper {
                height: auto;
                min-height: 90vh;
            }
 
            .hero-slide-1 {
                height: auto;
                min-height: 90vh;
                padding: 90px 16px 36px;
            }
 
            /* HERO STATS — 3-col row instead of column */
            .hero-stats {
                display: grid !important;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                text-align: center;
            }
 
            .hero-stat-num {
                font-size: 1rem;
            }
 
            .hero-stat-label {
                font-size: 0.62rem;
            }
 
            /* HERO TITLE line wrapping */
            .hero-title-line {
                white-space: normal;
                max-width: 100% !important;
            }
 
            body.hero-scrolled .hero-title-line {
                animation: none;
                max-width: 100%;
            }
 
            /* CTA SECTION */
            .cta-section {
                padding: 48px 16px;
            }
 
            .cta-inner {
                padding: 32px 16px !important;
                border-radius: 20px !important;
            }
 
            /* BRAND BAR */
            .brand-bar {
                padding: 12px 16px;
            }
        }
        
         /* Default hidden on desktop */
        .mobile-nav-toggle { display: none; border: 2px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; position: relative; z-index: 200; }
 
        @media (max-width: 980px) {
 
            .mobile-nav-toggle { display: none; border: 2px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; position: relative; z-index: 200; }
 
            .mobile-nav-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 999px; transition: transform 0.25s ease, opacity 0.25s ease; }
 
            /* Navbar scroll state */
            nav.scrolled .mobile-nav-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 999px; transition: transform 0.25s ease, opacity 0.25s ease; }
 
            /* Open animation */
            .mobile-nav-toggle.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
 
            .mobile-nav-toggle.open span:nth-child(2) {
                opacity: 0;
            }
 
            .mobile-nav-toggle.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }
