/* ═══════════════════════════════════════
   MenuNova Landing — Minimal SaaS Style
   ═══════════════════════════════════════ */

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

:root {
    --brand: #ff6a00;
    --brand-dark: #e85d00;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --border: #e5e7eb;
    --radius: 12px;
    --max-w: 1100px;
}

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

/* ── Nav ── */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__brand {
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
}
.nav__brand span { margin-left: 4px; }
.nav__cta {
    padding: 8px 20px;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s;
}
.nav__cta:hover { background: var(--brand-dark); }

/* ── Hero ── */
.hero {
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}
.hero__inner {
    max-width: 700px;
    margin: 0 auto;
}
.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff3e6;
    color: var(--brand);
    border-radius: 20px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero__sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
}
.btn--primary {
    background: var(--brand);
    color: #fff;
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

/* ── Features ── */
.features {
    padding: 80px 24px;
    background: var(--bg-soft);
}
.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 48px;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.feature-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: .95rem;
}

/* ── How it works ── */
.how-it-works {
    padding: 80px 24px;
}
.how-it-works__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 8px;
}
.step {
    text-align: center;
    padding: 24px;
}
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    color: var(--text-muted);
    font-size: .95rem;
}

/* ── Footer ── */
.footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}
.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer p {
    font-weight: 600;
    font-size: .95rem;
}
.footer__sub {
    color: var(--text-muted);
    font-size: .85rem !important;
    font-weight: 400 !important;
    margin-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .hero { padding: 48px 16px 40px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; text-align: center; }
    .features, .how-it-works { padding: 48px 16px; }
}
