/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #E2E8F0;
    background: #0A0E21;
    overflow-x: hidden;
    line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 14, 33, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo {
    text-decoration: none; font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: white;
    display: flex; align-items: center; gap: 6px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span {
    width: 22px; height: 2px; background: white; border-radius: 2px;
    transition: 0.3s;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: 'Outfit', sans-serif;
    font-weight: 600; border-radius: 12px; transition: all 0.3s;
    cursor: pointer; border: none;
}
.btn-nav {
    padding: 8px 18px; font-size: 0.85rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white; border-radius: 10px;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(16,185,129,0.4); color: white; }
.btn-primary {
    padding: 14px 28px; font-size: 1rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white; box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); color: white; }
.btn-ghost {
    padding: 14px 28px; font-size: 1rem;
    color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.btn-white {
    padding: 14px 28px; font-size: 1rem;
    background: white; color: #0A0E21;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.2); color: #0A0E21; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ─── Hero ─── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px 24px 60px;
    max-width: 1100px; margin: 0 auto;
    gap: 60px;
}
.hero-bg {
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { flex: 1; }
.hero-badge {
    display: inline-block; padding: 6px 16px;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
    border-radius: 20px; font-size: 0.85rem; font-weight: 500;
    color: #10B981; margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Outfit', sans-serif; font-size: 3.5rem;
    font-weight: 800; line-height: 1.1; color: white; margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, #10B981, #3B82F6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; max-width: 500px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-num {
    display: block; font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 700; color: white;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Phone Mockup */
.hero-visual { flex-shrink: 0; }
.phone-mockup {
    width: 280px; height: 520px;
    background: linear-gradient(145deg, #16213E, #0F172A);
    border-radius: 36px; padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #0F172A; border-radius: 26px;
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    padding: 20px;
}
.mock-card {
    width: 90%; padding: 20px; border-radius: 16px;
    text-align: center; font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.mock-card small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.mock-1 { background: linear-gradient(135deg, #FFCDD2, #FFAB91); animation-delay: 0s; }
.mock-2 { background: linear-gradient(135deg, #FFE0B2, #FFCC80); animation-delay: 2s; }
.mock-3 { background: linear-gradient(135deg, #C8E6C9, #A5D6A7); animation-delay: 4s; }

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

/* ─── Features ─── */
.features { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.tag {
    display: inline-block; padding: 4px 14px;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
    border-radius: 16px; font-size: 0.8rem; font-weight: 600;
    color: #10B981; margin-bottom: 16px;
}
.section-title h2 {
    font-family: 'Outfit', sans-serif; font-size: 2.4rem;
    font-weight: 700; color: white; margin-bottom: 12px;
}
.section-title p { color: rgba(255,255,255,0.5); font-size: 1.05rem; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 28px;
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16,185,129,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 16px;
}
.feature-card h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.15rem;
    font-weight: 600; color: white; margin-bottom: 8px;
}
.feature-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── How It Works ─── */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(16,185,129,0.03), transparent);
}
.steps { max-width: 600px; margin: 0 auto; }
.step {
    display: flex; gap: 24px; margin-bottom: 40px;
    position: relative;
}
.step::after {
    content: ''; position: absolute; left: 24px; top: 56px;
    width: 2px; height: calc(100% - 16px);
    background: linear-gradient(180deg, rgba(16,185,129,0.3), transparent);
}
.step:last-child::after { display: none; }
.step-num {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 1.3rem;
    font-weight: 700; color: white;
}
.step-content h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.2rem;
    font-weight: 600; color: white; margin-bottom: 6px;
}
.step-content p { font-size: 0.95rem; color: rgba(255,255,255,0.45); }

/* ─── Cuisines ─── */
.cuisines { padding: 80px 0; }
.cuisine-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; max-width: 700px; margin: 0 auto;
}
.cuisine-chip {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 20px; background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.8); transition: all 0.3s;
}
.cuisine-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.1);
}
.cuisine-chip span { font-size: 1.3rem; }

/* ─── CTA ─── */
.cta { padding: 80px 0 100px; }
.cta-box {
    text-align: center; padding: 60px 40px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(16,185,129,0.3);
}
.cta-box h2 {
    font-family: 'Outfit', sans-serif; font-size: 2.2rem;
    font-weight: 700; color: white; margin-bottom: 12px;
}
.cta-box p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-sub {
    margin-top: 20px; font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ─── Footer ─── */
.footer {
    padding: 40px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.footer-logo {
    font-family: 'Outfit', sans-serif; font-size: 1.2rem;
    font-weight: 700; color: white;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    text-decoration: none; font-size: 0.85rem;
    color: rgba(255,255,255,0.4); transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero {
        flex-direction: column; text-align: center;
        padding-top: 120px; gap: 40px;
    }
    .hero-sub { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero h1 { font-size: 2.4rem; }
    .features-grid { grid-template-columns: 1fr; }
    .phone-mockup { width: 220px; height: 400px; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 1.6rem; }
}

/* ─── Animations ─── */
.feature-card, .step, .cuisine-chip {
    opacity: 0; transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
