/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a2e1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --green-900: #1b4332;
  --green-800: #2d6a4f;
  --green-700: #40916c;
  --green-500: #52b788;
  --green-300: #95d5b2;
  --green-100: #d8f3dc;
  --green-50:  #f0faf4;
  --white:     #ffffff;
  --grey-100:  #f5f5f5;
  --grey-300:  #d1d5db;
  --grey-600:  #6b7280;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.12);
  --transition: .2s ease;
}

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utilities ─────────────────────────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.bg-green-light { background: var(--green-50); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(64,145,108,.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-100);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-100);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,.3);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--green-700);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--green-800); }

/* ── Badge & tags ───────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Section headings ───────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green-900);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--grey-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-100);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-white { color: var(--white); }
.logo-leaf { color: var(--green-500); font-size: 1.2rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green-900);
  transition: background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { background: var(--green-100); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--green-900);
  cursor: pointer;
  padding: 4px 8px;
}

/* ── Option C Hero ───────────────────────────────────────────────────────── */
.hero-c-bar {
  background: linear-gradient(120deg, var(--green-50) 0%, #fff 65%);
  border-bottom: 1px solid var(--green-100);
  padding: 48px 0 36px;
}
.hero-c-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-c-left {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}
.hero-c-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  min-width: 220px;
}
.hero-c-note {
  font-size: 0.75rem;
  color: var(--grey-600);
  text-align: right;
}
.hero-c-info-card {
  background: var(--green-100);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: right;
  min-width: 210px;
}
.hero-c-info-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}
.hero-c-info-text {
  font-size: 0.85rem;
  color: var(--green-900);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

/* punch classes used inside hero-c-left */
.punch-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.punch-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--green-900);
  margin-bottom: 12px;
}
.punch-green { color: var(--green-700); }
.punch-orange { color: #ea580c; }
.punch-sub {
  font-size: 0.92rem;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 22px;
}
.punch-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.punch-note {
  font-size: 0.75rem;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

/* Responsive visibility helpers */
.hide-mobile { display: block; }
.hide-desktop { display: none; }

/* Mobile badges: hidden on desktop, shown via media query */
.hero-c-mobile-badges { display: none; }
.hero-c-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-800);
}

/* ── Hero C Recipe Grid ──────────────────────────────────────────────────── */
.hero-c-grid-area {
  background: var(--green-50);
  padding: 24px 0 40px;
}
.hero-c-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.grid-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-c-grid-area .dishes-grid,
.hero-c-grid-area .dishes-grid.active-grid {
  grid-template-columns: repeat(4, 1fr);
}
.hero-c-grid-area .cat-tabs-wrap { margin-bottom: 0; }

/* ── Delivery Strip ──────────────────────────────────────────────────────── */
.delivery-strip {
  background: #fff;
  padding: 56px 0 64px;
}
.delivery-strip-inner {
  display: flex;
  justify-content: center;
}
.delivery-strip .delivery-panel {
  width: 100%;
  max-width: 540px;
}

