/* ==========================================================
   TonWell — Style.css
   Architecture: BEM + utility helpers
   Variables: --tone-* family
   Palette: Dark Navy · Rich Teal · Pastel Blue
   Fonts: Playfair Display + Source Sans 3
   ========================================================== */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  /* Tone palette */
  --tone-main:        #1a2f5e;
  --tone-main-deep:   #0f1e40;
  --tone-main-mid:    #243e78;
  --tone-support:     #4ab5d4;
  --tone-support-dim: #2d8aab;
  --tone-support-lt:  #a8dced;
  --tone-cta:         #2b8fd4;
  --tone-cta-hover:   #1e72b8;

  /* Pastel + neutral */
  --pastel-sky:   #d6ecf8;
  --pastel-mist:  #e8f4fb;
  --pastel-soft:  #f0f7fc;
  --white:        #ffffff;
  --text-dark:    #1a2535;
  --text-body:    #344056;
  --text-muted:   #6b7a96;
  --border-light: #cde3ef;

  /* Spacing scale */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.75rem;
  --sp-lg:   3rem;
  --sp-xl:   5rem;
  --sp-2xl:  7.5rem;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card:  0 4px 24px rgba(26,47,94,.10);
  --shadow-lift:  0 8px 40px rgba(26,47,94,.16);
  --shadow-deep:  0 16px 60px rgba(26,47,94,.22);

  /* Transition */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── BODY ─────────────────────────────────────────────────── */
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--tone-main);
  line-height: 1.22;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: 1.05rem; }

em { font-style: italic; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone-support);
  border-bottom: 2px solid var(--tone-support-lt);
  padding-bottom: 2px;
  margin-bottom: var(--sp-sm);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 2.1rem;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease), color .25s var(--ease), transform .18s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--tone-cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43,143,212,.35);
}
.btn--primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,143,212,.42);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
}
.btn--lg  { padding: 1.05rem 2.6rem; font-size: 1.08rem; }
.btn--full { width: 100%; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--tone-main-deep);
  color: #d6e8f6;
  padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar__text { flex: 1; font-size: .92rem; }
.cookie-bar__text a { color: var(--tone-support); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-bar__btn {
  padding: .55rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  transition: all .2s;
}
.cookie-bar__btn--outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: #c8e0f2;
  background: transparent;
}
.cookie-bar__btn--outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.cookie-bar__btn--fill {
  background: var(--tone-support);
  color: var(--tone-main-deep);
}
.cookie-bar__btn--fill:hover { background: var(--tone-support-dim); color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(15, 30, 64, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 181, 212, .12);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

.site-header__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo { display: flex; align-items: center; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__link {
  color: #b8d4e8;
  font-size: .95rem;
  font-weight: 400;
  transition: color .2s;
}
.site-header__link:hover { color: var(--tone-support); }
.site-header__cta {
  background: var(--tone-cta);
  color: #fff;
  padding: .5rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: .93rem;
  font-weight: 600;
  transition: background .2s, transform .18s;
}
.site-header__cta:hover { background: var(--tone-cta-hover); transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c8dff7;
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--tone-main-deep);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(74,181,212,.15);
}
.mobile-nav a {
  color: #c8dff7;
  padding: .65rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--tone-support); }
