/* ================================================================
   FLORVITA — css/style.css
   Architecture: BEM + utility helpers
   Variables: --brand / --brand-alt / --highlight
   Theme: Dark premium metallic-blue
   Fonts: Montserrat + Source Sans 3
   Generated: April 2026
================================================================ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--bg-base); color: var(--text-main); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-alt); text-decoration: none; transition: color .22s; }
a:hover { color: var(--highlight); }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── CSS TOKENS ─── */
:root {
  --brand:        #1565E8;
  --brand-alt:    #00B4FF;
  --highlight:    #7DB8F7;
  --brand-glow:   rgba(0, 180, 255, 0.22);

  --bg-base:      #050C1C;
  --bg-layer:     #080F20;
  --bg-card:      #0C1628;
  --bg-card-alt:  #0F1A30;
  --bg-stripe:    #070D1A;

  --text-main:    #DDE8F8;
  --text-sub:     #8AA4C8;
  --text-muted:   #4D6280;
  --text-white:   #F0F6FF;

  --border:       rgba(100, 150, 220, 0.12);
  --border-glow:  rgba(0, 180, 255, 0.25);

  --silver:       #A8BDD8;
  --silver-dim:   #6880A4;

  --grad-brand:   linear-gradient(135deg, #0057D9 0%, #00B4FF 100%);
  --grad-dark:    linear-gradient(180deg, #080F20 0%, #050C1C 100%);
  --grad-hero:    radial-gradient(ellipse at 70% 40%, rgba(21, 101, 232, 0.2) 0%, transparent 65%);
  --grad-card:    linear-gradient(145deg, #0C1628 0%, #0A1424 100%);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-card:  0 4px 24px rgba(0, 8, 30, 0.5);
  --shadow-glow:  0 0 40px rgba(0, 180, 255, 0.15);
  --shadow-btn:   0 4px 20px rgba(0, 100, 255, 0.35);

  --transition:   .24s ease;
  --transition-fast: .16s ease;

  --container-max: 1160px;
  --section-pad:   5rem 1.5rem;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-alt);
  margin-bottom: .75rem;
  padding: .28rem .85rem;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 50px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: var(--grad-brand);
  padding: .82rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 100, 255, 0.5); color: #fff; opacity: .95; }
.btn-primary:active { transform: translateY(0); }
.btn-primary--full { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--highlight);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  border: 1.5px solid var(--border-glow);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(0, 180, 255, 0.08); color: var(--brand-alt); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 780px;
  background: #0C1A30;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.6), var(--shadow-glow);
  z-index: 9999;
  padding: 1.1rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: opacity .35s, transform .35s;
}
.cookie-banner.is-hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-banner__inner { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.cookie-banner__text { display: flex; align-items: flex-start; gap: .7rem; flex: 1; min-width: 240px; }
.cookie-banner__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.cookie-banner__text p { font-size: .88rem; color: var(--text-sub); line-height: 1.5; }
.cookie-banner__text a { color: var(--brand-alt); }
.cookie-banner__actions { display: flex; gap: .7rem; flex-shrink: 0; }
.cookie-banner__btn { font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 600; padding: .55rem 1.3rem; border-radius: 50px; cursor: pointer; transition: all var(--transition-fast); }
.cookie-banner__btn--accept { background: var(--grad-brand); color: #fff; border: none; box-shadow: 0 3px 12px rgba(0,100,255,.3); }
.cookie-banner__btn--accept:hover { box-shadow: 0 5px 20px rgba(0,100,255,.5); }
.cookie-banner__btn--reject { background: transparent; color: var(--silver-dim); border: 1px solid var(--border); }
.cookie-banner__btn--reject:hover { color: var(--text-sub); border-color: var(--silver-dim); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(5, 12, 28, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { background: rgba(5, 12, 28, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.site-header__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { display: flex; align-items: center; text-decoration: none; }
.brand-logo__svg { height: 36px; width: auto; }
.brand-logo__svg--sm { height: 32px; }

.site-nav__list { display: flex; align-items: center; gap: .25rem; }
.site-nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--silver);
  padding: .5rem .9rem;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}
.site-nav__link:hover { color: var(--brand-alt); background: rgba(0,180,255,.06); }
.site-nav__link--cta {
  background: var(--grad-brand);
  color: #fff;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(0,100,255,.25);
}
.site-nav__link--cta:hover { color: #fff; box-shadow: 0 5px 20px rgba(0,100,255,.45); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: 6px; background: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--silver); border-radius: 2px; transition: all .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero-block {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Full-width background photo layer */
.hero-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-block__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Dark cinematic overlay — left heavier, right lighter to preserve subject */
.hero-block__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(4, 9, 22, 0.90) 0%,
      rgba(4, 9, 22, 0.78) 38%,
      rgba(4, 9, 22, 0.50) 62%,
      rgba(4, 9, 22, 0.65) 100%
    );
}
/* Bottom-to-top vignette to blend into the rest of the page */
.hero-block__bg-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg-base) 0%, transparent 18%),
    linear-gradient(to bottom, rgba(4,9,22,.45) 0%, transparent 14%),
    radial-gradient(ellipse at 60% 50%, rgba(21,101,232,.18) 0%, transparent 60%);
}

/* Decorative animated scan lines */
.hero-block__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-block__line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,255,.12), transparent);
  animation: scanLine 8s linear infinite;
  opacity: 0;
}
.hero-block__line:nth-child(1) { animation-delay: 0s; }
.hero-block__line:nth-child(2) { animation-delay: 2.6s; }
.hero-block__line:nth-child(3) { animation-delay: 5.1s; }
@keyframes scanLine {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: .6; }
  100% { top: 100%; opacity: 0; }
}

