*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #F4682A;
  --yellow:  #FBBD23;
  --green:   #4CAF72;
  --dark:    #1E1E1E;
  --mid:     #444;
  --light:   #F9F5EF;
  --white:   #FFFFFF;
  --radius:  14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 62px;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #d9531e; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 8px 5%;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--mid);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #999;
  text-align: center;
  padding: 36px 5%;
  font-size: 0.85rem;
}
footer a { color: #bbb; text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }

/* ── PAGE HEADER (legal pages) ── */
.page-header {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
  padding: 64px 5% 48px;
  text-align: center;
}
.page-header .label {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 12px;
}
.page-header .meta {
  font-size: 0.9rem;
  color: #999;
}

/* ── POLICY CONTENT (legal pages) ── */
.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}
.policy-wrap h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2.4em 0 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--light);
}
.policy-wrap p {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1em;
}
.policy-wrap ul {
  list-style: none;
  margin: 0.5em 0 1em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-wrap ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.6;
}
.policy-wrap ul li::before {
  content: "•";
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.policy-wrap a { color: var(--orange); text-decoration: none; }
.policy-wrap a:hover { text-decoration: underline; }

/* ── CONTACT FORM (contact page) ── */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 5% 80px;
}
.contact-form {
  background: var(--white);
  border: 1.5px solid #EEE;
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.2px;
}
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  color: var(--dark);
  background: var(--light);
  border: 1.5px solid #EEE;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #999; }
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-submit {
  align-self: flex-start;
  border: none;
  font-family: inherit;
}
.form-submit:disabled { opacity: 0.6; cursor: progress; transform: none; box-shadow: none; }
.form-note {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 4px;
}
.form-note a { color: var(--orange); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 48px 32px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
}
.form-success h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.form-success p { font-size: 0.975rem; color: var(--mid); line-height: 1.7; }
.form-success a { color: var(--orange); text-decoration: none; }
.form-success a:hover { text-decoration: underline; }

/* ── SECTIONS (index) ── */
section { padding: 80px 5%; }
.container { max-width: 1000px; margin: 0 auto; }

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
  text-align: center;
  padding: 100px 5% 80px;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
#hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--dark);
}
#hero h1 span { color: var(--orange); }
#hero p {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 36px;
}
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--orange); border: 2px solid var(--orange); margin-left: 12px; }
.hero-note { margin-top: 16px; font-size: 0.85rem; color: #999; }

/* ── STAT BANNER ── */
#stat {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 60px 5%;
}
#stat h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 16px; }
#stat p { font-size: 1.1rem; opacity: 0.9; max-width: 620px; margin: 0 auto; }

/* ── HOW IT WORKS ── */
#how { background: var(--white); }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 52px;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.step {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--mid); font-size: 0.95rem; }

/* ── FAMILY ── */
#family { background: var(--light); }
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.family-grid .section-sub { margin-bottom: 28px; }
.family-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.family-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
  color: var(--mid);
}
.perk-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
}
.family-visual {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fridge-item {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.fridge-item .name { font-weight: 700; font-size: 0.95rem; }
.fridge-item .loc { font-size: 0.8rem; color: #999; margin-top: 2px; }
.fridge-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}
.badge-red { background: #FDECEA; color: #C0392B; }
.badge-yellow { background: #FFF8E1; color: #E67E22; }
.badge-green { background: #E8F5E9; color: #27AE60; }

/* ── FEATURES ── */
#features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  border: 1.5px solid #EEE;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(244,104,42,0.1); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--mid); }

/* ── PRICING ── */
#pricing { background: var(--light); text-align: center; }
#pricing .section-title { margin-bottom: 8px; }
#pricing .section-sub { margin: 0 auto 48px; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 820px; margin: 0 auto; }
.plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 2px solid transparent;
  text-align: left;
  position: relative;
}
.plan.featured { border-color: var(--orange); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); margin-bottom: 10px; }
.plan-price { font-size: 2.6rem; font-weight: 900; color: var(--dark); letter-spacing: -1px; line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--mid); }
.plan-desc { font-size: 0.9rem; color: var(--mid); margin: 12px 0 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--mid); }
.plan-features li::before { content: "✓"; color: var(--green); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; display: block; }

/* ── FAQ ── */
#faq { background: var(--white); }
#faq .section-sub { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.faq-item {
  border: 1.5px solid #EEE;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--dark);
}
.faq-q .chevron {
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── FINAL CTA ── */
#cta {
  background: linear-gradient(135deg, var(--orange) 0%, #E8501E 100%);
  text-align: center;
  color: var(--white);
  padding: 100px 5%;
}
#cta h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
#cta p { font-size: 1.1rem; opacity: 0.9; max-width: 500px; margin: 0 auto 36px; }
#cta .btn-primary { background: var(--white); color: var(--orange); }
#cta .hero-note { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .family-grid { grid-template-columns: 1fr; gap: 36px; }
  .family-visual { order: -1; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
  #hero .btn { display: block; width: 100%; max-width: 320px; margin: 0 auto 10px; }
}