.mobile-nav.is-open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-block__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.hero-block__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 52, .92) 0%,
    rgba(15, 30, 80, .82) 45%,
    rgba(26, 47, 94, .55) 100%
  );
}
.hero-block__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 8rem 1.5rem 5rem;
  margin-left: max(5vw, 1.5rem);
  animation: heroFadeIn .9s var(--ease) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-block__badge {
  display: inline-block;
  background: rgba(74, 181, 212, .18);
  border: 1px solid rgba(74, 181, 212, .45);
  color: var(--tone-support-lt);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero-block__headline {
  color: #e8f4fc;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-block__headline em {
  color: var(--tone-support);
  font-style: italic;
}
.hero-block__sub {
  color: #b8d4e8;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}
.hero-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-block__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(200, 223, 247, .8);
  font-size: .87rem;
}
.hero-block__trust span { display: flex; align-items: center; gap: .35rem; }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--tone-main);
  padding: 2rem 0;
  border-bottom: 2px solid rgba(74, 181, 212, .15);
}
.trust-strip__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #c8dff7;
}
.trust-strip__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(74, 181, 212, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-support);
}
.trust-strip__icon svg { width: 22px; height: 22px; stroke: currentColor; }
.trust-strip__item strong { display: block; font-size: .95rem; color: #e8f4fc; }
.trust-strip__item span  { font-size: .82rem; color: rgba(200,223,247,.7); }

/* ── AWARENESS BLOCK ─────────────────────────────────────── */
.awareness-block {
  padding: var(--sp-xl) 0;
  background: var(--white);
}
.awareness-block__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.awareness-block__headline {
  margin-bottom: 1.2rem;
}
.awareness-block__text p {
  color: var(--text-body);
  margin-bottom: 1rem;
}
.awareness-block__note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--pastel-mist);
  border-left: 3px solid var(--tone-support);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.awareness-block__note svg { flex-shrink: 0; margin-top: 2px; stroke: var(--tone-support); }

.awareness-block__images {
  position: relative;
  height: 460px;
}
.awareness-block__img {
  border-radius: var(--r-lg);
  object-fit: cover;
}
.awareness-block__img--main {
  width: 75%;
  height: 82%;
  position: absolute;
  top: 0; right: 0;
  box-shadow: var(--shadow-lift);
}
.awareness-block__img--accent {
  width: 52%;
  height: 52%;
  position: absolute;
  bottom: 0; left: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

/* ── LIFESTYLE CARDS ─────────────────────────────────────── */
.lifestyle-block {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, var(--pastel-soft) 0%, var(--pastel-mist) 100%);
}
.lifestyle-block__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.lifestyle-block__intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-lg);
}
.lifestyle-block__intro h2 { margin-bottom: .75rem; }
.lifestyle-block__intro p { color: var(--text-muted); }

.lifestyle-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lifestyle-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.lifestyle-card__img-wrap {
  height: 185px;
  overflow: hidden;
}
.lifestyle-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.lifestyle-card:hover .lifestyle-card__img-wrap img { transform: scale(1.05); }

.lifestyle-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.lifestyle-card__icon {
  width: 40px;
  height: 40px;
  background: var(--pastel-sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  color: var(--tone-support-dim);
}
.lifestyle-card__icon svg { width: 20px; height: 20px; }
.lifestyle-card__body h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: var(--tone-main);
}
.lifestyle-card__body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── PRODUCT BLOCK ───────────────────────────────────────── */
.product-block {
  padding: var(--sp-xl) 0;
  background: var(--tone-main);
  position: relative;
  overflow: hidden;
}
.product-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,181,212,.12), transparent 70%);
  pointer-events: none;
}
.product-block__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.product-block__visual {
  position: relative;
  text-align: center;
}
.product-block__img-wrap {
  display: inline-block;
  position: relative;
}
.product-block__img-wrap img {
  max-height: 440px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.55));
  transition: transform .4s var(--ease);
}
.product-block__img-wrap:hover img { transform: scale(1.03) translateY(-6px); }

.product-block__badge-pill {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--tone-support);
  color: var(--tone-main-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 18px rgba(74,181,212,.4);
}

.product-block__info .section-label { color: var(--tone-support); }
.product-block__info h2 {
  color: #e8f4fc;
  margin: .5rem 0 1.1rem;
}
.product-block__info h2 em { color: var(--tone-support); }
.product-block__lead {
  color: #a8c8e0;
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.product-block__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.6rem;
}
.product-block__features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #c8dff7;
  font-size: 1rem;
}
.product-block__features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--tone-support);
}

.product-block__disclaimer {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(74,181,212,.2);
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
  font-size: .84rem;
  color: rgba(168, 200, 224, .8);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-block {
  padding: var(--sp-xl) 0;
  background: var(--white);
}
.reviews-block__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.reviews-block__intro {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--sp-lg);
}
.reviews-block__intro h2 { margin-top: .5rem; }