/* Layout container */
.hero-block__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 7rem 1.5rem 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

/* Badge */
.hero-block__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-alt);
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.28);
  padding: .42rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

/* Heading */
.hero-block__heading {
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-block__heading--em {
  font-style: normal;
  background: linear-gradient(100deg, #00D4FF 0%, #5BA8FF 50%, #00B4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Sub */
.hero-block__sub {
  font-size: 1.08rem;
  color: rgba(221, 232, 248, 0.85);
  max-width: 460px;
  margin-bottom: 1.9rem;
  line-height: 1.72;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* Check list */
.hero-block__list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2.2rem;
}
.hero-block__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .96rem;
  color: rgba(221, 232, 248, 0.9);
  font-weight: 500;
}
.hero-block__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(21, 101, 232, 0.25);
  border: 1px solid rgba(0, 180, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

/* CTA row */
.hero-block__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

/* Delivery note */
.hero-block__note {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(170, 195, 230, 0.65);
  letter-spacing: .02em;
}

/* Product visual column */
.hero-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-block__product-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 420px;
}

/* Concentric animated rings */
.hero-block__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 255, 0.18);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-block__ring--1 {
  width: 300px; height: 300px;
  animation-delay: 0s;
}
.hero-block__ring--2 {
  width: 400px; height: 400px;
  border-color: rgba(0, 180, 255, 0.09);
  animation-delay: .9s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.06); opacity: .35; }
}

/* Glow spot under product */
.hero-block__glow-spot {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,140,255,.45) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}

/* Product image */
.hero-block__product-img {
  position: relative;
  z-index: 1;
  max-height: 400px;
  width: auto;
  filter:
    drop-shadow(0 24px 60px rgba(0, 80, 220, 0.45))
    drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
  animation: floatProduct 4.5s ease-in-out infinite;
}
@keyframes floatProduct {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(.4deg); }
}

/* Price badge on product */
.hero-block__pill-badge {
  position: absolute;
  bottom: 50px;
  right: -10px;
  z-index: 2;
  background: var(--grad-brand);
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,80,220,.55), 0 0 0 3px rgba(0,180,255,.15);
  animation: floatProduct 4.5s ease-in-out infinite reverse;
}
.hero-block__pill-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-block__pill-cur {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
}

/* Scroll hint line at bottom */
.hero-block__scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-block__scroll-line {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,180,255,.6), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--bg-layer);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--silver);
  white-space: nowrap;
}

