/* ==========================================================
   BIOLUX – styles
   Architecture: section-scoped semantic + utility helpers
   Token family: --tone-*, --ui-*, --brand-*
   ========================================================== */

:root {
  /* Color tokens */
  --tone-bg: #f4f8fc;
  --tone-bg-alt: #ffffff;
  --tone-surface: #ffffff;
  --tone-ink: #0b1f3a;
  --tone-ink-soft: #3a4a63;
  --tone-mute: #6b7a92;
  --tone-line: #e2ebf5;

  --brand-primary: #1e88e5;
  --brand-deep: #0b2545;
  --brand-mid: #134878;
  --brand-soft: #e8f3ff;
  --brand-accent: #00b8d4;
  --brand-warn: #f0b429;

  --ui-cta: #1e88e5;
  --ui-cta-hover: #1565c0;
  --ui-radius-sm: 8px;
  --ui-radius: 14px;
  --ui-radius-lg: 22px;
  --ui-shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --ui-shadow: 0 12px 32px rgba(11, 37, 69, 0.10);
  --ui-shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);

  /* Type */
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --gap-1: 6px;
  --gap-2: 12px;
  --gap-3: 20px;
  --gap-4: 32px;
  --gap-5: 48px;
  --gap-6: 72px;
  --gap-7: 96px;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--tone-ink);
  background: var(--tone-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--ui-cta-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--brand-deep);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
  line-height: 1.18;
}

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brand-primary);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
  background: rgba(232, 243, 255, 0.5);
}
.kicker--blue { color: var(--brand-deep); border-color: rgba(11, 37, 69, 0.12); background: rgba(11, 37, 69, 0.04); }
.kicker--light { color: #cfe6ff; border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); }

.section-title { font-size: clamp(28px, 3.4vw, 44px); }
.section-title--center { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--tone-ink-soft);
  font-size: 17px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--ui-radius);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-align: center;
  letter-spacing: .01em;
}
.btn--filled {
  background: var(--ui-cta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.28);
}
.btn--filled:hover {
  background: var(--ui-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 136, 229, 0.4);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border-color: var(--tone-line);
}
.btn--ghost:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.btn--white {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.btn--white:hover { background: var(--brand-soft); color: var(--brand-deep); }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

/* ============ HEADER ============ */
.site-top {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tone-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-deep);
}
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-deep);
  letter-spacing: -.01em;
}
.brand__name--light { color: #fff; }

.primary-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.primary-nav a {
  color: var(--tone-ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.primary-nav a:hover { color: var(--brand-primary); }
.primary-nav__cta {
  background: var(--ui-cta);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--ui-radius);
  font-weight: 700;
}
.primary-nav__cta:hover {
  background: var(--ui-cta-hover);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--tone-line);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-deep);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8fc 0%, #e9f2fb 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(30, 136, 229, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0, 184, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-bottom: 20px;
}
.hero__title span { color: var(--brand-primary); }
.hero__lead {
  font-size: 18px;
  color: var(--tone-ink-soft);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--tone-ink);
  font-weight: 500;
}
.hero__points .dot {
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.15);
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--tone-line);
  border-radius: var(--ui-radius);
  backdrop-filter: blur(8px);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-deep);
  line-height: 1;
}
.hero__trust-item span {
  font-size: 12px;
  color: var(--tone-mute);
  line-height: 1.4;
}

.hero__media {
  position: relative;
}
.hero__product-card {
  background: #fff;
  border-radius: var(--ui-radius-lg);
  padding: 40px;
  box-shadow: var(--ui-shadow-lg);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform .4s;
}
.hero__product-card:hover { transform: rotate(0deg) scale(1.02); }
.hero__product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero__price-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.3);
  transform: rotate(8deg);
}
.hero__price-tag span { font-size: 11px; opacity: .7; text-transform: uppercase; letter-spacing: .12em; }
.hero__price-tag strong { font-family: var(--font-display); font-size: 28px; }

