/* =============================================
   NATTY BITES — Landing Page Styles
   Color Palette:
   --olive-dark : #3C442E
   --olive      : #6B7A4E
   --beige      : #DCCFB4
   --offwhite   : #F6F4EC
   --charcoal   : #222222
   ============================================= */

/* ---- CSS Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive-dark: #3C442E;
  --olive: #6B7A4E;
  --beige: #DCCFB4;
  --offwhite: #F6F4EC;
  --charcoal: #222222;
  --white: #ffffff;
  --text: #222222;
  --text-muted: #5a5a4a;
  --border: #d4cdb8;
  --shadow-sm: 0 2px 8px rgba(60,68,46,0.08);
  --shadow-md: 0 8px 32px rgba(60,68,46,0.13);
  --shadow-lg: 0 20px 60px rgba(60,68,46,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-logo-natty: 'Anton', sans-serif;
  --font-logo-bites: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body); background: var(--offwhite); color: var(--text);
  line-height: 1.6; overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
/* Remove tap highlight on Android Chrome */
a, button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px 24px; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }
.btn--primary { background: var(--olive-dark); color: var(--white); border-color: var(--olive-dark); }
.btn--primary:hover { background: var(--olive); border-color: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--olive-dark); border-color: var(--olive-dark); }
.btn--outline:hover { background: var(--olive-dark); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--olive-dark); border-color: rgba(60,68,46,0.3); }
.btn--ghost:hover { background: rgba(60,68,46,0.08); border-color: var(--olive-dark); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- Section Headings ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
  padding: 4px 14px; background: rgba(107,122,78,0.12); border-radius: 20px;
}
.section-label--light { color: var(--beige); background: rgba(220,207,180,0.15); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); line-height: 1.1; margin-bottom: 14px; letter-spacing: 0.02em; text-transform: uppercase; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(246,244,236,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.navbar__logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-natty { font-family: var(--font-logo-natty); font-size: 1.4rem; font-weight: 400; color: var(--olive-dark); letter-spacing: 0.06em; }
.logo-bites { font-family: var(--font-logo-bites); font-size: 0.85rem; font-weight: 700; color: var(--olive); letter-spacing: 0.22em; margin-top: -2px; text-transform: uppercase; }
.logo-sub { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.navbar__links { display: flex; gap: 32px; align-items: center; }
.navbar__links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.navbar__links a:hover { color: var(--olive-dark); }
.navbar__cta { padding: 10px 20px; font-size: 0.88rem; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--olive-dark); border-radius: 2px; transition: var(--transition); }
.navbar__mobile { display: none; flex-direction: column; gap: 8px; padding: 16px 24px 20px; background: var(--offwhite); border-top: 1px solid var(--border); }
.navbar__mobile.open { display: flex; }
.mobile-link { font-size: 1rem; font-weight: 500; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-cta { margin-top: 8px; text-align: center; }

/* ---- HERO ---- */
.hero {
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
  background-image: url('WhatsApp Image 2026-07-16 at 23.40.24.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(34, 40, 22, 0.82) 0%,
    rgba(34, 40, 22, 0.65) 50%,
    rgba(34, 40, 22, 0.5) 100%
  );
}
.hero > .container { position: relative; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__content { max-width: 580px; }
.hero__badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--beige); background: rgba(220,207,180,0.18);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
  border: 1px solid rgba(220,207,180,0.3);
}
.hero__headline {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05; color: var(--white); margin-bottom: 12px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.hero__headline em { color: #a8c27a; font-style: normal; }
.hero__tagline { font-size: 1.05rem; font-weight: 500; color: rgba(220,207,180,0.9); margin-bottom: 20px; font-style: italic; }
.hero__desc { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7);
}
.hero__trust svg { color: #a8c27a; flex-shrink: 0; }

/* Ghost light button for dark backgrounds */
.btn--ghost-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* Hero Form Column */
.hero__form-wrap {
  display: flex; justify-content: center; align-items: center;
}
.hero__form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 20px;
}
.hero__form-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--olive-dark); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 4px; text-align: center;
}

/* Hero Visual (kept for any legacy references) */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__img-frame {
  position: relative; width: 100%; max-width: 520px; height: 540px;
  border-radius: var(--radius-lg); overflow: visible;
}
.hero__img-photo {
  width: 100%; height: 100%; border-radius: var(--radius-lg);
  object-fit: cover; object-position: center;
  box-shadow: var(--shadow-lg);
  display: block;
  position: relative; z-index: 0;
}
.hero__badge-float {
  position: absolute; z-index: 2;
  background: var(--white); border-radius: 12px;
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
  white-space: nowrap; animation: floatBadge 3s ease-in-out infinite;
  font-family: var(--font-body);
}
.hero__badge-float--tl { top: 20px; left: -16px; animation-delay: 0s; }
.hero__badge-float--br { bottom: 80px; right: -16px; animation-delay: 1.5s; }
.badge-icon { font-size: 1.1rem; }