/* ─── AUDIENCE SECTION ─── */
.audience-section {
  padding: var(--section-pad);
  background: var(--bg-base);
}
.audience-section__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.audience-section__media { position: relative; }
.audience-section__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.audience-section__media-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-btn);
  text-align: center;
}
.audience-section__media-badge-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.audience-section__media-badge-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-top: .2rem;
}
.audience-section__heading { margin: .5rem 0 1rem; }
.audience-section__text { color: var(--text-sub); margin-bottom: 1.5rem; line-height: 1.7; }

.audience-checklist { display: flex; flex-direction: column; gap: .85rem; }
.audience-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .96rem;
  color: var(--text-main);
  line-height: 1.55;
}
.audience-checklist__icon {
  color: var(--brand-alt);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .18rem;
}

/* ─── WELLNESS CONTEXT ─── */
.wellness-context {
  padding: var(--section-pad);
  background: var(--bg-stripe);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wellness-context__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wellness-context__heading { margin: .5rem 0 1rem; }
.wellness-context__text { color: var(--text-sub); margin-bottom: 1rem; line-height: 1.7; }
.wellness-context__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

/* ─── PRODUCT OVERVIEW ─── */
.product-overview {
  padding: var(--section-pad);
  background: var(--bg-base);
}
.product-overview__wrap { max-width: var(--container-max); margin: 0 auto; }
.product-overview__header { text-align: center; margin-bottom: 3.5rem; }
.product-overview__sub { color: var(--text-sub); margin-top: .6rem; }
.product-overview__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.product-overview__visual { display: flex; justify-content: center; }
.product-overview__img-wrap { position: relative; display: inline-block; }
.product-overview__img {
  max-width: 300px;
  filter: drop-shadow(0 16px 50px rgba(0,100,255,.25));
}
.product-overview__price-badge {
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
}
.product-overview__price-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.product-overview__price-cur {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
}
.product-overview__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.spec-card:hover { border-color: var(--border-glow); box-shadow: 0 4px 20px rgba(0,180,255,.08); }
.spec-card__icon { flex-shrink: 0; margin-top: .15rem; }
.spec-card__title { font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700; color: var(--brand-alt); margin-bottom: .35rem; }
.spec-card__desc { font-size: .88rem; color: var(--text-sub); line-height: 1.5; }

/* ─── BENEFITS ─── */
.benefits-section {
  padding: var(--section-pad);
  background: var(--bg-layer);
}
.benefits-section__wrap { max-width: var(--container-max); margin: 0 auto; }
.benefits-section__header { text-align: center; margin-bottom: 3rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.benefit-card__img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.benefit-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.benefit-card:hover .benefit-card__img { transform: scale(1.05); }
.benefit-card__body { padding: 1.4rem; }
.benefit-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--brand-alt);
  opacity: .7;
  margin-bottom: .6rem;
}
.benefit-card__title { font-size: 1rem; margin-bottom: .6rem; }
.benefit-card__text { font-size: .87rem; color: var(--text-sub); line-height: 1.6; }

/* ─── ROUTINE SECTION ─── */
.routine-section {
  padding: var(--section-pad);
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.routine-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,101,232,.1) 0%, transparent 70%);
  pointer-events: none;
}
.routine-section__wrap { max-width: var(--container-max); margin: 0 auto; position: relative; }
.routine-section__header { text-align: center; margin-bottom: 3.5rem; }
.routine-section__sub { color: var(--text-sub); margin-top: .6rem; }

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.routine-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-alt) 100%);
  opacity: .35;
}
.routine-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}
.routine-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.4rem;
  box-shadow: var(--shadow-btn);
  position: relative;
  z-index: 1;
}
.routine-step__connector { display: none; }
.routine-step__title { font-size: 1.05rem; margin-bottom: .7rem; }
.routine-step__text { font-size: .9rem; color: var(--text-sub); line-height: 1.65; }

