/* ════════════════════════════════════════════════════
   RANTANGINN — Landing Page Stylesheet
   Brand: #677333 primary · #C35530 secondary
          #F69520 accent · #2A3C22 text
   Fonts: Montserrat (headlines) · Poppins (body)
   ════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --primary:        #677333;
  --primary-dark:   #4a5526;
  --primary-light:  #8fa14a;
  --secondary:      #C35530;
  --secondary-dark: #a04426;
  --accent:         #F69520;
  --accent-dark:    #d47e10;
  --text:           #2A3C22;
  --text-body:      #4a5a3a;
  --text-muted:     #7a8a6a;
  --bg-warm:        #faf7f2;
  --bg-beige:       #f3ede3;
  --bg-white:       #ffffff;
  --bg-green:       #2A3C22;
  --border:         #dde8c0;
  --border-light:   #edf3d8;
  --shadow-sm:      0 2px 8px rgba(42,60,34,.07);
  --shadow-md:      0 8px 32px rgba(42,60,34,.11);
  --shadow-lg:      0 20px 60px rgba(42,60,34,.15);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --section-py:     96px;
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Pastikan atribut HTML hidden selalu dihormati, tidak tertimpa CSS */
[hidden] { display: none !important; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg-warm);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

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

/* ── Section base ── */
.section { padding: var(--section-py) 0; }
.section--white  { background: var(--bg-white); }
.section--light  { background: var(--bg-warm); }
.section--beige  { background: var(--bg-beige); }
.section--green  { background: var(--bg-green); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header--light h2,
.section-header--light p { color: rgba(255,255,255,.9); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(103,115,51,.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--accent); background: rgba(246,149,32,.15); }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.section-header p { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ── Typography helpers ── */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.highlight { color: var(--primary); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.badge--coming-soon { background: rgba(246,149,32,.15); color: var(--accent-dark); border: 1px solid rgba(246,149,32,.3); }
.badge--starter     { background: #e8f0d0; color: var(--primary-dark); }
.badge--popular     { background: var(--accent); color: #fff; }
.badge--value       { background: var(--secondary); color: #fff; }
.badge--bestseller  { background: var(--accent); color: #fff; }
.badge--healthy     { background: #c8e6c9; color: #2e7d32; }
.badge--protein     { background: #e3f2fd; color: #1565c0; }
.badge--lowcal      { background: #fce4ec; color: #c62828; }
.badge--spicy       { background: #fff3e0; color: #e65100; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  border-radius: 100px; padding: 13px 28px;
  border: 2px solid transparent; transition: all .22s ease; white-space: nowrap;
  cursor: pointer; text-align: center;
}
.btn--cta {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
  box-shadow: 0 4px 18px rgba(195,85,48,.35);
}
.btn--cta:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(195,85,48,.45); }
.btn--outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--outline-green {
  background: transparent; color: var(--primary); border-color: var(--border);
}
.btn--outline-green:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--white {
  background: #fff; color: var(--secondary); border-color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn--white:hover { background: var(--bg-beige); transform: translateY(-2px); }
.btn--lg  { padding: 16px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Required / Error ── */
.required { color: var(--secondary); }
.form-error { font-size: .78rem; color: var(--secondary); display: none; margin-top: 4px; }
.form-error.visible { display: block; }
.is-error { border-color: var(--secondary) !important; }

/* ── Privacy trigger button ── */
.privacy-trigger {
  background: none; border: none; padding: 0;
  color: var(--primary); text-decoration: underline;
  font-size: inherit; font-family: inherit; cursor: pointer;
}
.privacy-trigger:hover { color: var(--primary-dark); }

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: box-shadow .2s;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.navbar__logo  { height: 40px; width: 40px; object-fit: contain; }
.navbar__links { display: flex; align-items: center; gap: 28px; }
.navbar__links a { font-size: .88rem; font-weight: 500; color: var(--text-body); transition: color .18s; }
.navbar__links a:hover { color: var(--primary); }
.navbar__cta { padding: 10px 22px; font-size: .85rem; }
.navbar__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .22s; }
.navbar__mobile {
  padding: 16px 24px 20px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  flex-direction: column; gap: 12px;
  /* display dikendalikan sepenuhnya oleh JS via hidden attribute */
  display: none;
}
/* Saat JS menghapus [hidden], tampilkan sebagai flex */
.navbar__mobile:not([hidden]) {
  display: flex;
}
.navbar__mobile-link { font-size: .95rem; font-weight: 500; color: var(--text-body); padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.navbar__mobile-link:hover { color: var(--primary); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, #2A3C22 0%, #3d5226 55%, #5a6e35 100%);
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 50%; pointer-events: none; opacity: .08;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--primary-light);
  bottom: 0; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-20px) scale(1.05); }
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
  padding-bottom: 72px;
}
/* Left copy */
.hero__copy { padding-top: 8px; }
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900; line-height: 1.15; color: #fff;
  margin: 14px 0 20px;
}
.hero__sub { font-size: .97rem; color: rgba(255,255,255,.78); max-width: 460px; margin-bottom: 28px; }
.hero__sub strong { color: var(--accent); font-weight: 600; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .8rem; font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hero__proof {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md); padding: 14px 18px; max-width: 360px;
  font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 32px;
}
.hero__proof strong { color: #fff; }
.hero__avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .78rem; margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

/* Hero form card */
.hero__form-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  padding: 36px 32px; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
/* Promo banner */
.promo-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(90deg, rgba(246,149,32,.12), rgba(195,85,48,.08));
  border: 1.5px solid rgba(246,149,32,.4); border-radius: var(--radius-md);
  padding: 14px 16px; margin-bottom: 24px;
}
.promo-banner__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.promo-banner__title { font-size: .84rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.promo-banner__discount { font-size: .82rem; color: var(--text-muted); }
.promo-banner__discount strong { color: var(--secondary); font-weight: 700; font-size: .9rem; }
/* Form header */
.form-card__eyebrow { font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--secondary); margin-bottom: 8px; }
.form-card__title { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 8px; }
.form-card__sub { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
/* Slot counter */
.slot-counter { margin-bottom: 22px; }
.slot-counter__bar { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 6px; }
.slot-counter__fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 99px; transition: width .8s ease; }
.slot-counter__label { font-size: .78rem; color: var(--text-muted); }
.slot-counter__label strong { color: var(--secondary); }
/* Form groups */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group label { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--text); }
.form-group input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .93rem; color: var(--text);
  background: var(--bg-warm); outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(103,115,51,.14); background: #fff; }
/* Input prefix @  */
.input-prefix-wrap { display: flex; align-items: stretch; }
.input-prefix {
  display: flex; align-items: center; padding: 0 14px;
  background: var(--border-light); border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; color: var(--text-muted); font-size: .95rem;
}
.input-prefix-wrap input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
/* Privacy */
.form-privacy { font-size: .74rem; color: var(--text-muted); text-align: center; line-height: 1.55; margin-top: 12px; }
/* Success */
.form-success { text-align: center; padding: 12px 0; }
.form-success__icon { font-size: 3rem; margin-bottom: 12px; animation: bounceIn .5s ease; }
.form-success h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.form-success p { font-size: .88rem; color: var(--text-muted); margin-bottom: 22px; }
@keyframes bounceIn { 0%{transform:scale(.5);opacity:0} 70%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
/* Hero wave */
.hero__wave { position: relative; bottom: -2px; z-index: 3; margin-top: 0; }
.hero__wave svg { width: 100%; height: 70px; display: block; }

/* ════════════════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════════════════ */
.problem__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.problem-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: transform .22s, box-shadow .22s;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.problem-card__icon { font-size: 2.8rem; margin-bottom: 18px; }
.problem-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.problem-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   SOLUTION SECTION
   ════════════════════════════════════════════════════ */
.solution__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.solution-card {
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .22s, box-shadow .22s;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.solution-card__icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: #fff; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); padding: 10px;
}
.solution-card__icon img { width: 44px; height: 44px; object-fit: contain; }
.solution-card h3 { font-family: var(--font-head); font-size: .98rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.solution-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════
   BENEFIT SECTION
   ════════════════════════════════════════════════════ */
.benefit__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.benefit__image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); object-fit: cover; }
.benefit__content .section-eyebrow { margin-bottom: 12px; }
.benefit__content h2 { font-family: var(--font-head); font-size: clamp(1.7rem,2.6vw,2.2rem); font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.benefit__lead { font-size: .95rem; color: var(--text-muted); margin-bottom: 28px; }
.benefit__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.benefit__list li { display: flex; align-items: flex-start; gap: 14px; }
.benefit__list img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.benefit__list strong { display: block; font-size: .92rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.benefit__list p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════ */
.how__timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.how-step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
}
.how-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.how-step__num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(103,115,51,.3);
}
.how-step__body h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.how-step__body p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }
.how__arrow {
  flex-shrink: 0;
  margin-top: 56px;
  opacity: .6;
}

/* ════════════════════════════════════════════════════
   PRICING SECTION
   ════════════════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column; gap: 0;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(103,115,51,.18);
}
.pricing-card--featured:hover { box-shadow: 0 16px 48px rgba(103,115,51,.25); }
.pricing-card__badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px; align-self: flex-start;
}
.pricing-card__name {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.pricing-card__detail {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card__price {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
}
.price-per {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.price-per small { font-size: .75rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.price-total { font-size: .84rem; color: var(--text-muted); }
.price-total strong { color: var(--text); font-weight: 700; }
.pricing-card--featured .price-per { color: var(--secondary); }
.pricing-card__benefits {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.pricing-card__benefits li {
  font-size: .84rem; color: var(--text-body);
  display: flex; align-items: flex-start; gap: 8px;
}

/* Add-ons */
.addon__section { margin-top: 8px; }
.addon__title {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
}
.addon__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.addon-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.addon-card__info h4 { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.addon-card__info p  { font-size: .8rem; color: var(--text-muted); }
.addon-card__price {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 900;
  color: var(--primary); white-space: nowrap; flex-shrink: 0;
}
.addon-card__price small { font-size: .7rem; font-weight: 400; color: var(--text-muted); }
.pricing__disclaimer { font-size: .76rem; color: var(--text-muted); font-style: italic; margin-top: 8px; }

/* ════════════════════════════════════════════════════
   MENU PREVIEW
   ════════════════════════════════════════════════════ */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.menu-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.menu-card__img-wrap { position: relative; overflow: hidden; height: 200px; }
.menu-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card__img-wrap img { transform: scale(1.05); }
.menu-card__badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-head); font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.menu-card__body { padding: 20px; }
.menu-card__category {
  font-size: .72rem; font-weight: 600; font-family: var(--font-head);
  color: var(--primary); text-transform: uppercase;
  letter-spacing: .07em; display: block; margin-bottom: 6px;
}
.menu-card__body h3 {
  font-family: var(--font-head);
  font-size: .98rem; font-weight: 800; color: var(--text);
  margin-bottom: 8px;
}
.menu-card__body p { font-size: .81rem; color: var(--text-muted); line-height: 1.6; }

/* CTA card in menu grid */
.menu-card--cta {
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  border-color: transparent; display: flex;
  align-items: center; justify-content: center;
}
.menu-card__more { text-align: center; padding: 32px 24px; }
.menu-card__more-icon { font-size: 2.8rem; display: block; margin-bottom: 16px; }
.menu-card__more h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.menu-card__more p { font-size: .84rem; color: rgba(255,255,255,.75); margin-bottom: 22px; line-height: 1.6; }
.menu-card--cta .btn--cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.menu-card--cta .btn--cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* Bottom CTA */
.menu__bottom-cta {
  text-align: center;
  background: var(--bg-warm);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.menu__bottom-cta h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.menu__bottom-cta p  { font-size: .9rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }

/* ════════════════════════════════════════════════════
   SOCIAL PROOF
   ════════════════════════════════════════════════════ */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.proof-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: background .22s;
}
.proof-card:hover { background: rgba(255,255,255,.12); }
.proof-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.proof-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.proof-card p  { font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.65; }
.proof__team { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.proof__team img { width: 100%; height: 360px; object-fit: cover; object-position: center top; }

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq__container { max-width: 760px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--text); text-align: left; cursor: pointer;
  transition: color .18s;
}
.faq-item__q:hover { color: var(--primary); }
.faq-item__q[aria-expanded="true"] { color: var(--primary); }
.faq-item__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--bg-warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400; transition: transform .25s;
  color: var(--primary);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { padding: 0 24px; }
.faq-item__a:not([hidden]) { padding: 0 24px 20px; }
.faq-item__a p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   CLOSING CTA
   ════════════════════════════════════════════════════ */
.section--cta-closing {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
}
.section--cta-closing::before {
  content: ''; position: absolute; inset: 0;
  background: url("BRAND PATTERN.png") repeat;
  background-size: 280px; opacity: .04; pointer-events: none;
}
.cta-closing__inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.cta-closing__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900;
  color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.cta-closing__inner p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer { background: var(--bg-green); padding: 72px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { height: 52px; width: 52px; object-fit: contain; margin-bottom: 14px; }
.footer__tagline {
  font-family: var(--font-head); font-size: .88rem; font-weight: 700;
  color: rgba(255,255,255,.85); font-style: italic; margin-bottom: 10px;
}
.footer__desc { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: .86rem; color: rgba(255,255,255,.62); transition: color .18s; }
.footer__nav a:hover { color: var(--accent); }
.footer__contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li a {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; color: rgba(255,255,255,.62); transition: color .18s;
}
.footer__contact li a:hover { color: var(--accent); }
.footer__privacy-link {
  display: inline-block; margin-top: 14px;
  font-size: .82rem; color: rgba(255,255,255,.38);
  background: none; border: none; cursor: pointer;
  text-decoration: underline; font-family: var(--font-body);
  transition: color .18s;
}
.footer__privacy-link:hover { color: rgba(255,255,255,.7); }
.footer__bottom { padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }

/* ════════════════════════════════════════════════════
   MODALS
   ════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(26,40,18,.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: overlayIn .2s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalUp .28s cubic-bezier(.16,1,.3,1);
}
@keyframes modalUp {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal__close {
  position: absolute; top: 18px; right: 20px;
  background: var(--bg-warm); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 1.2rem; line-height: 1;
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.modal__close:hover { background: var(--border); }
.modal__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1rem; color: var(--text); margin-bottom: 20px;
}
.modal__logo img { width: 40px; height: 40px; object-fit: contain; }
.modal h2 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.modal__date { font-size: .76rem; color: var(--text-muted); margin-bottom: 24px; }
.modal__body h3 { font-family: var(--font-head); font-size: .88rem; font-weight: 800; color: var(--text); margin: 20px 0 6px; }
.modal__body h3:first-child { margin-top: 0; }
.modal__body p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }
.modal__body a { color: var(--primary); text-decoration: underline; }
.modal > .btn { margin-top: 28px; }

/* Thank You modal */
.modal--thankyou { text-align: center; }
.thankyou__icon { font-size: 4rem; margin-bottom: 12px; animation: bounceIn .5s ease; }
.modal--thankyou h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.modal--thankyou p { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; }
.thankyou__actions { display: flex; flex-direction: column; gap: 12px; }

/* ════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 960px
   ════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-py: 72px; }

  /* Navbar */
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { text-align: center; }
  .hero__badges, .hero__proof { justify-content: center; }
  .hero__proof { margin: 0 auto 28px; }
  .hero__form-card { max-width: 560px; margin: 0 auto; }

  /* Benefit */
  .benefit__inner { grid-template-columns: 1fr; gap: 48px; }
  .benefit__image { order: -1; }

  /* How */
  .how__timeline { flex-direction: column; align-items: center; }
  .how-step { max-width: 100%; width: 100%; }
  .how__arrow { transform: rotate(90deg); margin: 0; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }
  .addon__grid   { grid-template-columns: 1fr; }

  /* Menu */
  .menu__grid { grid-template-columns: repeat(2, 1fr); }

  /* Proof */
  .proof__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 600px
   ════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-py: 56px; }

  .navbar__logo { height: 34px; width: 34px; }
  .hero { padding-top: 60px; }
  .hero__headline { font-size: 1.75rem; }
  .hero__form-card { padding: 24px 18px; }
  .promo-banner { flex-direction: column; gap: 8px; }

  .problem__grid  { grid-template-columns: 1fr; }
  .solution__grid { grid-template-columns: 1fr; }
  .menu__grid     { grid-template-columns: 1fr; }

  .modal { padding: 28px 20px; }
  .thankyou__actions { gap: 10px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }

  .cta-closing__inner h2 { font-size: 1.55rem; }
  .btn--lg { padding: 14px 28px; font-size: .92rem; }
}

/* ════════════════════════════════════════════════════
   UTILITY — Lazy load fade-in
   ════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
