/* ============================================================
   BilWell — stylesheet
   Architecture: BEM + utility helpers
   Token family: --tone-main / --tone-support / --tone-cta
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Greens — light + saturated + dark */
  --tone-main:        #2f7d4a;   /* primary green */
  --tone-main-dark:   #1f5a34;   /* deep forest */
  --tone-support:     #7cc28d;   /* fresh leaf */
  --tone-support-soft:#cfe8d6;   /* mint wash */
  --tone-cta:         #3aa05e;   /* button green */
  --tone-cta-hover:   #277e47;

  --bg-page:          #f8fbf6;   /* near-white green tint */
  --bg-card:          #ffffff;
  --bg-soft:          #edf6ef;   /* soft section bg */
  --bg-band:          #e7f4ec;

  --ink-strong:       #112418;
  --ink-body:         #34433a;
  --ink-muted:        #5b6a60;
  --ink-soft:         #8a978f;

  --line:             #d9e8dd;
  --line-soft:        #e9f1eb;

  --shadow-sm:        0 1px 2px rgba(31, 90, 52, 0.06);
  --shadow-md:        0 8px 24px rgba(31, 90, 52, 0.08);
  --shadow-lg:        0 18px 48px rgba(31, 90, 52, 0.12);

  /* Spacing rhythm */
  --gap-1:  6px;
  --gap-2:  12px;
  --gap-3:  18px;
  --gap-4:  24px;
  --gap-5:  36px;
  --gap-6:  56px;
  --gap-7:  84px;

  /* Radius scale */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --ff-display: 'PT Serif', Georgia, 'Times New Roman', serif;
  --ff-body:    'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container-max: 1180px;
}

/* ---------- RESET & BASE ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink-body);
  background: var(--bg-page);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--tone-main); text-decoration: none; }
a:hover { color: var(--tone-main-dark); text-decoration: underline; }
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  color: var(--ink-strong);
  margin: 0 0 var(--gap-3);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 var(--gap-3); }

button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tone-main);
  background: var(--bg-band);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--gap-3);
}
.eyebrow--center { display: inline-block; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--gap-3);
}
.section-title--sm { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 720px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn--primary {
  background: var(--tone-cta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(58, 160, 94, 0.32);
}
.btn--primary:hover {
  background: var(--tone-cta-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(58, 160, 94, 0.42);
}
.btn--ghost {
  background: transparent;
  color: var(--tone-main-dark);
  border-color: var(--tone-main);
}
.btn--ghost:hover {
  background: var(--bg-band);
  color: var(--tone-main-dark);
}
.btn--sm  { padding: 9px 18px; font-size: 0.88rem; }
.btn--lg  { padding: 16px 28px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 251, 246, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 90;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand__icon svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink-strong);
}
.brand__tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tone-main);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav__link {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-body);
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.site-nav__link:hover {
  background: var(--bg-band);
  color: var(--tone-main-dark);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 8px 22px 22px;
  gap: 4px;
  background: var(--bg-page);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-drawer a {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  color: var(--ink-body);
  font-weight: 500;
}
.mobile-drawer a:hover { background: var(--bg-band); text-decoration: none; }
.mobile-drawer.is-open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 12% 0%, var(--bg-band) 0%, transparent 38%),
    radial-gradient(circle at 92% 100%, var(--tone-support-soft) 0%, transparent 42%),
    var(--bg-page);
  padding: var(--gap-7) 0 var(--gap-6);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: var(--gap-6);
}
.hero__content { max-width: 580px; }
.hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: var(--gap-4);
}
.hero__title em {
  font-style: italic;
  color: var(--tone-main);
  font-weight: 700;
}
.hero__lede {
  font-size: 1.08rem;
  color: var(--ink-muted);
  margin-bottom: var(--gap-4);
}

.hero__bullets { margin: 0 0 var(--gap-4); }
.hero__bullets li {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0;
  color: var(--ink-body);
  font-weight: 500;
}
.hero__bullets .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--tone-support);
  box-shadow: 0 0 0 4px var(--bg-band);
  flex-shrink: 0;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: var(--gap-5);
}

.hero__trust-strip {
  display: flex;
  gap: var(--gap-4);
  flex-wrap: wrap;
  padding-top: var(--gap-3);
  border-top: 1px dashed var(--line);
}
.trust-item {
  display: flex; flex-direction: column;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.trust-item strong {
  font-family: var(--ff-display);
  color: var(--ink-strong);
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-band);
}
.hero__media-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 32px;
  background: #fff;
  padding: 16px 22px 16px 32px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero__badge-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--tone-main);
  font-weight: 700;
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.25;
}

/* ---------- EDU SECTION ---------- */
.edu { padding: var(--gap-7) 0; }
.edu__head { text-align: center; max-width: 720px; margin: 0 auto var(--gap-6); }
.edu__head .section-lede { margin: 0 auto; }
.edu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-3);
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: left;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--tone-support);
}
.info-card__icon {
  width: 48px; height: 48px;
  background: var(--bg-band);
  color: var(--tone-main-dark);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.info-card p { color: var(--ink-muted); font-size: 0.94rem; margin: 0; }

/* ---------- AUDIENCE ---------- */
.audience {
  padding: var(--gap-6) 0;
  background: var(--bg-soft);
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--gap-6);
  align-items: center;
}
.audience__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.audience__media img { width: 100%; height: 100%; object-fit: cover; }

