:root {
  --green-950: #0e271d;
  --green-900: #173d2b;
  --green-800: #1d5238;
  --green-100: #eaf3ec;
  --cream: #fbf6e9;
  --cream-2: #f4e7c5;
  --gold: #d6a43b;
  --gold-2: #f6d98a;
  --ink: #18251f;
  --muted: #66756c;
  --line: rgba(23, 61, 43, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(14, 39, 29, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
strong { color: var(--green-900); }
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--green-900);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 10;
}
.skip-link:focus { top: 12px; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 233, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; color: var(--green-950); }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--green-900);
  color: var(--cream-2);
  box-shadow: 0 12px 24px rgba(23, 61, 43, 0.22);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; color: var(--green-950); }
.nav-links a:not(.nav-cta):hover { color: var(--green-800); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--green-900); color: white; }
.hero { position: relative; overflow: hidden; padding: 78px 0 48px; }
.hero-bg {
  position: absolute;
  inset: -10% -20% auto auto;
  width: 56vw;
  height: 56vw;
  min-width: 520px;
  min-height: 520px;
  background: radial-gradient(circle, rgba(214, 164, 59, 0.36), rgba(214, 164, 59, 0.05) 62%, transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; font-weight: 800; color: var(--green-800); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.05em; color: var(--green-950); }
h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); max-width: 760px; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.03em; }
.hero-subtitle { max-width: 650px; margin: 24px 0 0; font-size: clamp(1.08rem, 1.8vw, 1.32rem); color: #35473c; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 0.96rem;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--green-900); color: white; box-shadow: 0 14px 28px rgba(23, 61, 43, 0.2); }
.btn.secondary { background: rgba(255,255,255,0.58); color: var(--green-950); border-color: var(--line); }
.btn.light { background: var(--cream); color: var(--green-950); }
.btn.full { width: 100%; }
.trust-note { max-width: 660px; font-size: 0.92rem; color: var(--muted); margin: 0; }
.phone-card {
  justify-self: end;
  width: min(440px, 100%);
  background: #fffaf0;
  border: 1px solid rgba(23, 61, 43, 0.12);
  border-radius: 38px;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.phone-top { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--green-950); }
.phone-logo { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; background: var(--green-900); color: var(--cream-2); }
.restaurant-card, .pact-box, .support-score {
  margin-top: 18px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(23, 61, 43, 0.1);
  padding: 18px;
}
.restaurant-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.muted, .small { color: var(--muted); }
.muted { margin: 0 0 6px; font-size: 0.82rem; }
.small { margin: 12px 0 0; font-size: 0.9rem; }
.pill { padding: 7px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-weight: 800; font-size: 0.76rem; white-space: nowrap; }
.tip-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tip-row span { display: grid; place-items: center; min-height: 42px; border-radius: 14px; background: var(--cream); border: 1px solid var(--line); font-weight: 800; color: var(--green-900); }
.support-score { display: flex; align-items: center; justify-content: space-between; }
.support-score span { color: var(--muted); font-weight: 700; }
.support-score strong { font-size: 2rem; color: var(--green-900); }
.demo-button { width: 100%; margin-top: 18px; border: 0; min-height: 50px; border-radius: 999px; background: var(--gold); color: var(--green-950); font-weight: 900; }
.logos-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.32); }
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.mini-stats div { padding: 28px 22px; border-left: 1px solid var(--line); }
.mini-stats div:last-child { border-right: 1px solid var(--line); }
.mini-stats strong { display: block; font-size: 1.7rem; color: var(--green-900); letter-spacing: -0.04em; }
.mini-stats span { color: var(--muted); font-weight: 700; font-size: 0.92rem; }
.section { padding: 96px 0; }
.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.narrow { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p, .section-copy { color: #415349; font-size: 1.08rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card, .restaurant-benefit, .feature-panel, .form-card, details {
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-number { display: inline-flex; color: var(--gold); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 32px; }
.step-card p, .restaurant-benefit p, .feature-panel p, details p { color: var(--muted); margin-bottom: 0; }
.split-section { background: var(--green-900); color: white; }
.split-section h2, .split-section h3, .split-section .eyebrow { color: var(--cream); }
.split-section .section-copy, .split-section p, .split-section li { color: rgba(255,255,255,0.78); }
.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-2); font-weight: 900; }
.feature-panel { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.restaurant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.forms-section { background: #f6edd9; }
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.form-card { background: white; box-shadow: 0 18px 40px rgba(14, 39, 29, 0.08); }
.form-card.accent { background: var(--green-900); color: white; }
.form-card.accent h2, .form-card.accent .eyebrow { color: var(--cream); }
.form-card.accent p, .form-card.accent label { color: rgba(255,255,255,0.82); }
.signup-form { display: grid; gap: 11px; margin-top: 24px; }
label { font-weight: 800; color: var(--green-950); font-size: 0.9rem; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdf7;
}
textarea { resize: vertical; }
.form-card.accent input, .form-card.accent select, .form-card.accent textarea { background: rgba(255,255,255,0.96); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(214,164,59,0.28); border-color: var(--gold); }
.hidden { display: none; }
.form-message { min-height: 22px; color: var(--green-800); font-weight: 800; margin: 4px 0 0; }
.form-card.accent .form-message { color: var(--gold-2); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
summary { cursor: pointer; font-weight: 900; color: var(--green-950); }
.site-footer { padding: 42px 0; background: var(--green-950); color: rgba(255,255,255,0.78); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-brand { color: white; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: var(--cream-2); }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .split-grid, .forms-grid { grid-template-columns: 1fr; }
  .phone-card { justify-self: start; transform: none; }
  .steps-grid, .restaurant-grid, .faq-grid, .mini-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 52px; }
  h1 { font-size: 3.2rem; }
  .hero-actions .btn { width: 100%; }
  .steps-grid, .restaurant-grid, .faq-grid, .mini-stats { grid-template-columns: 1fr; }
  .mini-stats div { border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
