/* ============================================================
   Menuada Marketing Landing Page — landing.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand:        #1a4823;
  --brand-mid:    #2d6a4f;
  --brand-vivid:  #40916c;
  --brand-light:  #d8f3dc;
  --brand-xlight: #f0faf2;
  --cta:          #f59e0b;
  --cta-dark:     #d97706;
  --cta-light:    #fef3c7;
  --pop:          #e63946;
  --pop-light:    #fff1f2;
  --text:         #0f1f0f;
  --muted:        #4b6652;
  --border:       #d1e8d5;
  --bg:           #ffffff;
  --bg-alt:       #f6faf6;
  --bg-warm:      #fefdf8;
  --shadow:       0 4px 24px rgba(26,72,35,.10);
  --shadow-lg:    0 16px 48px rgba(26,72,35,.18);
  --nav-h:        68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ---- utilities ---- */
.container   { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-warm{ background: var(--bg-warm); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-light); color: var(--brand);
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(26,72,35,.2);
}
.badge svg { width: 13px; height: 13px; }
.badge-amber { background: var(--cta-light); color: #92400e; border-color: rgba(245,158,11,.3); }
.badge-pop   { background: var(--pop-light); color: var(--pop); border-color: rgba(230,57,70,.2); }
.section-tag   { text-align: center; margin-bottom: 14px; }
.section-title { font-size: clamp(28px,4vw,42px); font-weight: 800; text-align: center; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.025em; }
.section-sub   { font-size: 17px; color: var(--muted); text-align: center; max-width: 580px; margin: 0 auto 56px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border-radius: 10px; padding: 12px 24px; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s; font-family: inherit; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-cta { background: var(--cta); color: #1a1a1a; box-shadow: 0 4px 16px rgba(245,158,11,.45); font-weight: 700; }
.btn-cta:hover { background: var(--cta-dark); box-shadow: 0 8px 28px rgba(245,158,11,.55); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 16px rgba(26,72,35,.35); }
.btn-primary:hover { background: var(--brand-mid); box-shadow: 0 8px 28px rgba(26,72,35,.45); }
.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid #a8d5b5; }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-xlight); }
.btn-white { background: #fff; color: var(--brand); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 18px 36px; font-size: 17px; border-radius: 14px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(255,255,255,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.navbar.scrolled { background: rgba(255,255,255,.97); border-color: var(--border); box-shadow: 0 2px 14px rgba(0,0,0,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; gap: 16px; }
.nav-logo { font-size: 22px; font-weight: 900; color: var(--brand); text-decoration: none; letter-spacing: -.5px; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo .logo-dot { color: var(--cta); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 7px 13px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--brand); background: var(--brand-xlight); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; transition: .25s; }
.mobile-menu {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: #fff; z-index: 999; flex-direction: column;
  padding: 16px; gap: 4px; overflow-y: auto; border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--text); text-decoration: none; padding: 14px 16px; border-radius: 10px; transition: background .15s; }
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.mobile-cta { background: var(--cta) !important; color: #1a1a1a !important; text-align: center; font-weight: 700 !important; border-radius: 10px; }

/* ===================== HERO ===================== */
.hero {
  padding-top: calc(var(--nav-h) + 88px); padding-bottom: 100px;
  background: linear-gradient(160deg, #eaf5eb 0%, #f5fbf6 35%, #fefdf8 65%, #fff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 88% 12%, rgba(64,145,108,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 5% 90%, rgba(26,72,35,.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(245,158,11,.04) 0%, transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; position: relative; }
.hero-eyebrow { margin-bottom: 22px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero h1 { font-size: clamp(36px,5vw,60px); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 22px; }
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-vivid) 60%, #74c69d 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-note { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.hero-note svg { width: 14px; height: 14px; color: var(--brand-vivid); }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.trust-avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-right: -9px; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.trust-text { font-size: 13px; color: var(--muted); margin-left: 18px; line-height: 1.5; }
.trust-text strong { color: var(--text); }
.trust-stars { color: var(--cta); font-size: 13px; }

/* hero visual + carousel */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1); }

/* ---- carousel ---- */
.hero-carousel { position: relative; width: 100%; height: 500px; }
.carousel-slides { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease-in-out; pointer-events: none; }
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img { width: 100%; height: 500px; object-fit: cover; display: block; }
.carousel-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: none; cursor: pointer;
  transition: background .25s, transform .25s; padding: 0;
}
.carousel-dot.active { background: #fff; transform: scale(1.35); }
.carousel-dot:hover  { background: rgba(255,255,255,.75); }

/* hero overlay + stats */
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.0) 35%, rgba(0,0,0,.6) 100%); z-index: 1; pointer-events: none; }
.hero-stats-card {
  position: absolute; bottom: 20px; left: 16px; right: 16px; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: 16px; padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.hsc-row { display: flex; margin-bottom: 12px; }
.hsc-stat { flex: 1; text-align: center; }
.hsc-stat + .hsc-stat { border-left: 1px solid var(--border); }
.hsc-val { font-size: 22px; font-weight: 900; color: var(--brand); letter-spacing: -.02em; }
.hsc-lbl { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.hsc-live { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.hsc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(34,197,94,.2) } 50%{ box-shadow: 0 0 0 7px rgba(34,197,94,.08) } }
.hero-badge-top {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: 12px; padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.14);
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-top svg { color: var(--cta); }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-7px) } }