/* Macro chip at bottom of photo */
.hero__macro-chip {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(34,34,34,0.85); backdrop-filter: blur(8px);
  border-radius: 40px; padding: 10px 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.82rem; color: var(--white);
  white-space: nowrap; box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero__macro-item { display: flex; gap: 4px; align-items: center; }
.hero__macro-item strong { color: var(--beige); }
.hero__macro-sep { color: rgba(255,255,255,0.3); }

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

/* ---- VALUE PROPOSITION ---- */
.value { padding: 100px 0; background: var(--offwhite); }
.value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.value__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive-dark), var(--olive));
  opacity: 0; transition: opacity var(--transition);
}
.value__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.value__card:hover::before { opacity: 1; }
.value__card:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }

.value__card--featured {
  background: linear-gradient(145deg, var(--olive-dark) 0%, var(--olive) 100%);
  border-color: transparent;
  color: var(--white);
}
.value__card--featured::before { background: rgba(255,255,255,0.25); opacity: 1; }
.value__card--featured:hover { border-color: transparent; }

.value__card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(107,122,78,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-dark);
}
.value__card--featured .value__card-icon { background: rgba(255,255,255,0.15); color: var(--white); }

.value__card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--charcoal);
  line-height: 1.3; margin: 0; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.value__card--featured h3 { color: var(--white); }

.value__card p {
  font-size: 0.82rem; color: var(--text-muted); margin: 0;
}
.value__card--featured p { color: rgba(255,255,255,0.75); }

.value__card-cta {
  margin-top: auto;
  font-size: 0.82rem; font-weight: 700;
  color: var(--olive-dark);
}
.value__card--featured .value__card-cta { color: rgba(255,255,255,0.9); }

/* Value card popup styles */
.popup--value { text-align: left; max-width: 520px; position: relative; }
.popup--value .popup__title { font-size: 1.4rem; margin-bottom: 8px; text-align: left; }
.popup__value-subtitle {
  font-size: 0.95rem; font-weight: 700; color: var(--olive-dark);
  margin-bottom: 10px;
}
.popup__value-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.popup__x-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--text-muted);
  padding: 4px 8px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.popup__x-close:hover { color: var(--charcoal); background: var(--offwhite); }

.popup__value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(107,122,78,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-dark); margin-bottom: 16px;
}
.popup__value-icon--warning { background: rgba(192,57,43,0.1); color: #c0392b; }
.popup__value-icon--featured { background: rgba(60,68,46,0.12); color: var(--olive-dark); }
.popup__value-icon--success { background: rgba(107,122,78,0.12); color: var(--olive); }

.popup__value-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.popup__value-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
.popup__value-list li::before {
  content: '✓';
  color: var(--olive); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0; margin-top: 2px;
}
.popup--value .popup__close { display: block; margin: 0 auto; min-width: 140px; }

/* ---- WHY NATTY BITES ---- */
.why { padding: 100px 0; background: var(--white); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why__card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: var(--offwhite); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.why__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive-dark), var(--olive));
  opacity: 0; transition: opacity var(--transition);
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why__card:hover::before { opacity: 1; }
.why__card--featured {
  background: linear-gradient(145deg, var(--olive-dark) 0%, var(--olive) 100%);
  color: var(--white); border-color: transparent;
}
.why__card--featured::before { background: rgba(255,255,255,0.2); opacity: 1; }
.why__featured-tag {
  display: inline-block; margin-top: 16px; font-size: 0.75rem; font-weight: 700;
  background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; color: var(--white);
}
.why__icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(107,122,78,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--olive-dark);
}
.why__card--featured .why__icon { background: rgba(255,255,255,0.15); color: var(--white); }
.why__card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; font-family: var(--font-body); }
.why__card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
/* Featured card text overrides — must come AFTER the base .why__card h3/p rules */
.why__card--featured h3 { color: var(--white); }
.why__card--featured p { color: var(--white); font-weight: 500; }

/* ---- HOW TO ORDER ---- */
.howto { padding: 100px 0; background: var(--offwhite); }
.howto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

/* Steps 4 & 5 span to form the bottom row of 2 */
.howto__grid > article:nth-child(4) { grid-column: span 1; }
.howto__grid > article:nth-child(5) { grid-column: span 2; }