.reviews-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--pastel-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 1.8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.review-card--featured {
  background: var(--tone-main);
  border-color: rgba(74, 181, 212, .25);
}
.review-card--featured blockquote { color: #c8dff7; }
.review-card--featured .review-card__author strong { color: #e8f4fc; }
.review-card--featured .review-card__author span   { color: rgba(168,200,224,.7); }

.review-card__stars {
  color: #f0b323;
  font-size: 1.1rem;
  margin-bottom: .9rem;
  letter-spacing: .05em;
}
.review-card blockquote {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-card__author { display: flex; flex-direction: column; gap: .1rem; }
.review-card__author strong { font-size: .95rem; color: var(--tone-main); font-style: normal; }
.review-card__author span   { font-size: .82rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-block {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, var(--pastel-mist) 0%, var(--white) 100%);
}
.faq-block__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-block__intro {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.faq-block__intro h2 { margin-top: .5rem; }

.faq-block__list { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.is-open { box-shadow: var(--shadow-card); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  background: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--tone-main);
  text-align: left;
  gap: 1rem;
  transition: color .2s;
}
.faq-item__trigger:hover { color: var(--tone-support-dim); }
.faq-item.is-open .faq-item__trigger { color: var(--tone-cta); }

.faq-item__arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: transform .3s var(--ease), stroke .2s;
}
.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
  stroke: var(--tone-cta);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease);
}
.faq-item__body p {
  padding: 0 1.5rem 1.25rem;
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.68;
}
.faq-item__body a { color: var(--tone-cta); text-decoration: underline; }

/* ── ORDER BLOCK ─────────────────────────────────────────── */
.order-block {
  padding: var(--sp-xl) 0;
  background: var(--tone-main);
  position: relative;
  overflow: hidden;
}
.order-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,181,212,.1), transparent 70%);
  pointer-events: none;
}
.order-block__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.order-block__intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto var(--sp-lg);
}
.order-block__intro h2 {
  color: #e8f4fc;
  margin: .5rem 0 .9rem;
}
.order-block__intro h2 em { color: var(--tone-support); }
.order-block__intro p { color: #a8c8e0; }

.order-block__form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(74,181,212,.2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.order-summary__name  { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #e8f4fc; margin-bottom: .25rem; }
.order-summary__price { font-size: 2rem; font-weight: 700; color: var(--tone-support); margin-bottom: .3rem; }
.order-summary__note  { font-size: .85rem; color: rgba(168,200,224,.7); margin-bottom: 1.8rem; }

.order-form { display: flex; flex-direction: column; gap: 1.1rem; }
.order-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.order-form__field { display: flex; flex-direction: column; gap: .4rem; }
.order-form__field label {
  font-size: .88rem;
  font-weight: 600;
  color: #c8dff7;
  letter-spacing: .02em;
}
.order-form__field input,
.order-form__field select {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(74,181,212,.25);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem;
  color: #e8f4fc;
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.order-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ab5d4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.order-form__field select option { background: var(--tone-main); color: #e8f4fc; }
.order-form__field input::placeholder { color: rgba(168,200,224,.45); }
.order-form__field input:focus,
.order-form__field select:focus {
  border-color: var(--tone-support);
  background: rgba(74, 181, 212, .08);
}

.order-form__consent { display: flex; }
.order-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  cursor: pointer;
}
.order-form__checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--tone-support);
  border-radius: 3px;
  cursor: pointer;
}
.order-form__checkbox span {
  font-size: .88rem;
  color: rgba(168,200,224,.85);
  line-height: 1.5;
}
.order-form__checkbox a { color: var(--tone-support); text-decoration: underline; }

.order-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .84rem;
  color: rgba(168,200,224,.7);
  margin-top: .25rem;
}
.order-form__secure svg { stroke: var(--tone-support); }

/* ── SUPPORT BLOCK ───────────────────────────────────────── */
.support-block {
  padding: var(--sp-xl) 0;
  background: var(--white);
}
.support-block__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.support-block__card {
  background: var(--pastel-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.support-block__card svg { stroke: var(--tone-support); margin-bottom: .3rem; }
.support-block__card h3 { font-size: 1.05rem; color: var(--tone-main); }
.support-block__card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.55; }
.support-block__link {
  font-size: .9rem;
  color: var(--tone-cta);
  font-weight: 600;
  text-decoration: underline;
}
.support-block__link:hover { color: var(--tone-cta-hover); }
.support-block__hours { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--tone-main-deep);
  color: #a8c8e0;
  padding-top: 3rem;
}
.site-footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(74,181,212,.12);
}
.site-footer__brand p {
  font-size: .88rem;
  color: rgba(168,200,224,.7);
  margin-top: .75rem;
  max-width: 280px;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
}
.site-footer__nav a {
  font-size: .88rem;
  color: rgba(168,200,224,.8);
  transition: color .2s;
}
.site-footer__nav a:hover { color: var(--tone-support); }