/* ─── REVIEWS ─── */
.reviews-section {
  padding: var(--section-pad);
  background: var(--bg-stripe);
  border-top: 1px solid var(--border);
}
.reviews-section__wrap { max-width: var(--container-max); margin: 0 auto; }
.reviews-section__header { text-align: center; margin-bottom: 3rem; }

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover { border-color: rgba(0,180,255,.2); box-shadow: 0 6px 30px rgba(0,0,0,.3); }
.review-card__quote p {
  font-size: .96rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  flex-shrink: 0;
}
.review-card__name { display: block; font-family: 'Montserrat', sans-serif; font-size: .92rem; font-weight: 700; color: var(--text-white); font-style: normal; }
.review-card__meta { display: block; font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }

/* ─── ORDER SECTION ─── */
.order-section {
  padding: var(--section-pad);
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.order-section__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.order-section__heading { margin: .5rem 0 1rem; }
.order-section__text { color: var(--text-sub); margin-bottom: 2rem; line-height: 1.7; }

.order-product-preview {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
}
.order-product-preview__img { max-width: 80px; }
.order-product-preview__name { font-family: 'Montserrat', sans-serif; font-size: .92rem; font-weight: 700; color: var(--text-white); margin-bottom: .4rem; }
.order-product-preview__price { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--brand-alt); margin-bottom: .5rem; }
.order-product-preview__note { font-size: .8rem; color: var(--text-sub); line-height: 1.6; }

.order-reassurance { display: flex; flex-direction: column; gap: .75rem; }
.order-reassurance__item { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--text-sub); }

/* ─── FORM ─── */
.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.order-form-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-field__label { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600; color: var(--silver); letter-spacing: .03em; }
.form-field__label span { color: var(--brand-alt); }
.form-field__input,
.form-field__select {
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}
.form-field__input::placeholder { color: var(--text-muted); }
.form-field__input:focus,
.form-field__select:focus { border-color: var(--brand-alt); box-shadow: 0 0 0 3px rgba(0,180,255,.12); }
.form-field__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%234D6280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field__input.has-error,
.form-field__select.has-error { border-color: #E03A5F; }
.form-field__error { font-size: .78rem; color: #E03A5F; min-height: 1rem; }

.form-field--consent { margin-bottom: 1.4rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; }
.form-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox__box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border-glow);
  background: var(--bg-base);
  flex-shrink: 0;
  margin-top: .1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-checkbox input:checked ~ .form-checkbox__box {
  background: var(--brand);
  border-color: var(--brand);
}
.form-checkbox input:checked ~ .form-checkbox__box::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.form-checkbox__text { font-size: .86rem; color: var(--text-sub); line-height: 1.5; }
.form-checkbox__text a { color: var(--brand-alt); }

.btn-primary__text { flex: 1; }
.order-form__disclaimer {
  font-size: .76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.55;
}

/* ─── FAQ ─── */
.faq-section {
  padding: var(--section-pad);
  background: var(--bg-layer);
  border-top: 1px solid var(--border);
}
.faq-section__wrap { max-width: 780px; margin: 0 auto; }
.faq-section__header { text-align: center; margin-bottom: 2.8rem; }

.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--border-glow); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  background: transparent;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--transition-fast);
}
.faq-item__trigger:hover { color: var(--brand-alt); }
.faq-item__arrow { flex-shrink: 0; color: var(--silver-dim); transition: transform .28s ease; }
.faq-item.is-open .faq-item__arrow { transform: rotate(180deg); color: var(--brand-alt); }
.faq-item__panel { padding: 0 1.5rem 1.3rem; }
.faq-item__panel p { font-size: .92rem; color: var(--text-sub); line-height: 1.7; }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #080E20 0%, #0C1830 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-strip__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-strip__heading { font-size: 1.3rem; margin-bottom: .5rem; }
.contact-strip__text { color: var(--text-sub); font-size: .94rem; }
.contact-strip__contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-fast);
}
.contact-item:hover { color: var(--brand-alt); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-layer);
  border-top: 1px solid var(--border);
}
.site-footer__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
.site-footer__brand-text { color: var(--text-sub); font-size: .9rem; margin: .8rem 0 1rem; }
.site-footer__address { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }
.site-footer__address a { color: var(--text-muted); }
.site-footer__address a:hover { color: var(--brand-alt); }
.site-footer__nav { display: flex; gap: 3rem; }
.site-footer__nav-col ul { display: flex; flex-direction: column; gap: .6rem; margin-top: .8rem; }
.site-footer__nav-title { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--silver-dim); }
.site-footer__nav-col a { font-size: .87rem; color: var(--text-muted); transition: color var(--transition-fast); }
.site-footer__nav-col a:hover { color: var(--brand-alt); }