.check-list { margin: 0 0 var(--gap-4); }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-weight: 500;
  color: var(--ink-body);
  border-bottom: 1px dashed var(--line-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  background: var(--tone-support-soft);
  border-radius: 50%;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--tone-main-dark);
  border-bottom: 2px solid var(--tone-main-dark);
  transform: rotate(-45deg);
}
.check-list--green li::before { background: var(--tone-support); }

/* ---------- PRODUCT ---------- */
.product { padding: var(--gap-7) 0; }
.product__head { text-align: center; max-width: 720px; margin: 0 auto var(--gap-5); }
.product__head .section-lede { margin: 0 auto; }
.product__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-6);
  align-items: center;
  background:
    linear-gradient(135deg, var(--bg-band) 0%, var(--bg-card) 60%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--gap-5);
}
.product__media { position: relative; text-align: center; }
.product__media img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 22px 36px rgba(31, 90, 52, 0.18));
}
.product__price-tag {
  position: absolute;
  bottom: 8px; right: 8px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex; flex-direction: column;
  border-left: 4px solid var(--tone-cta);
}
.product__price-tag span { font-size: 0.75rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.product__price-tag strong {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--tone-main-dark);
  line-height: 1;
  margin: 4px 0 2px;
}
.product__price-tag small { font-size: 0.78rem; color: var(--ink-muted); }

.product__subtitle {
  font-size: 1.05rem;
  margin-top: var(--gap-4);
  margin-bottom: var(--gap-2);
  color: var(--tone-main-dark);
}
.product__subtitle:first-child { margin-top: 0; }

.product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--gap-3);
}
.spec {
  display: flex; flex-direction: column;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
}
.spec span { font-size: 0.78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.spec strong { font-family: var(--ff-display); color: var(--ink-strong); font-size: 1.08rem; margin-top: 2px; }

.product__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--gap-4);
  flex-wrap: wrap;
}
.product__cta-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ---------- ROUTINE ---------- */
.routine {
  padding: var(--gap-7) 0;
  background: var(--bg-soft);
}
.routine__head { text-align: center; max-width: 680px; margin: 0 auto var(--gap-5); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-3);
  margin-bottom: var(--gap-6);
}
.steps__item {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--r-lg);
  position: relative;
  border-top: 4px solid var(--tone-support);
  box-shadow: var(--shadow-sm);
}
.steps__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tone-main);
  background: var(--bg-band);
  width: 52px; height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 16px;
}
.steps__item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.steps__item p { color: var(--ink-muted); margin: 0; }