/* ===================== LOGOS ===================== */
.logos-strip { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.logos-label { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 0 8px; }
.logo-pill { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; background: var(--bg-alt); border: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.logo-pill svg { width: 15px; height: 15px; color: var(--brand-vivid); }

/* ===================== FEATURES ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: box-shadow .2s, transform .2s, border-color .2s; overflow: hidden; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(26,72,35,.25); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.feature-card-img { width: 100%; height: 130px; object-fit: cover; border-radius: 10px; margin: 14px 0 6px; border: 1px solid var(--border); }
.fi-green  { background: #dcfce7; } .fi-green  svg { color: #16a34a; }
.fi-teal   { background: #ccfbf1; } .fi-teal   svg { color: #0d9488; }
.fi-amber  { background: #fef3c7; } .fi-amber  svg { color: #d97706; }
.fi-blue   { background: #dbeafe; } .fi-blue   svg { color: #2563eb; }
.fi-rose   { background: #ffe4e6; } .fi-rose   svg { color: #e11d48; }
.fi-violet { background: #ede9fe; } .fi-violet svg { color: #7c3aed; }
.fi-sky    { background: #e0f2fe; } .fi-sky    svg { color: #0284c7; }

/* ===================== PORTAL DASHBOARD MOCKUP ===================== */
.portal-mockup {
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff; max-width: 920px; margin: 0 auto;
}
.pm-topbar {
  background: var(--brand); color: #fff; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; font-weight: 600;
}
.pm-topbar-title { display: flex; align-items: center; gap: 8px; }
.pm-topbar-title svg { width: 15px; height: 15px; }
.pm-topbar-restaurant { font-size: 12px; opacity: .7; }
.pm-body { display: grid; grid-template-columns: 1fr 280px; }
.pm-main    { padding: 22px; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid var(--border); }
.pm-sidebar { padding: 22px; display: flex; flex-direction: column; gap: 16px; background: var(--bg-alt); }
.pm-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.pm-card-label { font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.pm-completion-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.pm-completion-bar-wrap { flex: 1; height: 10px; background: var(--border); border-radius: 999px; overflow: hidden; }
.pm-completion-bar { height: 100%; background: linear-gradient(90deg, var(--brand-vivid), #74c69d); border-radius: 999px; }
.pm-completion-pct { font-size: 15px; font-weight: 800; color: var(--brand); flex-shrink: 0; }
.pm-completion-note { font-size: 12.5px; color: var(--muted); }
.pm-tips { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pm-tip { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; padding: 10px 12px; border-radius: 10px; }
.pm-tip svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.pm-tip-warn { background: #fffbeb; border: 1px solid #fde68a; color: #78350f; }
.pm-tip-warn svg { color: #d97706; }
.pm-tip-ok   { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.pm-tip-ok svg { color: #16a34a; }
.pm-stat-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.pm-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.pm-stat-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pm-stat-icon svg { width: 15px; height: 15px; }
.pm-icon-green { background: #dcfce7; } .pm-icon-green svg { color: #16a34a; }
.pm-icon-amber { background: #fef3c7; } .pm-icon-amber svg { color: #d97706; }
.pm-icon-blue  { background: #dbeafe; } .pm-icon-blue  svg { color: #2563eb; }
.pm-stat-val { font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.1; }
.pm-stat-lbl { font-size: 11px; color: var(--muted); }
.pm-live-card { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.pm-live-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: pulse 2s infinite; flex-shrink: 0; }

/* ===================== SHOWCASE ===================== */
.showcase-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.18); }
.showcase-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.showcase-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,72,35,.75) 0%, rgba(26,72,35,.4) 50%, rgba(0,0,0,.05) 100%); }
.showcase-caption { position: absolute; top: 50%; left: 44px; transform: translateY(-50%); color: #fff; max-width: 360px; }
.showcase-caption h3 { font-size: clamp(20px,3vw,30px); font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.showcase-caption p  { font-size: 15px; opacity: .85; line-height: 1.65; margin-bottom: 20px; }

/* ===================== HOW IT WORKS ===================== */
.steps { max-width: 760px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; left: 27px; top: 56px; bottom: 56px; width: 2px; background: linear-gradient(180deg, var(--brand) 0%, var(--brand-vivid) 60%, #74c69d 100%); opacity: .25; border-radius: 1px; }
.step { display: flex; gap: 24px; align-items: flex-start; padding: 20px 0; opacity: 0; transform: translateX(-22px); transition: opacity .5s, transform .5s; }
.step.visible { opacity: 1; transform: none; }
.step-num { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--brand), var(--brand-vivid)); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(26,72,35,.35); z-index: 1; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; padding-top: 14px; letter-spacing: -.01em; }
.step-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===================== ONBOARDING ===================== */
.onboarding-section { background: linear-gradient(145deg, #0d2b17 0%, var(--brand) 45%, #2d6a4f 100%); padding: 100px 0; position: relative; overflow: hidden; }
.onboarding-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 65% 55% at 90% 45%, rgba(116,198,157,.14) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 5% 10%, rgba(245,158,11,.08) 0%, transparent 60%); }
.onboarding-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cta), #fbbf24, var(--cta)); }
.onboarding-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; }
.onboarding-copy .eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.onboarding-copy h2 { font-size: clamp(26px,3.5vw,42px); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -.025em; line-height: 1.12; }
.onboarding-copy h2 .cta-highlight { color: var(--cta); }
.onboarding-copy > p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; }
.social-proof-row { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; padding: 14px 16px; background: rgba(255,255,255,.08); border-radius: 12px; border: 1px solid rgba(255,255,255,.12); }
.sp-avatars { display: flex; }
.sp-avatars img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); margin-right: -7px; object-fit: cover; }
.sp-text { margin-left: 14px; font-size: 13px; color: rgba(255,255,255,.85); }
.sp-text strong { color: #fff; }
.onboarding-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.onboarding-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.perk-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(245,158,11,.2); border: 1px solid rgba(245,158,11,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perk-check svg { width: 12px; height: 12px; color: var(--cta); stroke-width: 2.5; }
.urgency-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); padding: 10px 14px; background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.2); border-radius: 8px; }
.urgency-note svg { width: 15px; height: 15px; color: #fb7185; flex-shrink: 0; }
.onboarding-form-card { background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 32px 80px rgba(0,0,0,.28); }
.form-card-header h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.form-card-header p  { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.form-spot-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff3cd; color: #7c4a00; border: 1px solid #ffd97d; border-radius: 999px; font-size: 11.5px; font-weight: 700; padding: 4px 12px; margin-bottom: 18px; }
.form-spot-badge svg { width: 12px; height: 12px; color: #d97706; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: #374151; }
.form-group input,
.form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; color: var(--text); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; font-family: inherit; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,72,35,.10); }
.form-optional { font-size: 11px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.form-submit-btn { width: 100%; padding: 17px; font-size: 17px; font-weight: 800; letter-spacing: -.01em; border-radius: 12px; border: none; cursor: pointer; font-family: inherit; background: var(--cta); color: #1a1a1a; box-shadow: 0 4px 20px rgba(245,158,11,.5); transition: background .15s, box-shadow .15s, transform .15s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit-btn:hover { background: var(--cta-dark); box-shadow: 0 8px 32px rgba(245,158,11,.6); transform: translateY(-2px); }
.form-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-submit-btn svg { width: 20px; height: 20px; }
.form-trust-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.form-trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.form-trust-item svg { width: 13px; height: 13px; color: var(--brand-vivid); }
.form-success { display: none; background: #f0fdf4; color: #15803d; border: 1.5px solid #86efac; border-radius: 12px; padding: 16px; font-size: 14px; font-weight: 500; margin-bottom: 16px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-error { display: none; background: #fef2f2; color: #dc2626; border: 1.5px solid #fecaca; border-radius: 12px; padding: 16px; font-size: 14px; font-weight: 500; margin-bottom: 16px; align-items: center; gap: 10px; }
.form-error.show { display: flex; }
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: box-shadow .2s, transform .2s; }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--cta); color: var(--cta); }
.testi-quote { font-size: 14.5px; color: #334155; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ===================== PREVIEW SPLIT (Portal + Phone) ===================== */
.preview-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.preview-pane { display: flex; flex-direction: column; gap: 14px; }
.preview-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .07em;
}
.preview-label svg { width: 14px; height: 14px; }

/* Portal screen */
.portal-screen {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.ps-topbar {
  background: var(--brand); color: #fff; padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; font-size: 13px;
}
.ps-topbar-logo { font-size: 16px; font-weight: 900; letter-spacing: -.3px; }
.ps-logo-dot { color: var(--cta); }
.ps-topbar-greeting { font-size: 12.5px; font-weight: 500; opacity: .9; }
.ps-body { display: grid; grid-template-columns: 130px 1fr; min-height: 300px; }
.ps-sidebar {
  background: #0d2b17; padding: 16px 0; display: flex; flex-direction: column; gap: 2px;
}
.ps-nav-item {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.5); cursor: default;
}
.ps-nav-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ps-nav-active { color: #fff; background: rgba(255,255,255,.1); border-radius: 0 8px 8px 0; margin-right: 8px; }
.ps-main { padding: 14px; display: flex; flex-direction: column; gap: 12px; background: #f9fafb; }
.ps-top-row { display: flex; gap: 12px; align-items: center; }
.ps-donut-card { position: relative; flex-shrink: 0; }
.ps-donut-svg { width: 76px; height: 76px; transform: rotate(-90deg); }
.ps-donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ps-donut-pct { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1; }
.ps-donut-lbl { font-size: 9px; color: var(--muted); }
.ps-kpi-group { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex: 1; }
.ps-kpi { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 8px 10px; }
.ps-kpi-scan { grid-column: span 2; }
.ps-kpi-val { font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.1; }
.ps-kpi-lbl { font-size: 10px; color: var(--muted); }
.ps-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.ps-card-lbl { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.ps-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.ps-bar-row:last-child { margin-bottom: 0; }
.ps-bar-name { font-size: 11px; color: var(--muted); width: 90px; flex-shrink: 0; }
.ps-bar-wrap { flex: 1; height: 7px; background: #f0fdf4; border-radius: 999px; overflow: hidden; border: 1px solid #bbf7d0; }
.ps-bar { height: 100%; background: var(--cta); border-radius: 999px; }
.ps-bar-count { font-size: 11px; font-weight: 700; color: var(--text); width: 16px; text-align: right; flex-shrink: 0; }
.ps-live-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--muted); padding: 6px 12px; background: #fff; border: 1px solid var(--border); border-radius: 999px; align-self: flex-start; }
.ps-live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: pulse 2s infinite; }

/* Phone frame */
.phone-frame {
  width: 248px; flex-shrink: 0; margin: 0 auto;
  background: #111; border-radius: 50px;
  padding: 52px 10px 28px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.09),
    inset 0 0 0 1.5px rgba(255,255,255,.04);
  position: relative;
}
/* Dynamic Island */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000; border-radius: 999px;
}
/* Home indicator */
.phone-frame::after {
  content: '';
  position: absolute;
  bottom: 9px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 4px;
  background: rgba(255,255,255,.28); border-radius: 2px;
}
/* Side buttons */
.phone-frame .phone-btn-r {
  position: absolute; right: -3px; top: 100px;
  width: 3px; height: 60px; background: #2a2a2a; border-radius: 0 3px 3px 0;
}
.phone-frame .phone-btn-l1,
.phone-frame .phone-btn-l2 {
  position: absolute; left: -3px;
  width: 3px; background: #2a2a2a; border-radius: 3px 0 0 3px;
}
.phone-frame .phone-btn-l1 { top: 90px; height: 36px; }
.phone-frame .phone-btn-l2 { top: 140px; height: 36px; }
.phone-inner {
  border-radius: 36px; overflow: hidden;
  height: 490px; overflow-y: auto;
  background: #fff; scrollbar-width: none;
  position: relative;
}
.phone-inner::-webkit-scrollbar { display: none; }
.menu-cover { position: relative; height: 140px; overflow: hidden; }
.menu-cover-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-cover-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.menu-rest-name { font-size: 15px; font-weight: 800; color: #fff; }
.menu-rest-sub { font-size: 11px; color: rgba(255,255,255,.75); }
.menu-portal-btn {
  position: absolute; top: 10px; right: 10px;
  background: var(--brand); color: #fff; font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.menu-cats {
  display: flex; gap: 0; overflow-x: auto; background: #fff;
  border-bottom: 1px solid var(--border); padding: 0 4px;
}
.menu-cats::-webkit-scrollbar { display: none; }
.menu-cat-tab {
  padding: 9px 13px; font-size: 12px; font-weight: 600; color: var(--muted);
  border-bottom: 2.5px solid transparent; white-space: nowrap; flex-shrink: 0;
}
.menu-cat-tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.menu-items-list { padding: 10px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-alt); }
.menu-item-card { display: flex; gap: 10px; background: #fff; border-radius: 12px; padding: 10px; border: 1px solid var(--border); }
.menu-item-img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.menu-item-info { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.menu-item-name { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; }
.menu-item-price { font-size: 13px; font-weight: 700; color: var(--brand); }

/* ===================== FOOD BAND ===================== */
.food-band { position: relative; overflow: hidden; line-height: 0; }
.food-band img { width: 100%; height: 340px; object-fit: cover; display: block; }
.food-band-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,72,35,.65) 0%, rgba(26,72,35,.2) 50%, transparent 100%); display: flex; align-items: center; }
.food-band-text { padding: 0 5%; }
.food-band-text h3 { font-size: clamp(22px,3.5vw,36px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.food-band-text p  { font-size: 16px; color: rgba(255,255,255,.8); max-width: 420px; }

/* ===================== PRICING ===================== */
.pricing-single { max-width: 820px; margin: 0 auto; }
.pricing-card { border: 1.5px solid var(--border); border-radius: 20px; padding: 40px; background: var(--bg); transition: box-shadow .2s, transform .2s; position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--brand); box-shadow: 0 8px 40px rgba(26,72,35,.18); }
.pricing-card-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pricing-name  { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 12px; }
.pricing-price-row { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.pricing-price { font-size: 52px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.pricing-currency { font-size: 20px; font-weight: 500; color: var(--muted); }
.pricing-period-col { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.pricing-period { font-size: 13px; color: var(--muted); }
.pricing-yearly-note { font-size: 12px; color: var(--brand-vivid); }
.pricing-no-cc { font-size: 12px; color: var(--muted); margin-top: 10px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.check-icon { color: var(--brand-vivid); }
.cross-icon { color: #cbd5e1; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; font-size: 14px; font-weight: 600; color: var(--muted); flex-wrap: wrap; }
.toggle-switch { position: relative; width: 52px; height: 28px; background: var(--border); border-radius: 999px; cursor: pointer; transition: background .2s; }
.toggle-switch.active { background: var(--brand); }
.toggle-knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform .2s; }
.toggle-switch.active .toggle-knob { transform: translateX(24px); }
.yearly-badge { background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; font-size: 16px; font-weight: 600; color: var(--text); gap: 16px; font-family: inherit; transition: color .15s; }
.faq-question:hover { color: var(--brand); }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform .25s; }
.faq-chevron svg { width: 16px; height: 16px; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 4px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ===================== CTA BAND ===================== */
.cta-band { background: linear-gradient(145deg, #0d2b17 0%, var(--brand) 55%, #2d6a4f 100%); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,158,11,.1) 0%, transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(26px,4vw,44px); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -.025em; position: relative; }
.cta-band p  { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ===================== FOOTER ===================== */
.footer { background: #0a1f0c; color: rgba(255,255,255,.55); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.3px; }
.footer-brand .logo-dot { color: var(--cta); }
.footer-desc { font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===================== FLASH TOAST ===================== */
.flash-overlay { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.flash-toast { background: #fff; border-radius: 12px; padding: 14px 20px; box-shadow: 0 8px 32px rgba(0,0,0,.14); border: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; animation: slideIn .3s ease; max-width: 360px; pointer-events: auto; }
.flash-toast.success { border-left: 4px solid #16a34a; }
.flash-toast.error   { border-left: 4px solid #dc2626; }
@keyframes slideIn { from { transform: translateX(32px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual       { order: -1; }
  .hero h1           { font-size: 42px; }
  .features-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .onboarding-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pm-body           { grid-template-columns: 1fr; }
  .pm-main           { border-right: none; border-bottom: 1px solid var(--border); }
  .pm-sidebar        { border-top: none; }
  .showcase-caption  { left: 28px; max-width: 280px; }
  .preview-split     { grid-template-columns: 1fr; gap: 48px; }
  .phone-frame       { width: 240px; }
  .ps-body           { grid-template-columns: 110px 1fr; }
}
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .section             { padding: 64px 0; }
  .nav-links           { display: none; }
  .nav-actions .btn    { display: none; }
  .hamburger           { display: flex; }
  .features-grid       { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 28px; }
  .hero                { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 72px; }
  .hero-inner          { gap: 32px; }
  .hero h1             { font-size: 32px; }
  .hero-sub            { font-size: 16px; }
  .hero-ctas           { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn      { justify-content: center; }
  .hero-carousel       { height: 280px; }
  .carousel-slide img  { height: 280px; }
  .carousel-dots       { bottom: 82px; }
  .hero-badge-top      { display: none; }
  .hero-stats-card     { position: static; border-radius: 16px; margin-top: 12px; box-shadow: none; border: 1px solid var(--border); }
  .hero-img-overlay    { display: none; }
  .onboarding-section  { padding: 72px 0; }
  .onboarding-form-card{ padding: 24px 20px; border-radius: 18px; }
  .form-submit-btn     { font-size: 15px; padding: 15px; }
  .food-band img       { height: 240px; }
  .showcase-img        { height: 280px; }
  .showcase-caption    { left: 20px; right: 20px; }
  .cta-band            { padding: 64px 0; }
  .cta-btns            { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .cta-btns .btn       { justify-content: center; }
  .logos-row           { gap: 8px; }
  .logo-pill           { font-size: 12px; padding: 7px 12px; }
  .food-band-text h3   { font-size: 20px; }
  .food-band-text p    { font-size: 14px; }
  .social-proof-row    { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sp-text             { margin-left: 0; }
  .pricing-toggle      { flex-wrap: wrap; gap: 8px; }
  .pricing-card-inner  { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card        { padding: 28px; }
  .preview-split       { grid-template-columns: 1fr; }
  .ps-body             { grid-template-columns: 100px 1fr; }
  .ps-nav-item span    { display: none; }
  .ps-nav-item         { justify-content: center; padding: 10px; }
  .ps-nav-active       { margin-right: 0; border-radius: 0; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .onboarding-form-card { padding: 20px 16px; }
}