.howto__card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.howto__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Step badge */
.howto__step-badge {
  display: inline-block; width: fit-content;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(107,122,78,0.15); color: var(--olive-dark);
}
.howto__step-badge--featured {
  background: rgba(107,122,78,0.15); color: var(--olive-dark);
}
.howto__step-badge--hero {
  background: var(--olive-dark); color: var(--white);
}

/* Titles */
.howto__title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--charcoal); line-height: 1.1;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.howto__title--hero { color: var(--olive-dark); }

/* Description */
.howto__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.howto__desc--hero { color: var(--text-muted); }

/* Divider */
.howto__divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.howto__divider--hero { border-color: rgba(60,68,46,0.2); }

/* Checklist */
.howto__checklist { display: flex; flex-direction: column; gap: 10px; }
.howto__checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--charcoal);
}
.howto__checklist li svg { color: var(--olive); flex-shrink: 0; }
.howto__checklist--hero li { color: var(--olive-dark); font-size: 0.92rem; }
.howto__checklist--hero li svg { color: var(--olive-dark); }

/* Goal table (Step 2) */
.howto__goal-table { display: flex; flex-direction: column; gap: 8px; }
.howto__goal-table li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 2px 0;
}
.howto__goal-table li span:first-child { color: var(--text-muted); font-weight: 500; }
.howto__goal-table li span:last-child { color: var(--charcoal); font-weight: 700; }

/* Featured card (Step 3) — olive border highlight */
.howto__card--featured {
  border-color: var(--olive);
  box-shadow: 0 0 0 1px var(--olive);
}

/* Hero card (Step 5) — light green tint */
.howto__card--hero {
  background: #eef4e8;
  border-color: var(--olive);
}
.howto__card--hero:hover { box-shadow: var(--shadow-md); }

/* CTA below grid */
.howto__cta { text-align: center; margin-top: 48px; }