.routine__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-3);
}
.lifestyle-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.lifestyle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lifestyle-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.lifestyle-card__body { padding: 20px 22px; }
.lifestyle-card__body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--tone-main-dark); }
.lifestyle-card__body p { font-size: 0.92rem; color: var(--ink-muted); margin: 0; }

/* ---------- TRUST BAND ---------- */
.trust-band {
  background: var(--tone-main-dark);
  color: #fff;
  padding: var(--gap-5) 0;
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-4);
  text-align: center;
}
.trust-band__num {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--tone-support);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-band__label { font-size: 0.92rem; color: rgba(255,255,255,0.82); }

/* ---------- WELLNESS ---------- */
.wellness { padding: var(--gap-7) 0; }
.wellness__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-6);
  align-items: center;
}
.wellness__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.wellness__media img { width: 100%; height: 100%; object-fit: cover; }
.wellness__points {
  display: grid;
  gap: 14px;
  margin-top: var(--gap-4);
}
.wellness__point {
  background: var(--bg-band);
  padding: 16px 18px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--tone-main);
}
.wellness__point strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--ink-strong);
  margin-bottom: 4px;
}
.wellness__point span { font-size: 0.92rem; color: var(--ink-muted); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--gap-7) 0;
  background: var(--bg-soft);
}
.testimonials__head { text-align: center; max-width: 620px; margin: 0 auto var(--gap-5); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-3);
}
.review {
  background: var(--bg-card);
  padding: 30px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--tone-support-soft);
}
.review__stars {
  color: var(--tone-cta);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-body);
  margin-bottom: 18px;
  line-height: 1.55;
}
.review__person { display: flex; flex-direction: column; }
.review__person strong { color: var(--ink-strong); font-size: 1rem; }
.review__person span { font-size: 0.85rem; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq { padding: var(--gap-7) 0; }
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-6);
  align-items: start;
}
.faq__intro { position: sticky; top: 100px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--tone-support);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-body);
  font-size: 1.6rem;
  color: var(--tone-main);
  line-height: 1;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---------- ORDER FORM ---------- */
.order {
  padding: var(--gap-7) 0;
  background:
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-band) 100%);
}
.order__shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-5);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--gap-5);
  box-shadow: var(--shadow-md);
  align-items: start;
}
.order__intro .section-title { margin-bottom: var(--gap-3); }
.order__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: var(--gap-4) 0;
}
.order__hl {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 14px 12px;
  text-align: center;
}
.order__hl strong {
  font-family: var(--ff-display);
  display: block;
  font-size: 1.15rem;
  color: var(--tone-main-dark);
  margin-bottom: 2px;
}
.order__hl span { font-size: 0.78rem; color: var(--ink-muted); }
.order__guarantees li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--ink-body);
}

.order-form {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: var(--gap-4);
  border: 1px solid var(--line);
}
.order-form__title {
  font-size: 1.2rem;
  margin-bottom: var(--gap-3);
  color: var(--tone-main-dark);
}
.order-form__row { margin-bottom: 14px; }
.order-form__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.order-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-body);
  font-weight: 500;
}
.order-form input,
.order-form textarea,
.order-form select {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink-strong);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px var(--bg-band);
}
.order-form textarea { resize: vertical; min-height: 60px; }

.order-form__check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 16px 0;
}
.order-form__check input { width: auto; margin-top: 3px; }
.order-form__check a { color: var(--tone-main-dark); text-decoration: underline; }

.order-form__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 12px 0 0;
}