.site-footer__legal {
  background: rgba(0,0,0,.2);
  padding: 1.5rem 0;
}
.site-footer__legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer__legal p {
  font-size: .78rem;
  color: rgba(168,200,224,.55);
  line-height: 1.6;
  margin-bottom: .4rem;
}
.site-footer__legal a { color: rgba(168,200,224,.7); text-decoration: underline; }

/* ── LEGAL PAGES SHARED ──────────────────────────────────── */
.legal-page {
  padding-top: 88px;
  min-height: 100vh;
  background: var(--white);
}
.legal-page__hero {
  background: var(--tone-main);
  padding: 3rem 1.5rem;
  text-align: center;
}
.legal-page__hero h1 { color: #e8f4fc; font-size: 2rem; margin-bottom: .5rem; }
.legal-page__hero p  { color: rgba(168,200,224,.8); font-size: .95rem; }
.legal-page__body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-page__body h2 {
  font-size: 1.3rem;
  color: var(--tone-main);
  margin: 2rem 0 .8rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--pastel-sky);
}
.legal-page__body p  { color: var(--text-body); margin-bottom: .9rem; font-size: .98rem; }
.legal-page__body ul { margin: .5rem 0 1rem 1.2rem; list-style: disc; }
.legal-page__body ul li { color: var(--text-body); font-size: .98rem; margin-bottom: .4rem; }
.legal-page__body a  { color: var(--tone-cta); text-decoration: underline; }
.legal-date { font-size: .85rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ── SUCCESS PAGE ────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tone-main-deep) 0%, var(--tone-main) 100%);
  padding: 2rem;
}
.success-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(74,181,212,.3);
  border-radius: var(--r-lg);
  padding: 3.5rem 3rem;
  max-width: 520px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.success-icon {
  width: 72px; height: 72px;
  background: rgba(74,181,212,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon svg { width: 36px; height: 36px; stroke: var(--tone-support); }
.success-card h1 { color: #e8f4fc; font-size: 1.8rem; margin-bottom: .75rem; }
.success-card p  { color: #a8c8e0; margin-bottom: 1.5rem; }
.success-card .btn { margin: 0 auto; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-strip__container { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-block__grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-block__grid    { grid-template-columns: repeat(2, 1fr); }
  .awareness-block__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .awareness-block__images    { height: 340px; }
  .product-block__container   { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .product-block__features    { text-align: left; }
  .product-block__disclaimer  { text-align: left; }
  .product-block__img-wrap img { max-height: 320px; }
}

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .site-header__burger { display: flex; }
  .trust-strip__container { grid-template-columns: 1fr 1fr; }
  .lifestyle-block__grid  { grid-template-columns: 1fr; }
  .reviews-block__grid    { grid-template-columns: 1fr; }
  .support-block__container { grid-template-columns: 1fr; }
  .order-form__row { grid-template-columns: 1fr; }
  .site-footer__container { flex-direction: column; gap: 1.5rem; }
  .hero-block__content { margin-left: 0; padding: 7rem 1.5rem 4rem; }
}

@media (max-width: 520px) {
  .trust-strip__container { grid-template-columns: 1fr; }
  .hero-block__actions { flex-direction: column; }
  .hero-block__trust    { flex-direction: column; gap: .5rem; }
  .order-block__form-wrap { padding: 1.5rem; }
}