.hero__lifestyle {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--ui-radius-lg);
  box-shadow: var(--ui-shadow);
  border: 6px solid #fff;
  z-index: -1;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--brand-deep);
  padding: 36px 0;
  color: #fff;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item strong {
  font-size: 16px;
  color: #cfe6ff;
}
.trust-strip__item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ ABOUT ============ */
.about {
  padding: var(--gap-7) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--ui-radius-lg);
  overflow: hidden;
  box-shadow: var(--ui-shadow);
}
.about__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.about__media-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 37, 69, 0.92);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  color: var(--tone-ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ============ PRODUCT SECTION ============ */
.product-section {
  padding: var(--gap-7) 0;
  background: #fff;
  border-top: 1px solid var(--tone-line);
  border-bottom: 1px solid var(--tone-line);
}
.product-section__head {
  text-align: center;
  margin-bottom: 60px;
}
.product-section__head .kicker { display: inline-block; }
.product-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.product-section__image {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, var(--brand-soft) 0%, #fff 100%);
  border-radius: var(--ui-radius-lg);
  padding: 50px 30px;
}
.product-section__image img {
  max-width: 320px;
  margin: 0 auto;
}
.product-section__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.product-section__badges span {
  background: #fff;
  border: 1px solid var(--tone-line);
  color: var(--brand-deep);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.product-section__info h3 {
  font-size: 26px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.feature-card {
  background: var(--tone-bg);
  border-radius: var(--ui-radius);
  padding: 24px 20px;
  border: 1px solid transparent;
  transition: all .25s;
}
.feature-card:hover {
  border-color: var(--brand-primary);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--ui-shadow-sm);
}
.feature-card__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-primary);
  margin-bottom: 10px;
  display: inline-block;
  padding: 2px 12px;
  background: var(--brand-soft);
  border-radius: 999px;
}
.feature-card h4 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-family: var(--font-body);
  font-weight: 700;
}
.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--tone-ink-soft);
  line-height: 1.55;
}

/* ============ BENEFITS ============ */
.benefits {
  padding: var(--gap-7) 0;
  background: var(--tone-bg);
}
.benefits__head { text-align: center; margin-bottom: 56px; }
.benefits__head .kicker { display: inline-block; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--ui-radius);
  overflow: hidden;
  box-shadow: var(--ui-shadow-sm);
  transition: all .3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ui-shadow);
}
.benefit-card__img {
  height: 180px;
  overflow: hidden;
}
.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.benefit-card:hover .benefit-card__img img { transform: scale(1.08); }
.benefit-card h3 {
  font-size: 19px;
  margin: 20px 22px 10px;
  font-family: var(--font-body);
  font-weight: 700;
}
.benefit-card p {
  margin: 0 22px 22px;
  font-size: 14px;
  color: var(--tone-ink-soft);
  line-height: 1.6;
}

/* ============ WELLNESS BLOCK ============ */
.wellness-block {
  padding: var(--gap-7) 0;
  background: #fff;
}
.wellness-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: stepc;
}
.step-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--tone-line);
}
.step-list li:last-child { border-bottom: none; }
.step-list li span {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
}
.step-list li strong {
  display: block;
  font-size: 17px;
  color: var(--brand-deep);
  margin-bottom: 4px;
}
.step-list li p {
  margin: 0;
  font-size: 14px;
  color: var(--tone-ink-soft);
}

.wellness-block__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--ui-radius-lg);
  box-shadow: var(--ui-shadow);
}

/* ============ REVIEWS ============ */
.reviews {
  padding: var(--gap-7) 0;
  background: var(--tone-bg);
}
.reviews__head { text-align: center; margin-bottom: 56px; }
.reviews__head .kicker { display: inline-block; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--ui-radius);
  padding: 32px;
  box-shadow: var(--ui-shadow-sm);
  position: relative;
  border-top: 4px solid var(--brand-primary);
}
.review-card__stars {
  color: var(--brand-warn);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 16px;
  color: var(--tone-ink);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 22px;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--tone-line);
}
.review-card__author strong {
  color: var(--brand-deep);
  font-size: 15px;
}
.review-card__author span {
  color: var(--tone-mute);
  font-size: 13px;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-mid) 100%);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(30, 136, 229, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
}
.cta-strip .kicker { color: rgba(255,255,255,0.7); margin-bottom: 10px; }