/* ---------- CONTACT BAND ---------- */
.contact-band {
  padding: var(--gap-6) 0;
  background: var(--tone-main-dark);
  color: #fff;
}
.contact-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-4);
  align-items: center;
}
.contact-band .section-title { color: #fff; }
.contact-band p { color: rgba(255,255,255,0.78); margin: 0; }
.contact-band__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-md);
  color: #fff;
  transition: background .2s, transform .2s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.14);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
}
.contact-card span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tone-support); }
.contact-card strong { font-family: var(--ff-display); font-size: 1.2rem; margin-top: 4px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #102018;
  color: rgba(255,255,255,0.72);
  padding: var(--gap-6) 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-4);
  padding-bottom: var(--gap-5);
}
.site-footer__brand .brand__name { color: #fff; }
.site-footer__brand .brand__tag { color: var(--tone-support); }
.site-footer__brand p { font-size: 0.92rem; margin-top: 14px; color: rgba(255,255,255,0.6); }
.site-footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: var(--ff-display);
}
.site-footer__col p, .site-footer__col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.site-footer__col a:hover { color: var(--tone-support); text-decoration: none; }
.footer-links li { padding: 4px 0; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--gap-3) 0;
  background: rgba(0,0,0,0.18);
}
.site-footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  margin: 4px 0;
}
.legal-note { font-size: 0.78rem !important; max-width: 920px; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  padding: 18px 22px;
  animation: slideUp .4s ease both;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--ff-display);
  color: var(--ink-strong);
  margin-bottom: 4px;
}
.cookie-banner__text p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
}
.cookie-banner[hidden] { display: none; }

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding: var(--gap-7) 0 var(--gap-6);
}
.legal-page__shell {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--gap-5) var(--gap-4);
}
.legal-page h1 {
  margin-bottom: var(--gap-2);
}
.legal-page__meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: var(--gap-4);
}
.legal-page h2 {
  font-size: 1.35rem;
  margin: var(--gap-4) 0 var(--gap-2);
  color: var(--tone-main-dark);
}
.legal-page p, .legal-page li { color: var(--ink-body); font-size: 0.98rem; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page li { padding: 4px 0; }
.legal-page a { color: var(--tone-main-dark); text-decoration: underline; }
.legal-page__back { margin-top: var(--gap-4); display: inline-block; }

/* ---------- SUCCESS PAGE ---------- */
.success {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, var(--bg-band) 0%, transparent 60%),
    var(--bg-page);
  padding: var(--gap-6) 0;
}
.success__shell {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--gap-5);
  box-shadow: var(--shadow-md);
}
.success__icon {
  width: 96px; height: 96px;
  margin: 0 auto var(--gap-3);
  background: var(--tone-support-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success__icon svg { width: 48px; height: 48px; color: var(--tone-main-dark); }
.success h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.success__lede { color: var(--ink-muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto var(--gap-4); }
.success__list {
  text-align: left;
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin-bottom: var(--gap-4);
}
.success__list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-body);
}
.success__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--tone-cta);
  font-weight: 700;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--gap-5); }
  .hero__media-frame { aspect-ratio: 5 / 4; max-width: 520px; margin: 0 auto; }
  .edu__grid { grid-template-columns: repeat(2, 1fr); }
  .routine__cards { grid-template-columns: repeat(2, 1fr); }
  .audience__grid,
  .wellness__grid,
  .product__layout,
  .order__shell,
  .faq__layout,
  .contact-band__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-4);
  }
  .faq__intro { position: static; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --gap-6: 44px; --gap-7: 60px; }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: var(--gap-6) 0 var(--gap-5); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .edu__grid { grid-template-columns: 1fr; }
  .routine__cards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .product__specs { grid-template-columns: 1fr; }
  .order__highlights { grid-template-columns: 1fr; }
  .order-form__row--double { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: var(--gap-3); }
  .contact-band__cards { grid-template-columns: 1fr; }
  .trust-band__grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
  .hero__badge { left: 12px; bottom: 12px; padding: 12px 16px; }
  .hero__badge-num { font-size: 1.6rem; }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .order-form { display: none !important; }
}