/* ── Split Section (legacy, kept for reference) ──────────────────────────── */
.split-section { background: #fff; padding: 64px 0 80px; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* Shared panel header */
.panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.panel-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.green-wrap { background: var(--green-100); color: var(--green-700); }
.orange-wrap { background: #fff3e0; color: #ea580c; }
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 2px;
}
.panel-sub { font-size: 0.85rem; color: var(--grey-600); }

/* ── Delivery Panel ──────────────────────────────────────────────────────── */
.delivery-panel {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.delivery-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.delivery-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: box-shadow var(--transition);
}
.delivery-card:hover { box-shadow: var(--shadow); }
.delivery-active { border-color: #25d366; background: #f0fff4; }

.delivery-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.whatsapp-logo { background: #25d366; }
.sms-logo { background: #6b7280; }
.telegram-logo { background: #2ca5e0; }

.delivery-info { flex: 1; }
.delivery-info strong { display: block; font-size: 0.97rem; color: var(--green-900); font-weight: 600; }
.delivery-info span { font-size: 0.82rem; color: var(--grey-600); }

.delivery-status { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-green { background: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,.2); }
.dot-orange { background: #f97316; }
.status-text { font-size: 0.78rem; font-weight: 600; color: var(--green-800); }
.soon-text { color: var(--grey-600); }

.delivery-cta { margin-top: 4px; }
.delivery-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-600);
  margin-top: 10px;
}

/* ── Recipe Panel ────────────────────────────────────────────────────────── */
.recipe-panel {
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cat-tabs-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--green-100);
  background: #fff;
  color: var(--grey-600);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.cat-tab:hover { border-color: var(--green-500); color: var(--green-800); }
.cat-tab.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.dishes-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dishes-grid.active-grid { display: grid; }

.dish-card {
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  background: #fff;
}
.dish-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.dish-thumb {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.dish-info { padding: 14px; }
.dish-info h4 { font-size: 0.92rem; font-weight: 700; color: var(--green-900); margin-bottom: 4px; }
.dish-info p { font-size: 0.78rem; color: var(--grey-600); line-height: 1.45; margin-bottom: 10px; }
.dish-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dtag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
}
.dtag-cal { background: #fff3e0; color: #c2410c; }
.dtag-pro { background: var(--green-100); color: var(--green-800); }

/* ── Hero (kept for other pages) ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(82,183,136,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(149,213,178,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text .highlight { color: var(--green-300); }
.hero-sub {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 0.85rem;
  opacity: .65;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Phone mockup ───────────────────────────────────────────────────────── */
.phone-frame {
  background: #1a1a2e;
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
  max-width: 320px;
  margin: 0 auto;
}
.phone-notch {
  width: 80px;
  height: 10px;
  background: #333;
  border-radius: 6px;
  margin: 0 auto 14px;
}
.phone-screen {
  background: #e8f5e9;
  border-radius: 20px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 360px;
}
.chat-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-bubble.received {
  background: var(--white);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.chat-bubble.sent {
  background: var(--green-500);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-img-placeholder {
  background: var(--green-100);
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--green-700);
  margin-bottom: 8px;
}
.chat-meta { margin-bottom: 6px; font-size: 0.83rem; }
.chat-stats { font-size: 0.75rem; color: var(--grey-600); margin-bottom: 4px; }
.chat-link { color: var(--green-700); font-size: 0.78rem; font-weight: 600; margin-bottom: 4px; }
.chat-cta { font-size: 0.77rem; color: var(--grey-600); }

/* ── Social strip ───────────────────────────────────────────────────────── */
.social-strip {
  background: var(--green-900);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}
.strip-label {
  font-size: 0.8rem;
  opacity: .6;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  font-weight: 500;
}

/* ── Features grid ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-700);
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.93rem; color: var(--grey-600); line-height: 1.6; }

/* ── How it works preview (steps row) ────────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 200px;
  padding: 0 12px;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--green-900); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--grey-600); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--green-300);
  margin-top: 12px;
  padding: 0 8px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-featured {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  transform: scale(1.04);
}
.testi-featured:hover { transform: scale(1.04) translateY(-4px); }
.testi-stars { color: #fbbf24; margin-bottom: 14px; }
.testi-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.testi-featured p { opacity: .92; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testi-featured .testi-avatar { background: rgba(255,255,255,.25); }
.testi-author strong { font-size: 0.9rem; }
.testi-author small { opacity: .65; font-size: 0.8rem; }

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.cta-banner p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }

/* ── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; opacity: .85; max-width: 520px; margin: 0 auto; }

/* ── How It Works detail ─────────────────────────────────────────────────── */
.hiw-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}
.hiw-row-reverse { direction: rtl; }
.hiw-row-reverse > * { direction: ltr; }
.hiw-visual { display: flex; justify-content: center; }
.hiw-icon-big {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.hiw-icon-big.green {
  background: var(--green-100);
  color: var(--green-700);
}
.hiw-icon-big.white {
  background: var(--white);
  color: var(--green-700);
  box-shadow: var(--shadow);
  border: 1px solid var(--green-100);
}
.step-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.hiw-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--green-900);
  margin-bottom: 14px;
}
.hiw-content > p { color: var(--grey-600); margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
}
.check-list i { color: var(--green-500); margin-top: 2px; flex-shrink: 0; }
.hiw-divider {
  border: none;
  border-top: 1px solid var(--green-100);
  margin: 0;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
}
.faq-q i { flex-shrink: 0; transition: transform var(--transition); color: var(--green-700); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.93rem; color: var(--grey-600); line-height: 1.7; }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-weight: 500; color: var(--grey-600); }
.toggle-label.active { color: var(--green-900); font-weight: 600; }
.save-badge {
  background: var(--green-700);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
/* Toggle switch */
.switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--grey-300);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}
.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
input:checked + .slider { background: var(--green-700); }
input:checked + .slider::before { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-700);
  margin-bottom: 12px;
}
.featured .plan-name { color: var(--green-300); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-900);
}
.featured .price-amount { color: var(--white); }
.price-period { font-size: 0.9rem; color: var(--grey-600); }
.featured .price-period { color: rgba(255,255,255,.7); }
.plan-desc { font-size: 0.9rem; color: var(--grey-600); margin-bottom: 24px; }
.featured .plan-desc { color: rgba(255,255,255,.75); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.plan-features .fa-check { color: var(--green-500); }
.plan-features .fa-xmark { color: var(--grey-300); }
.plan-features .fa-clock { color: var(--grey-300); }
.plan-features .disabled { color: var(--grey-300); }
.plan-features .coming-soon { color: var(--grey-600); }
.featured .plan-features li { color: rgba(255,255,255,.88); }
.featured .plan-features .disabled,
.featured .plan-features .coming-soon { color: rgba(255,255,255,.4); }
.tag-soon {
  background: rgba(255,255,255,.15);
  color: inherit;
  font-size: 0.7rem;
  padding: 1px 7px;
  border-radius: 999px;
  margin-left: 4px;
}
.featured .btn-primary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.featured .btn-primary:hover { background: var(--green-100); }
.guarantee-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.guarantee-strip i { font-size: 1.8rem; color: var(--green-700); flex-shrink: 0; }
.guarantee-strip p { font-size: 0.92rem; color: var(--grey-600); }

/* ── Compare table ──────────────────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--green-50);
}
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table thead th {
  background: var(--green-900);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.compare-table .col-featured {
  background: var(--green-50);
}
.compare-table tbody tr:hover td { background: var(--green-50); }
.compare-table .green { color: var(--green-500); font-size: 1.1rem; }
.compare-table .muted { color: var(--grey-300); font-size: 1rem; }
.table-note { text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--grey-600); }

/* ── Signup page ────────────────────────────────────────────────────────── */
.signup-section { padding: 60px 0 80px; background: var(--green-50); min-height: 80vh; }
.signup-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: start;
}
.signup-hero { padding-top: 20px; }
.signup-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.signup-hero p { font-size: 1rem; color: var(--grey-600); margin-bottom: 28px; }
.signup-perks { display: flex; flex-wrap: wrap; gap: 16px; }
.signup-perks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-800);
}
.signup-perks .fa-check { color: var(--green-500); }
.signup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 6px;
}
.req { color: var(--green-700); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--green-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(82,183,136,.12); }
.form-group small { display: block; margin-top: 5px; font-size: 0.78rem; color: var(--grey-600); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-summary {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-summary .fa-tag { color: var(--green-600); }
.plan-summary a { color: var(--green-700); font-weight: 600; text-decoration: underline; }
.form-terms { font-size: 0.78rem; color: var(--grey-600); text-align: center; margin-top: 12px; }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-error { background: #fff1f0; border: 1px solid #ffc9c9; color: #b91c1c; }

/* ── Success box ────────────────────────────────────────────────────────── */
.success-box { text-align: center; }
.success-icon {
  font-size: 3.5rem;
  color: var(--green-500);
  margin-bottom: 16px;
}
.success-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-900);
  margin-bottom: 12px;
}
.success-box p { color: var(--grey-600); margin-bottom: 12px; }
.success-note { font-size: 0.88rem; }
.join-instructions {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}
.join-instructions h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.join-instructions p { font-size: 0.9rem; color: var(--grey-600); margin-bottom: 8px; }
.join-code {
  background: var(--green-900);
  color: var(--white);
  font-family: monospace;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 10px 0;
  letter-spacing: .05em;
}
.join-note { font-size: 0.8rem; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 160px 200px;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; opacity: .65; max-width: 280px; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; opacity: .5; margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; opacity: .75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }
.footer-contact p { font-size: 0.88rem; opacity: .75; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: .45;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card:last-child { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .split-inner { gap: 24px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phone { display: none; }
  .hero { padding: 70px 0 60px; }
  .hide-mobile { display: none; }
  .hide-desktop { display: block; }
  /* M4 mobile hero */
  .hero-c-bar { padding: 24px 0 20px; background: #fff; }
  .hero-c-bar-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-c-right { display: none !important; }
  /* Tabs scroll horizontally instead of wrapping */
  .cat-tabs-wrap {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .cat-tabs-wrap::-webkit-scrollbar { display: none; }
  .cat-tab { flex-shrink: 0; }
  .hero-c-mobile-badges {                             /* shown on mobile */
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  .punch-headline { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .punch-sub { margin-bottom: 14px; }
  .punch-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }
  .punch-actions .btn-lg {
    padding: 11px 10px;
    font-size: 0.82rem;
    border-radius: 10px;
    justify-content: center;
  }
  .hero-c-grid-area .dishes-grid,
  .hero-c-grid-area .dishes-grid.active-grid { grid-template-columns: 1fr 1fr; }
  .delivery-strip { padding: 36px 0 48px; }
  .split-section { padding: 40px 0 60px; }
  .split-inner { grid-template-columns: 1fr; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:last-child { display: block; }
  .testi-featured { transform: none; }
  .hiw-row { grid-template-columns: 1fr; gap: 24px; }
  .hiw-row-reverse { direction: ltr; }
  .hiw-visual { display: none; }
  .signup-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 62px;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .hero-c-grid-area .dishes-grid { grid-template-columns: 1fr; }
  .punch-headline { font-size: 1.6rem; }
}
