        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary:   #00D9A5;
            --primary-dim: rgba(0,217,165,0.15);
            --primary-glow: rgba(0,217,165,0.3);
            --indigo:    #6366f1;
            --bg:        #050f0d;
            --surface:   rgba(255,255,255,0.04);
            --border:    rgba(255,255,255,0.07);
            --text:      #e2e8f0;
            --muted:     #94a3b8;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
        .backdrop { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
        .backdrop-blob1 { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(0,217,165,0.18) 0%, transparent 70%); border-radius: 50%; filter: blur(60px); }
        .backdrop-blob2 { position: absolute; right: 0; bottom: 10%; width: 500px; height: 280px; background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(50px); }
        nav { position: fixed; top: 20px; left: 0; right: 0; z-index: 100; padding: 0 1rem; }
        .nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.55); backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 16px; padding: 12px 20px; animation: slideDown 0.7s cubic-bezier(.22,1,.36,1) both; }
        .nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
        .nav-logo img { height: 34px; width: auto; display: block; }
        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: #fff; }
        .nav-actions { display: flex; align-items: center; gap: 12px; }
        .btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
        .btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: #fff; background: rgba(255,255,255,0.05); }
        .btn-primary { background: linear-gradient(135deg, var(--primary), #00a87f); color: #fff; border: none; padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
        .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px var(--primary-glow); }
/* Base hamburger - hidden on desktop */
.hamburger { 
    background: none; 
    border: none; 
    color: #fff; 
    cursor: pointer; 
    font-size: 1.5rem;
    position: relative; 
    z-index: 150;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px; 
    min-height: 44px;
    align-items: center; 
    justify-content: center;
    padding: 10px;
    display: none; /* hidden by default on desktop */
}       .mobile-menu { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 28px; position: fixed; inset: 0; background: rgba(5,15,13,0.97); backdrop-filter: blur(16px); z-index: 200; font-size: 1.2rem; font-weight: 600; }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { color: #fff; text-decoration: none; }
        .mobile-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 36px; height: 36px; border-radius: 8px; font-size: 1.4rem; cursor: pointer; line-height: 1; }
        .hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 1.5rem 80px; position: relative; z-index: 1; }
        .hero-grid { max-width: 1440px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid var(--border); border-radius: 50px; padding: 6px 14px 6px 8px; font-size: 0.75rem; color: var(--muted); margin-bottom: 24px; animation: fadeUp 0.6s ease both; }
        .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); animation: pulse 2s ease infinite; }
        .hero-h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both; }
        .hero-h1 span { background: linear-gradient(90deg, var(--primary), #00ffcc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-desc { color: var(--muted); font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.7; max-width: 560px; margin-bottom: 32px; animation: fadeUp 0.6s 0.2s ease both; }
        .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeUp 0.6s 0.3s ease both; }
        .btn-primary-lg { padding: 13px 28px; font-size: 0.95rem; border-radius: 50px; background: linear-gradient(135deg, var(--primary), #00a87f); color: #fff; font-weight: 700; border: none; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; box-shadow: 0 4px 20px var(--primary-glow); }
        .btn-primary-lg:hover { opacity: 0.87; transform: translateY(-2px); box-shadow: 0 8px 28px var(--primary-glow); }
        .btn-ghost-lg { padding: 13px 24px; font-size: 0.95rem; border-radius: 50px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: #fff; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; backdrop-filter: blur(8px); }
        .btn-ghost-lg:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
        .hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s ease both; }
        .hero-trust-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 0.75rem; color: var(--muted); }
        .hero-trust-item svg { color: var(--primary); flex-shrink: 0; }
        .hero-card-wrap { animation: fadeUp 0.8s 0.4s ease both; }
        .hero-card-wrap img { width: 100%; max-width: 680px; border-radius: 20px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06); display: block; }
        .marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01); overflow: hidden; padding: 18px 0; position: relative; z-index: 1; }
        .marquee-track { display: inline-flex; gap: 50px; white-space: nowrap; animation: marquee 18s linear infinite; }
        .marquee-item { font-size: clamp(0.8rem, 1.5vw, 0.9rem); font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
        .marquee-item:hover { color: var(--primary); }
        .stats-section { padding: 60px 1.5rem; position: relative; z-index: 1; }
        .stats-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
        .stat-box { text-align: center; padding: 32px 20px; background: var(--surface); border: 1px solid var(--border); opacity: 0; transform: translateY(30px); transition: opacity 0.5s, transform 0.5s; }
        .stat-box:first-child { border-radius: 20px 0 0 20px; }
        .stat-box:last-child { border-radius: 0 20px 20px 0; }
        .stat-box.visible { opacity: 1; transform: none; }
        .stat-num { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: var(--primary); letter-spacing: -0.03em; display: inline-block; }
        .stat-lbl { font-size: clamp(0.8rem, 1.5vw, 0.85rem); color: var(--muted); margin-top: 6px; }
        .features-section { padding: 80px 1.5rem; position: relative; z-index: 1; }
        .section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .section-tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 12px; }
        .section-h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.25; margin-bottom: 14px; }
        .section-desc { color: var(--muted); font-size: clamp(0.9rem, 2vw, 0.95rem); line-height: 1.7; }
        .features-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
        .feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; opacity: 0; transform: translateY(40px); transition: opacity 0.5s, transform 0.5s, border-color 0.3s; }
        .feature-card.visible { opacity: 1; transform: none; }
        .feature-card:hover { border-color: rgba(0,217,165,0.3); transform: translateY(-4px) !important; }
        .feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-dim); border: 1px solid rgba(0,217,165,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
        .feature-title { font-size: clamp(1rem, 2vw, 1.05rem); font-weight: 700; margin-bottom: 10px; }
        .feature-desc { color: var(--muted); font-size: clamp(0.85rem, 1.5vw, 0.88rem); line-height: 1.65; }
        .pricing-section { padding: 80px 1.5rem; background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); position: relative; z-index: 1; }
        .pricing-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
        .pricing-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; position: relative; opacity: 0; transform: translateY(50px); transition: opacity 0.5s, transform 0.5s, border-color 0.3s; }
        .pricing-card.visible { opacity: 1; transform: none; }
        .pricing-card.popular { border-color: rgba(0,217,165,0.4); background: rgba(0,217,165,0.04); }
        .pricing-card:hover { border-color: rgba(0,217,165,0.35); }
        .popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; white-space: nowrap; }
        .plan-name { font-size: clamp(0.95rem, 2vw, 1rem); font-weight: 600; margin-bottom: 6px; color: var(--muted); }
        .plan-price { font-size: clamp(2.2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; }
        .plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
        .plan-period { font-size: clamp(0.75rem, 1.5vw, 0.8rem); color: var(--muted); margin-left: 4px; }
        .plan-desc { color: var(--muted); font-size: clamp(0.8rem, 1.5vw, 0.85rem); margin: 12px 0 24px; line-height: 1.5; }
        .plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
        .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: clamp(0.82rem, 1.5vw, 0.87rem); color: var(--text); }
        .plan-features li .check { color: var(--primary); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
        .plan-features li .cross { color: var(--muted); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
        .plan-features li.dim { color: var(--muted); }
        .btn-plan-primary { width: 100%; padding: 13px; border-radius: 12px; font-size: 0.9rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), #00a87f); color: #000; border: none; cursor: pointer; font-family: inherit; text-decoration: none; display: block; text-align: center; transition: all 0.2s; box-shadow: 0 4px 18px var(--primary-glow); }
        .btn-plan-primary:hover { opacity: 0.87; transform: translateY(-1px); }
        .btn-plan-ghost { width: 100%; padding: 13px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; background: transparent; border: 1px solid var(--border); color: #fff; cursor: pointer; font-family: inherit; text-decoration: none; display: block; text-align: center; transition: all 0.2s; }
        .btn-plan-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }
        .pricing-note { text-align: center; margin-top: 28px; color: var(--muted); font-size: clamp(0.8rem, 1.5vw, 0.83rem); }
        .faq-section { padding: 80px 1.5rem; position: relative; z-index: 1; }
        .faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
        .faq-item-wrap { opacity: 0; transform: translateY(30px); transition: opacity 0.4s, transform 0.4s; }
        .faq-item-wrap.visible { opacity: 1; transform: none; }
        .faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: border-color 0.3s; }
        .faq-q { width: 100%; padding: 16px 18px; background: none; border: none; color: #fff; text-align: left; font-size: clamp(0.9rem, 2vw, 0.95rem); font-weight: 600; cursor: pointer; font-family: inherit; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; }
        .faq-q:hover { background: rgba(255,255,255,0.03); }
        .faq-chevron { color: var(--muted); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s ease; display: inline-block; line-height: 1; }
        .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
        .faq-a { max-height: 0; overflow: hidden; padding: 0 18px; color: var(--muted); font-size: clamp(0.85rem, 1.5vw, 0.88rem); line-height: 1.7; transition: max-height 0.4s ease, padding 0.4s ease; }
        .faq-item.open .faq-a { max-height: 400px; padding: 0 18px 18px; }
        .faq-item.open { border-color: rgba(0,217,165,0.2); }

        /* ── MOBILE APP SECTION ── */
        .app-section { padding: 80px 1.5rem; position: relative; z-index: 1; border-top: 1px solid var(--border); }
        .app-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .app-store-btns { display: flex; flex-direction: row; gap: 12px; margin-top: 32px; flex-wrap: nowrap; }
        .store-btn { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 14px; padding: 12px 22px; text-decoration: none; color: #fff; transition: all 0.25s; backdrop-filter: blur(8px); }
        .store-btn:hover { background: rgba(0,217,165,0.1); border-color: rgba(0,217,165,0.3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,217,165,0.15); }
        .store-logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
        .store-btn-text { display: flex; flex-direction: column; }
        .store-btn-sub { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
        .store-btn-name { font-size: 1rem; font-weight: 700; line-height: 1.3; }
        .app-perks { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
        .app-perk { display: flex; align-items: center; gap: 12px; font-size: clamp(0.85rem, 1.5vw, 0.9rem); color: var(--muted); }
        .perk-dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--primary-dim); border: 1px solid rgba(0,217,165,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; }

        /* ── PHONE MOCKUP - WIDER & BETTER ── */
        .phone-wrap { display: flex; justify-content: center; position: relative; }
        .phone-wrap::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(0,217,165,0.13), transparent 70%); border-radius: 50%; filter: blur(40px); z-index: 0; top: 50%; transform: translateY(-50%); }
        .phone {
            width: 340px;
            background: #f0f2f0;
            border-radius: 44px;
            border: 8px solid #1a1a1a;
            box-shadow: 0 50px 100px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.05);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .phone-notch-bar { height: 30px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
        .phone-pill { width: 80px; height: 9px; background: #333; border-radius: 50px; }

        /* App Header */
        .app-header {
            background: linear-gradient(160deg, #0d7a62 0%, #0a6652 100%);
            padding: 20px 22px 28px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .app-header-info {}
        .app-greeting { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
        .app-username { font-size: 1.1rem; font-weight: 800; color: #fff; margin-top: 2px; }
        .app-bell { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

        /* Attendance Card */
        .att-card-wrap { background: #f0f2f0; padding: 0 14px; margin-top: -12px; }
        .att-card { background: #fff; border-radius: 18px; padding: 16px; box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
        .att-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
        .att-icon { width: 38px; height: 38px; background: #e8f8f3; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .att-info { flex: 1; }
        .att-title { font-size: 0.82rem; font-weight: 700; color: #111; }
        .att-sub { font-size: 0.68rem; color: #999; margin-top: 1px; }
        .att-badge { background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 50px; padding: 3px 10px; font-size: 0.65rem; color: #666; white-space: nowrap; flex-shrink: 0; }
        .att-times { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid #f0f0f0; padding-top: 12px; gap: 0; }
        .att-t { text-align: center; padding: 0 4px; }
        .att-t + .att-t { border-left: 1px solid #f0f0f0; }
        .att-t-lbl { font-size: 0.6rem; color: #bbb; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
        .att-t-val { font-size: 0.95rem; font-weight: 800; color: #111; margin-top: 4px; }

        /* Check In Button */
        .checkin-btn-wrap { background: #f0f2f0; padding: 12px 14px; }
        .checkin-btn { background: linear-gradient(135deg, #00D9A5, #0a9e7a); color: #fff; border: none; border-radius: 14px; padding: 14px; font-size: 0.9rem; font-weight: 800; width: 100%; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; box-shadow: 0 4px 16px rgba(0,217,165,0.35); }

        /* Quick Actions */
        .quick-section { padding: 14px 14px 10px; background: #fff; }
        .quick-title { font-size: 0.78rem; font-weight: 800; color: #111; margin-bottom: 12px; }
        .quick-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
        .quick-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .quick-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
        .q-teal  { background: rgba(0,217,165,0.15); }
        .q-blue  { background: rgba(99,102,241,0.15); }
        .q-green { background: rgba(16,185,129,0.12); }
        .q-amber { background: rgba(245,158,11,0.15); }
        .quick-lbl { font-size: 0.6rem; color: #666; font-weight: 600; text-align: center; line-height: 1.3; }

        /* Mini Stats */
        .mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px 14px; background: #fff; border-top: 1px solid #f0f0f0; }
        .mini-stat { background: linear-gradient(135deg, #f7fffe, #edfaf5); border: 1px solid #d4f0e8; border-radius: 14px; padding: 14px; text-align: center; }
        .mini-stat-lbl { font-size: 0.65rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        .mini-stat-val { font-size: 1.6rem; font-weight: 900; color: #00b88a; margin-top: 2px; line-height: 1; }
        .mini-stat-trend { font-size: 0.62rem; color: #00b88a; margin-top: 4px; }
        .mini-stat.leave .mini-stat-val { color: #6366f1; }
        .mini-stat.leave .mini-stat-trend { color: #6366f1; }

        /* Bottom Nav */
        .app-bottom-nav { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #eee; padding: 10px 0 12px; background: #fff; }
        .app-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; cursor: pointer; }
        .app-nav-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
        .app-nav-lbl { font-size: 0.58rem; font-weight: 700; color: #bbb; }
        .app-nav-item.active .app-nav-lbl { color: #00b88a; }

        /* CTA */
        .cta-section { padding: 60px 1.5rem 80px; position: relative; z-index: 1; }
        .cta-inner { max-width: 900px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, rgba(0,217,165,0.08), rgba(0,0,0,0)); border: 1px solid rgba(0,217,165,0.2); border-radius: 28px; padding: 50px 30px; position: relative; overflow: hidden; }
        .cta-inner::before { content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(0,217,165,0.12), transparent 70%); pointer-events: none; }
        .cta-inner h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em; }
        .cta-inner p { color: var(--muted); margin-bottom: 32px; font-size: clamp(0.9rem, 2vw, 0.95rem); }
        footer { background: rgba(255,255,255,0.03); border-top: 1px solid var(--border); padding: 50px 1.5rem 24px; position: relative; z-index: 1; }
        .footer-inner { max-width: 1440px; margin: 0 auto; }
        .footer-top { display: flex; flex-direction: column; gap: 32px; }
        .footer-brand p { color: var(--muted); font-size: clamp(0.82rem, 1.5vw, 0.87rem); line-height: 1.6; max-width: 320px; margin-top: 12px; }
        .footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: #fff; text-decoration: none; }
        .footer-logo-icon { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), #00a87f); display: flex; align-items: center; justify-content: center; }
        .footer-links-group { display: flex; gap: 40px; flex-wrap: wrap; }
        .footer-col h4 { font-size: clamp(0.85rem, 1.5vw, 0.88rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
        .footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: clamp(0.8rem, 1.5vw, 0.85rem); margin-bottom: 8px; transition: color 0.2s; }
        .footer-col a:hover { color: var(--primary); }
        .footer-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0 20px; }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: clamp(0.75rem, 1.5vw, 0.8rem); }

        @keyframes slideDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: none; } }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
        @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        @keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,217,165,0.5); } 50% { box-shadow: 0 0 0 6px rgba(0,217,165,0); } }

        @media(min-width:768px){ .footer-top { flex-direction: row; justify-content: space-between; } }
        @media(max-width:900px){
            .hero-grid { grid-template-columns: 1fr; gap: 50px; }
            .hero-card-wrap { order: -1; }
            .app-grid { grid-template-columns: 1fr; gap: 50px; }
            .phone-wrap { order: -1; }
            .stats-grid { grid-template-columns: repeat(2,1fr); }
            .stat-box:first-child { border-radius: 20px 0 0 0; }
            .stat-box:nth-child(2) { border-radius: 0 20px 0 0; }
            .stat-box:nth-child(3) { border-radius: 0 0 0 20px; }
            .stat-box:last-child { border-radius: 0 0 20px 0; }
        }
        @media(max-width:640px){
            nav { top: 12px; }
            .nav-inner { padding: 10px 16px; border-radius: 14px; }
            .nav-logo img { height: 30px; }
            .nav-links, .nav-actions { display: none; }
    
            .hamburger { 
                display: block;
                touch-action: manipulation;
                -webkit-tap-highlight-color: transparent;
                min-width: 44px;
                min-height: 44px;
                padding: 10px;
                position: relative;
                z-index: 150;
            }
            .hero { padding-top: 100px; padding-bottom: 60px; }
            .hero-badge { font-size: 0.7rem; padding: 5px 12px 5px 7px; }
            .hero-ctas { flex-direction: row; gap: 10px; }
            .btn-primary-lg, .btn-ghost-lg { flex: 1; justify-content: center; font-size: 0.82rem; padding: 12px 12px; }
            .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
            .hero-trust-item { font-size: 0.72rem; padding: 7px 11px; }
            .stats-section { padding: 50px 1.5rem; }
            .stat-box { padding: 28px 16px; }
            .features-section { padding: 60px 1.5rem; }
            .section-head { margin-bottom: 40px; }
            .features-grid { gap: 14px; }
            .feature-card { padding: 24px 20px; }
            .pricing-section { padding: 60px 1.5rem; }
            .pricing-grid { gap: 14px; }
            .pricing-card { padding: 28px 24px; }
            .faq-section { padding: 60px 1.5rem; }
            .app-section { padding: 60px 1.5rem; }
            .app-grid { gap: 40px; }
            .phone { width: 300px; }
            .cta-section { padding: 50px 1.5rem 70px; }
            .cta-inner { padding: 40px 24px; }
            .cta-inner > div { flex-direction: row; flex-wrap: nowrap; gap: 10px; }
            .cta-inner .btn-primary-lg, .cta-inner .btn-ghost-lg { flex: 1; justify-content: center; font-size: 0.82rem; padding: 12px 12px; }
            footer { padding: 40px 1.5rem 20px; }
            .footer-links-group { gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; font-size: 0.75rem; }
        }
        @media(max-width:400px){
            .phone { width: 270px; }
        }


        /* ═══════════════════════════════════════════════════════════ */
/* APK DOWNLOAD BUTTON - Add to your landing.css */
/* ═══════════════════════════════════════════════════════════ */

.apk-download-wrap {
    margin-top: 28px;
}

.apk-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.apk-divider::before,
.apk-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.apk-divider span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apk-download {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0d7a62 0%, #0a6652 100%);
    border: 1px solid rgba(0,217,165,0.3);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(13,122,98,0.3);
}

.btn-apk-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13,122,98,0.5);
    background: linear-gradient(135deg, #0e8a70 0%, #0b7660 100%);
}

.btn-apk-download svg {
    flex-shrink: 0;
}

.apk-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.apk-btn-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.apk-btn-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.apk-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:640px){
    .apk-download-wrap {
        margin-top: 20px;
    }
    
    .btn-apk-download {
        padding: 14px 20px;
        gap: 12px;
    }
    
    .apk-btn-text {
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* STORE POPUP STYLES - Add to your landing.css */
/* ═══════════════════════════════════════════════════════════ */

.store-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-popup-overlay.active {
    opacity: 1;
}

.store-popup {
    background: linear-gradient(145deg, #0a1f1a 0%, #050f0d 100%);
    border: 1px solid rgba(0,217,165,0.2);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(0,217,165,0.1),
        inset 0 0 60px rgba(0,217,165,0.03);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.store-popup-overlay.active .store-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.popup-header svg {
    margin: 0 auto 16px;
    display: block;
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -0.5px;
    margin: 0;
}

.store-popup p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 32px;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: -0.2px;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #0d7a62 0%, #0a6652 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13,122,98,0.4);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13,122,98,0.5);
}

.popup-btn-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #e2e8f0;
}

.popup-btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 640px) {
    .store-popup {
        padding: 32px 24px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .store-popup p {
        font-size: 0.95rem;
    }
    
    .popup-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}