/* ============ FAQ ============ */
.faq {
  padding: var(--gap-7) 0;
  background: #fff;
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--tone-bg);
  border-radius: var(--ui-radius);
  padding: 22px 26px;
  border: 1px solid transparent;
  transition: all .25s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--brand-soft);
  box-shadow: var(--ui-shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-deep);
  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: "+";
  width: 28px;
  height: 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 16px 0 0;
  color: var(--tone-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ ORDER FORM ============ */
.order {
  padding: var(--gap-7) 0;
  background: linear-gradient(180deg, var(--brand-deep) 0%, #061a30 100%);
  color: #fff;
  position: relative;
}
.order__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.order__info h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
}
.order__info p { color: rgba(255, 255, 255, 0.75); font-size: 16px; }

.order__perks {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.order__perks li {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--brand-primary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.order__perks strong { color: #fff; margin-right: 6px; }

.order__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--ui-radius-lg);
  color: var(--tone-ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row--full { grid-column: 1 / -1; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: .02em;
}
.form-row input,
.form-row textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--tone-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--tone-ink);
  background: #fff;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}
.form-row textarea { resize: vertical; min-height: 80px; }

.form-summary {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--brand-soft);
  border-radius: 12px;
  margin-top: 4px;
}
.form-summary span { font-weight: 600; color: var(--brand-deep); }
.form-summary strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand-primary);
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--tone-ink-soft);
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; }

.order__form button { grid-column: 1 / -1; margin-top: 4px; }

/* ============ CONTACT BLOCK ============ */
.contact-block {
  padding: var(--gap-5) 0;
  background: #fff;
  border-bottom: 1px solid var(--tone-line);
}
.contact-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--brand-primary);
  margin: 0 0 12px;
}
.contact-block p {
  margin: 0;
  font-size: 15px;
  color: var(--tone-ink);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.site-foot {
  background: #061a30;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-foot h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
  font-weight: 700;
}
.site-foot p { margin: 16px 0 0; font-size: 14px; line-height: 1.65; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-foot ul a { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.site-foot ul a:hover { color: #fff; }
.site-foot__brand p { margin-top: 20px; max-width: 280px; }
.site-foot__brand .brand__name { color: #fff; }

.site-foot__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.site-foot__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
}
.site-foot__bottom p { margin: 0; color: rgba(255, 255, 255, 0.5); }
.site-foot__disclaimer { max-width: 600px; text-align: right; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--ui-radius);
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.25);
  z-index: 200;
  border: 1px solid var(--tone-line);
  transform: translateY(150%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner__text strong {
  display: block;
  color: var(--brand-deep);
  font-size: 15px;
  margin-bottom: 4px;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
  color: var(--tone-ink-soft);
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 60px 0 80px;
  background: #fff;
}
.legal-page .wrap { max-width: 820px; }
.legal-page h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 12px;
}
.legal-page__date {
  color: var(--tone-mute);
  font-size: 14px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tone-line);
}
.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--brand-deep);
}
.legal-page h3 {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 24px 0 10px;
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--tone-ink-soft);
  line-height: 1.75;
}
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin: 12px 0;
}
.legal-page ul li, .legal-page ol li {
  margin-bottom: 8px;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.legal-page table th,
.legal-page table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--tone-line);
}
.legal-page table th {
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
}

/* ============ SUCCESS PAGE ============ */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: linear-gradient(160deg, var(--tone-bg) 0%, var(--brand-soft) 100%);
  text-align: center;
}
.success-page__card {
  background: #fff;
  border-radius: var(--ui-radius-lg);
  padding: 60px 50px;
  max-width: 580px;
  box-shadow: var(--ui-shadow-lg);
}
.success-page__icon {
  width: 90px;
  height: 90px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 28px;
  box-shadow: 0 14px 32px rgba(30, 136, 229, 0.35);
}
.success-page h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.success-page p {
  color: var(--tone-ink-soft);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  :root { --gap-7: 64px; }
  .hero { padding: 60px 0 80px; }
  .hero__grid,
  .about__grid,
  .product-section__grid,
  .wellness-block__grid,
  .faq__grid,
  .order__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__lifestyle { display: none; }
  .hero__price-tag { width: 90px; height: 90px; top: -10px; right: -10px; }
  .hero__price-tag strong { font-size: 22px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-strip__item { border-right: none; }
  .site-foot__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-block__grid { grid-template-columns: 1fr; gap: 26px; }
  .faq__head { position: static; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--tone-line);
    box-shadow: 0 14px 30px rgba(11, 37, 69, 0.08);
  }
  .primary-nav.is-open a { width: 100%; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { grid-template-columns: 1fr; gap: 16px; }
  .hero__trust-item { flex-direction: row; align-items: baseline; gap: 12px; }

  .feature-grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; }
  .site-foot__bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-foot__disclaimer { text-align: left; }

  .order__form { grid-template-columns: 1fr; padding: 30px 24px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner__actions { justify-content: flex-end; }

  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .cta-strip h2 { font-size: 24px; }
  .success-page__card { padding: 40px 24px; }
}