.site-footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.3rem 1.5rem 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.site-footer__copy { font-size: .83rem; color: var(--text-muted); }
.site-footer__legal-note { font-size: .78rem; color: var(--text-muted); opacity: .7; max-width: 700px; line-height: 1.6; }

/* ─── LEGAL PAGES SHARED ─── */
.legal-page { padding: 6rem 1.5rem 4rem; max-width: 820px; margin: 0 auto; }
.legal-page__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.legal-page__date { font-size: .84rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 .7rem; color: var(--brand-alt); }
.legal-page p, .legal-page li { font-size: .95rem; color: var(--text-sub); line-height: 1.75; margin-bottom: .7rem; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--brand-alt); }

/* ─── SUCCESS PAGE ─── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(21,101,232,.2) 0%, transparent 60%),
    var(--bg-base);
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 520px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.success-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-btn);
}
.success-card__title { font-size: 1.7rem; margin-bottom: .8rem; }
.success-card__text { color: var(--text-sub); margin-bottom: 1.5rem; line-height: 1.7; }
.success-card__note { font-size: .84rem; color: var(--text-muted); margin-top: 1.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .product-overview__grid { grid-template-columns: 1fr; text-align: center; }
  .product-overview__visual { justify-content: center; margin-bottom: 1rem; }
  .product-overview__specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .site-nav { display: none; position: fixed; inset: 0; top: 62px; background: rgba(5,12,28,.97); z-index: 800; backdrop-filter: blur(14px); align-items: center; justify-content: center; }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; gap: .5rem; text-align: center; }
  .site-nav__link { font-size: 1.1rem; padding: .9rem 2rem; display: block; }
  .nav-toggle { display: flex; }
  .hero-block__container { grid-template-columns: 1fr; gap: 0; padding-top: 5rem; padding-bottom: 4rem; }
  .hero-block__visual { order: -1; margin-bottom: 1rem; }
  .hero-block__product-stage { width: 240px; height: 280px; }
  .hero-block__ring--1 { width: 200px; height: 200px; }
  .hero-block__ring--2 { width: 270px; height: 270px; }
  .hero-block__product-img { max-height: 260px; }
  .hero-block__pill-badge { width: 60px; height: 60px; right: 5px; bottom: 30px; }
  .hero-block__pill-val { font-size: 1rem; }
  .hero-block__bg-overlay { background: linear-gradient(to right, rgba(4,9,22,.94) 0%, rgba(4,9,22,.88) 100%); }
  .hero-block__scroll-hint { display: none; }
  .audience-section__wrap,
  .wellness-context__wrap,
  .order-section__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .audience-section__media-badge { right: 0; bottom: -1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .routine-steps { grid-template-columns: 1fr; gap: 2rem; }
  .routine-steps::before { display: none; }
  .site-footer__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__nav { gap: 1.5rem; }
  .trust-strip__wrap { justify-content: center; gap: 1.5rem 2rem; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .product-overview__specs { grid-template-columns: 1fr; }
  .hero-block__cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .order-form-card { padding: 1.6rem 1.2rem; }
  .site-footer__nav { flex-direction: column; gap: 1.5rem; }
  .contact-strip__wrap { flex-direction: column; align-items: flex-start; }
}

/* ─── FOCUS ACCESSIBILITY ─── */
:focus-visible { outline: 2px solid var(--brand-alt); outline-offset: 3px; border-radius: 4px; }

/* ─── SCROLL ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
