:root {
  --teal: #0f4c4f;
  --teal-dark: #093538;
  --green: #dceee6;
  --green-soft: #f2faf6;
  --gold: #c99b42;
  --ink: #173133;
  --muted: #5f7476;
  --line: #d9e8e2;
  --white: #fff;
  --shadow: 0 18px 44px rgba(12, 55, 57, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.no-select { user-select: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 850px; }
.section { padding: 78px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; gap: 22px; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--teal); }
.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 20px; font-weight: 700; font-size: .94rem; }
.nav-menu a:hover { color: var(--gold); }
.nav-toggle { display: none; margin-left: auto; background: var(--green); border: 0; width: 44px; height: 44px; border-radius: 6px; font-size: 1.4rem; }
.order-btn, .primary-btn, .claim-btn, .package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 7px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.order-btn, .primary-btn, .package-btn { background: var(--teal); color: white; box-shadow: 0 12px 24px rgba(15, 76, 79, .2); }
.claim-btn { background: var(--gold); color: var(--teal-dark); }
.order-btn:hover, .primary-btn:hover, .claim-btn:hover, .package-btn:hover { transform: translateY(-2px); }
.nav-cta { min-height: 42px; padding: 9px 18px; }
.hero { background: linear-gradient(135deg, var(--green-soft), #fff 52%, #fff8eb); padding-top: 56px; }
.hero-grid, .split, .ingredient-layout, .faq-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: .78rem; }
h1, h2, h3 { color: var(--teal-dark); line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.18rem; }
.hero-text { font-size: 1.1rem; color: var(--muted); max-width: 680px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.badges span { padding: 8px 12px; background: white; border: 1px solid var(--line); border-radius: 999px; color: var(--teal); font-weight: 700; font-size: .9rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.urgency { color: var(--teal); font-weight: 800; margin-top: 18px; }
.hero-media { position: relative; padding: 22px; }
.hero-media img { margin: 0 auto; filter: drop-shadow(0 24px 26px rgba(9, 53, 56, .18)); }
.media-note { position: absolute; right: 0; bottom: 38px; max-width: 230px; background: var(--teal); color: white; padding: 14px 16px; border-radius: 8px; font-weight: 800; box-shadow: var(--shadow); }
.intro { background: white; }
.split-section, .ingredients, .reviews { background: var(--green-soft); }
.check-list { display: grid; gap: 12px; margin-top: 22px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list span, .ingredient-grid span {
  background: white;
  border: 1px solid var(--line);
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.check-list span::before { content: "✓ "; color: var(--gold); }
.product-lifestyle { margin: 0 auto; filter: drop-shadow(0 22px 24px rgba(15, 76, 79, .16)); }
.section-head { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article, .steps article, .price-card, .review-grid article, .cta-box, .info-grid article, .facts-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.benefit-grid article { min-height: 150px; padding: 22px; display: grid; align-content: start; gap: 12px; }
.benefit-grid img, .benefit-grid span { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: grid; place-items: center; color: var(--teal); font-weight: 900; }
.benefit-grid img { padding: 6px; object-fit: contain; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps article { padding: 26px; }
.steps b { display: grid; place-items: center; width: 42px; height: 42px; background: var(--teal); color: white; border-radius: 50%; margin-bottom: 16px; }
.ingredient-layout { align-items: start; }
.ingredient-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 0 28px; }
.small-note { color: var(--muted); font-size: .94rem; }
.facts-card { padding: 24px; position: sticky; top: 96px; }
.facts-card hr { border: 0; border-top: 4px solid var(--teal); margin: 14px 0; }
.facts-card img { margin: 18px auto 0; max-height: 360px; object-fit: contain; }
.info-band { background: var(--teal); color: white; }
.info-band h3 { color: white; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-grid article { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.2); padding: 24px; box-shadow: none; }
.pricing { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 26px; text-align: center; overflow: hidden; }
.price-card.featured { border: 3px solid var(--gold); transform: translateY(-12px); }
.price-card img { margin: 8px auto 18px; max-height: 250px; object-fit: contain; }
.price-card strong { display: block; font-size: 2rem; color: var(--teal); margin: 8px 0; }
.ribbon { position: absolute; top: 16px; right: -42px; transform: rotate(35deg); background: var(--gold); padding: 8px 48px; font-weight: 900; color: var(--teal-dark); }
.guarantee { background: linear-gradient(135deg, var(--teal), #17686a); color: white; text-align: center; }
.guarantee h2 { color: white; }
.guarantee .eyebrow { color: #f3d38f; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-grid article { padding: 24px; }
.review-grid img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.review-grid span { display: block; color: var(--muted); }
.stars { color: var(--gold); font-weight: 900; margin-bottom: 10px; }
.center { text-align: center; }
.faq-layout { align-items: start; grid-template-columns: 1.2fr .8fr; }
details { background: white; border: 1px solid var(--line); border-radius: 8px; margin: 10px 0; padding: 15px 18px; }
summary { cursor: pointer; font-weight: 800; color: var(--teal-dark); }
.cta-box { padding: 28px; text-align: center; position: sticky; top: 96px; }
.cta-box img { margin: 8px auto 22px; }
.site-footer { background: var(--teal-dark); color: white; padding: 34px 0 84px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.footer-links button { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); padding: 10px 12px; border-radius: 6px; cursor: pointer; }
.mobile-sticky-cta { display: none; position: fixed; z-index: 45; left: 12px; right: 12px; bottom: 12px; background: var(--gold); color: var(--teal-dark); text-align: center; padding: 14px; border-radius: 8px; font-weight: 900; box-shadow: var(--shadow); }
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(2, 24, 26, .72); }
.modal.is-open { display: grid; }
.modal-card { position: relative; width: min(650px, 100%); max-height: 88vh; overflow: auto; background: white; border-radius: 8px; padding: 30px; box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.modal-close { position: absolute; right: 14px; top: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--green); color: var(--teal); font-size: 1.6rem; cursor: pointer; }
.exit-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
.exit-card img { max-height: 260px; object-fit: contain; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; left: 16px; right: 16px; top: 72px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); padding: 16px; border-radius: 8px; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .nav-cta { display: none; }
  .hero-grid, .split, .ingredient-layout, .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .benefit-grid, .price-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .info-grid { grid-template-columns: 1fr; }
  .facts-card, .cta-box { position: static; }
  .price-card.featured { transform: none; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding-top: 32px; }
  .hero-actions, .hero-actions a { width: 100%; }
  .badges span { width: 100%; }
  .two-col, .ingredient-grid, .benefit-grid, .price-grid, .review-grid { grid-template-columns: 1fr; }
  .media-note { position: static; margin: 12px auto 0; max-width: none; }
  .exit-card { grid-template-columns: 1fr; text-align: center; }
  .exit-card img { margin: 0 auto; }
  .mobile-sticky-cta { display: block; }
  h1 { font-size: 2.2rem; }
}