/* ---- PACKAGES ---- */
.packages { padding: 100px 0; background: var(--offwhite); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.package-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; display: flex; flex-direction: column; gap: 16px;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.package-card--hero {
  background: linear-gradient(160deg, var(--olive-dark) 0%, #2e3622 100%);
  border-color: var(--olive-dark); color: var(--white);
  transform: scale(1.03);
}
.package-card--hero:hover { transform: scale(1.03) translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(220,207,180,0.2); color: var(--beige);
  padding: 5px 12px; border-radius: 20px; width: fit-content;
}
.package-card__icon { font-size: 2.6rem; }
.package-card__name { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.03em; text-transform: uppercase; }
.package-card--hero .package-card__name { color: var(--white); }
.package-card__sub { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--olive); }
.package-card--hero .package-card__sub { color: var(--beige); }
.package-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.package-card--hero .package-card__desc { color: rgba(255,255,255,0.78); }

/* Price block */
.package-card__price-block {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(107,122,78,0.07);
}
.package-card--hero .package-card__price-block { background: rgba(255,255,255,0.1); }
.package-card__price-row { display: flex; align-items: baseline; gap: 6px; }
.package-card__price-main {
  font-family: var(--font-display); font-size: 2rem; line-height: 1;
  color: var(--charcoal); letter-spacing: 0.01em;
}
.package-card--hero .package-card__price-main { color: var(--white); }
.package-card__price-unit { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.package-card--hero .package-card__price-unit { color: rgba(255,255,255,0.65); }
.package-card__price-weekly { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.package-card--hero .package-card__price-weekly { color: rgba(255,255,255,0.55); }

.package-card__macros {
  display: flex; gap: 16px; padding: 16px;
  background: rgba(107,122,78,0.07); border-radius: 10px;
}
.package-card--hero .package-card__macros { background: rgba(255,255,255,0.1); }
.macro { display: flex; flex-direction: column; align-items: center; flex: 1; }
.macro__val { font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); line-height: 1; }
.package-card--hero .macro__val { color: var(--beige); }
.macro__lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.package-card--hero .macro__lbl { color: rgba(255,255,255,0.6); }
.packages__note { text-align: center; margin-top: 40px; font-size: 0.95rem; color: var(--text-muted); }
.packages__note a { color: var(--olive-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---- WAITLIST ---- */
.waitlist {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--olive-dark) 0%, #2e3622 100%);
  position: relative; overflow: hidden;
}
.waitlist::before {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,207,180,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.waitlist__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.waitlist__content { color: var(--white); }
.waitlist__content h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05; margin-bottom: 16px; color: var(--white);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.waitlist__content p { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 28px; }
.waitlist__perks { display: flex; flex-direction: column; gap: 10px; }
.waitlist__perks li { font-size: 0.95rem; color: rgba(255,255,255,0.88); font-weight: 500; }

/* Form */
.waitlist__form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow-lg);
}
.waitlist__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.form-group label span { color: var(--olive); }
.form-group input {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--offwhite); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input::placeholder { color: #aaa; }
.form-group input:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(107,122,78,0.15); }
.form-group input.input--error { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-error { font-size: 0.8rem; color: #c0392b; min-height: 18px; }
.input-prefix-wrap { position: relative; display: flex; align-items: center; }
.input-prefix {
  position: absolute; left: 14px; font-size: 0.95rem; font-weight: 600;
  color: var(--olive-dark); pointer-events: none; z-index: 1;
}
.input-prefix-wrap input { padding-left: 30px; }
.form-privacy { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: -4px; }
.form-privacy a { color: var(--olive-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---- FAQ ---- */
.faq { padding: 100px 0; background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--charcoal);
  text-align: left; transition: color var(--transition);
}
.faq__question:hover { color: var(--olive-dark); }
.faq__question:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; border-radius: 4px; }
.faq__icon {
  font-size: 1.3rem; font-weight: 400; color: var(--olive-dark);
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  border: 1.5px solid var(--olive-dark); border-radius: 50%;
  font-size: 1rem; line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 4px 22px; }
.faq__answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* ---- FOOTER ---- */
.footer { background: var(--charcoal); color: var(--white); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer__logo .logo-natty { color: var(--white); }
.footer__logo .logo-bites { color: var(--beige); }
.footer__logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__nav h4, .footer__contact h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--beige); margin-bottom: 4px; }
.footer__nav a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__nav a:hover { color: var(--white); }
.footer__contact p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); text-decoration: underline; }

/* ---- POPUP / MODAL ---- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(34,34,34,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; max-width: 480px; width: 100%; text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s ease;
}
.popup-overlay.active .popup { transform: scale(1) translateY(0); }
.popup__icon { font-size: 3.5rem; margin-bottom: 16px; }
.popup__title { font-family: var(--font-display); font-size: 2rem; color: var(--charcoal); margin-bottom: 14px; letter-spacing: 0.02em; text-transform: uppercase; }
.popup__title span { color: var(--olive-dark); }
.popup__text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.popup__sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.popup__close { min-width: 160px; }
.popup--privacy { text-align: left; max-width: 540px; }
.popup--privacy .popup__title { font-size: 1.4rem; margin-bottom: 20px; }
.popup__privacy-content { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.popup__privacy-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.popup--privacy .popup__close { display: block; margin: 0 auto; }

/* ================================================================
   RESPONSIVE — Comprehensive Mobile-First
   Breakpoints:
     1200px  large laptop / wide tablet landscape
     1024px  tablet landscape / small laptop
      900px  tablet portrait
      768px  large phone / narrow tablet
      600px  mid phone
      480px  standard phone (375–480px)
      360px  small phone
   ================================================================ */

/* ---- Touch targets ---- */
.btn { min-height: 44px; }
.faq__question { min-height: 44px; }
.navbar__hamburger { min-height: 44px; min-width: 44px; justify-content: center; }
/* Prevent iOS input zoom */
.form-group input { font-size: 1rem; }

/* ================================================================
   1024px — Tablet landscape / small laptop
   ================================================================ */
@media (max-width: 1024px) {
  /* Hero: reduce gap, let content breathe */
  .hero__inner { gap: 40px; }
  .hero__img-frame { max-width: 420px; height: 460px; }

  /* Floating badges: pull inside frame so they don't overflow */
  .hero__badge-float--tl { top: 16px; left: 12px; }
  .hero__badge-float--br { bottom: 80px; right: 12px; }

  /* Value: 2 col */
  .value__grid { grid-template-columns: repeat(2, 1fr); }

  /* Why: 2 col */
  .why__grid { grid-template-columns: repeat(2, 1fr); }

  /* Howto: 2 col, step 5 spans full row */
  .howto__grid { grid-template-columns: repeat(2, 1fr); }
  .howto__grid > article:nth-child(5) { grid-column: span 2; }

  /* Packages: keep 3-col but reduce padding */
  .package-card { padding: 28px 22px; }
  .package-card--hero { transform: none; }
  .package-card--hero:hover { transform: translateY(-6px); }

  /* Footer: 2-col (brand full width top) */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ================================================================
   900px — Tablet portrait
   ================================================================ */
@media (max-width: 900px) {
  /* Section padding */
  .hero { padding: 110px 0 72px; }
  .value, .why, .howto, .packages, .faq { padding: 72px 0; }
  .waitlist { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero: stack, form below content */
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__form-wrap { width: 100%; }
  .hero__form { max-width: 100%; }

  /* Value: 2-col */
  .value__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Why: 2-col */
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Howto: 2-col */
  .howto__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .howto__grid > article:nth-child(5) { grid-column: span 2; }

  /* Packages: 2-col */
  .packages__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Bulk Fuel spans full width as hero */
  .packages__grid > article:first-child { grid-column: span 2; }

  /* Waitlist: stack */
  .waitlist__inner { grid-template-columns: 1fr; gap: 40px; }
  .waitlist__inner { padding: 0 0; }
}

/* ================================================================
   768px — Large phone / narrow tablet
   ================================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 96px 0 60px; }
  .hero__content { max-width: 100%; }
  .hero__headline { font-size: clamp(2.6rem, 10vw, 3.6rem); line-height: 1.0; }
  .hero__desc { margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 14px; flex-wrap: wrap; }
  .hero__img-frame { max-width: 100%; height: 340px; }

  /* Value: 1-col */
  .value__grid { grid-template-columns: 1fr; gap: 12px; }
  .value__card { padding: 24px 20px; }

  /* Why: 1-col */
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why__card { padding: 24px 20px; }

  /* Howto: 1-col, all steps single */
  .howto__grid { grid-template-columns: 1fr; gap: 12px; }
  .howto__grid > article:nth-child(4),
  .howto__grid > article:nth-child(5) { grid-column: span 1; }
  .howto__card { padding: 24px 20px; }

  /* Packages: 1-col */
  .packages__grid { grid-template-columns: 1fr; gap: 16px; }
  .packages__grid > article:first-child { grid-column: span 1; }
  .package-card { padding: 24px 20px; }

  /* Section headers */
  .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-header p { font-size: 0.95rem; }

  /* Waitlist form */
  .waitlist__form-wrap { padding: 32px 24px; }
  .waitlist__content h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* FAQ */
  .faq__question { font-size: 0.92rem; padding: 18px 4px; }

  /* Footer: full stack */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer { padding-top: 48px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ================================================================
   600px — Mid phone
   ================================================================ */
@media (max-width: 600px) {
  .hero__img-frame { height: 300px; }
  /* Stack trust badges vertically */
  .hero__trust { flex-direction: column; gap: 10px; }
  .hero__headline { font-size: clamp(2.2rem, 10vw, 3rem); }

  /* Waitlist perks tighter */
  .waitlist__perks li { font-size: 0.88rem; }
}

/* ================================================================
   480px — Standard phone
   ================================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Section padding */
  .hero { padding: 84px 0 48px; }
  .value, .why, .howto, .packages, .faq { padding: 52px 0; }
  .waitlist { padding: 52px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Hero */
  .hero__headline { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero__img-frame { height: 260px; }
  /* Hide floating badges at this size — they clip even when inset */
  .hero__badge-float { display: none; }
  .hero__macro-chip { font-size: 0.68rem; padding: 6px 12px; gap: 6px; }

  /* Cards */
  .value__card { padding: 20px 16px; }
  .why__card { padding: 20px 16px; }
  .howto__card { padding: 20px 16px; }
  .package-card { padding: 20px 16px; }

  /* Package price */
  .package-card__price-main { font-size: 1.6rem; }
  .package-card__name { font-size: 1.6rem; }
  .macro__val { font-size: 1rem; }

  /* Waitlist form */
  .waitlist__form-wrap { padding: 24px 16px; }
  .waitlist__content h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }

  /* Buttons */
  .btn--full { font-size: 0.92rem; padding: 13px 16px; }
  .btn--lg { padding: 13px 20px; font-size: 0.95rem; }

  /* Popups: slide up from bottom */
  .popup-overlay { padding: 0; align-items: flex-end; }
  .popup {
    padding: 28px 20px 32px;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 100%;
  }
  .popup__title { font-size: 1.4rem; }
  .popup--value { max-width: 100%; }
  .popup--privacy { max-width: 100%; }
}

/* ================================================================
   360px — Small phone
   ================================================================ */
@media (max-width: 360px) {
  .navbar__inner { height: 60px; }
  .hero { padding: 76px 0 40px; }
  .hero__headline { font-size: 1.9rem; }
  .hero__img-frame { height: 220px; }
  .logo-natty { font-size: 1.2rem; }
  .logo-bites { font-size: 0.75rem; }
  .package-card__price-main { font-size: 1.4rem; }
  .section-header h2 { font-size: 1.6rem; }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
