/* =====================================================
   PROSTALIS MAX — css/style.css
   Architecture: BEM + utility helpers
   Palette: Dark Navy / Rich Blue / Pastels
   Typography: Playfair Display + Lato
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Lato:wght@300;400;600;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  --brand:        #0B1623;
  --brand-alt:    #1C3F7A;
  --highlight:    #3D7FD4;
  --highlight-soft: #5A9AE5;

  --pastel-blue:  #B8D8F5;
  --pastel-teal:  #8ECFC8;
  --pastel-lav:   #C4CAEE;
  --pastel-mint:  #9FDFD7;

  --bg-deep:      #080F1A;
  --bg-mid:       #0E1928;
  --bg-card:      #131F32;
  --bg-card-alt:  #0F2040;
  --bg-light:     #F2F7FF;
  --bg-section:   #EDF3FB;

  --text-on-dark:   #EEF3FF;
  --text-muted-dark:#8AAAC8;
  --text-on-light:  #0B1623;
  --text-muted-light:#4A6080;
  --text-accent:    #B8D8F5;

  --border-dark:  rgba(61,127,212,0.20);
  --border-card:  rgba(184,216,245,0.12);
  --border-light: rgba(28,63,122,0.15);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-card: 0 8px 32px rgba(8,15,26,0.45);
  --shadow-btn:  0 4px 20px rgba(61,127,212,0.40);
  --shadow-hero: 0 20px 60px rgba(8,15,26,0.70);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --container-w: 1160px;
  --gap-sm:   16px;
  --gap-md:   32px;
  --gap-lg:   56px;
  --gap-xl:   88px;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-deep);
  color: var(--text-on-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── UTILITY ────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.u-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.u-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.u-badge--blue  { background: rgba(61,127,212,0.18); color: var(--pastel-blue); border: 1px solid rgba(61,127,212,0.30); }
.u-badge--teal  { background: rgba(142,207,200,0.15); color: var(--pastel-teal); border: 1px solid rgba(142,207,200,0.25); }
.u-badge--lav   { background: rgba(196,202,238,0.15); color: var(--pastel-lav);  border: 1px solid rgba(196,202,238,0.25); }
.u-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pastel-teal);
  margin-bottom: 10px;
  display: block;
}
.u-heading-display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.18;
}
.u-heading-display--xl  { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.u-heading-display--lg  { font-size: clamp(1.9rem, 4vw, 3rem); }
.u-heading-display--md  { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.u-heading-display--sm  { font-size: clamp(1.15rem, 2vw, 1.45rem); }

/* ─── SITE HEADER ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(8,15,26,0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.40);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.site-header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-header__logo svg { width: 38px; height: 38px; }
.site-header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
}
.site-header__logo-text span { color: var(--pastel-blue); }
.site-header__nav { display: flex; gap: 28px; align-items: center; }
.site-header__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.site-header__nav a:hover { color: var(--pastel-blue); }
.site-header__cta {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--highlight);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.site-header__cta:hover {
  background: var(--highlight-soft);
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}
.site-header__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.site-header__hamburger span { display: block; width: 24px; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: var(--transition); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  background: linear-gradient(135deg, var(--bg-deep) 0%, #0D1F38 55%, #0B1E40 100%);
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(61,127,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,127,212,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,127,212,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,207,200,0.10) 0%, transparent 70%);
  bottom: 60px; left: -80px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  padding: var(--gap-lg) 0;
  position: relative;
  z-index: 2;
}
.hero__content {}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__eyebrow-line {
  width: 40px; height: 2px;
  background: var(--pastel-teal);
  border-radius: 2px;
}
.hero__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pastel-teal);
}
.hero__heading {
  margin-bottom: 20px;
  color: var(--text-on-dark);
}
.hero__heading em {
  font-style: italic;
  color: var(--pastel-blue);
}
.hero__subtext {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(184,216,245,0.08);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--pastel-blue);
}
.hero__pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__actions .btn-primary {
  padding: 15px 36px;
  font-size: 0.95rem;
}
.hero__trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}
.hero__trust-note svg { color: var(--pastel-teal); width: 16px; height: 16px; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__img-wrap {
  position: relative;
  z-index: 2;
}
.hero__img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(61,127,212,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__img {
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero__badge-float {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 4;
  min-width: 190px;
}
.hero__badge-float-icon {
  width: 40px; height: 40px;
  background: rgba(61,127,212,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}
.hero__badge-float-text .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1;
}
.hero__badge-float-text .lbl {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
}
.hero__badge-float-2 {
  top: 40px;
  right: -24px;
  bottom: auto;
  left: auto;
  min-width: 170px;
}

/* ─── BTN COMPONENTS ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--highlight);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-xl);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background: var(--highlight-soft);
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--pastel-blue);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(184,216,245,0.35);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--pastel-blue);
  background: rgba(184,216,245,0.08);
}
.btn-primary--lg  { padding: 17px 42px; font-size: 1rem; }
.btn-primary--teal { background: #2AADA4; }
.btn-primary--teal:hover { background: #35C4BA; }

/* ─── TRUST STRIP ───────────────────────────────── */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 28px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.trust-strip__item-icon {
  width: 44px; height: 44px;
  background: rgba(61,127,212,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}
.trust-strip__item-text .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.1;
}
.trust-strip__item-text .desc {
  font-size: 0.76rem;
  color: var(--text-muted-dark);
}
.trust-strip__sep {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ─── WHO SECTION ───────────────────────────────── */
.who-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-mid);
}
.who-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.who-section__media { position: relative; }
.who-section__img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.who-section__img-accent {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--bg-mid);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.who-section__content {}
.who-section__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.who-section__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.who-section__list-icon {
  width: 36px; height: 36px;
  background: rgba(142,207,200,0.12);
  border: 1px solid rgba(142,207,200,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pastel-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.who-section__list-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  margin-bottom: 3px;
}
.who-section__list-text { font-size: 0.87rem; color: var(--text-muted-dark); line-height: 1.6; }
.who-section__cta { margin-top: 36px; }

/* ─── PRODUCT SECTION ───────────────────────────── */
.product-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.product-section__bg-accent {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,63,122,0.22) 0%, transparent 70%);
  top: 50%; left: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.product-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  position: relative;
  z-index: 2;
}
.product-section__visual { display: flex; justify-content: center; position: relative; }
.product-section__img-halo {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(61,127,212,0.20) 0%, transparent 60%);
  border-radius: 50%;
}
.product-section__img {
  width: min(340px, 90%);
  filter: drop-shadow(0 20px 50px rgba(8,15,26,0.70));
  position: relative;
  z-index: 2;
  transition: transform var(--transition-slow);
}
.product-section__img:hover { transform: scale(1.03) translateY(-4px); }
.product-section__content {}
.product-section__price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 18px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  display: inline-flex;
}
.product-section__price-curr {
  font-size: 1rem;
  color: var(--text-muted-dark);
  font-weight: 600;
}
.product-section__price-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1;
}
.product-section__price-note {
  font-size: 0.76rem;
  color: var(--text-muted-dark);
  margin-top: 8px;
}
.product-section__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 32px;
}
.product-section__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  color: var(--text-muted-dark);
}
.product-section__feature svg {
  color: var(--pastel-teal);
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.product-section__cta-group { display: flex; flex-direction: column; gap: 12px; }

/* ─── BENEFITS GRID ─────────────────────────────── */
.benefits-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-section);
}
.benefits-section .container > .u-section-label,
.benefits-section .container > .u-heading-display { color: var(--text-on-light); }
.benefits-section .section-header { text-align: center; margin-bottom: var(--gap-md); }
.benefits-section .section-header .u-section-label { color: var(--brand-alt); }
.benefits-section .section-header .u-heading-display { color: var(--text-on-light); }
.benefits-section .section-header .section-desc { 
  font-size: 1rem; color: var(--text-muted-light); 
  max-width: 540px; margin: 12px auto 0; 
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--gap-md);
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,22,35,0.10);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(28,63,122,0.08);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,22,35,0.16);
}
.benefit-card__img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.benefit-card__body { padding: 18px 20px 22px; }
.benefit-card__icon {
  width: 40px; height: 40px;
  background: rgba(28,63,122,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-alt);
  margin-bottom: 14px;
}
.benefit-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.benefit-card__text { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.7; }

/* ─── ROUTINE STEPS ─────────────────────────────── */
.routine-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-mid);
}
.routine-section__header { text-align: center; margin-bottom: var(--gap-md); }
.routine-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.routine-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--highlight) 0%, var(--pastel-teal) 100%);
  opacity: 0.35;
  pointer-events: none;
}
.routine-step {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.routine-step:hover {
  border-color: rgba(61,127,212,0.35);
  transform: translateY(-3px);
}
.routine-step__num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-alt), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(61,127,212,0.35);
  position: relative;
  z-index: 2;
}
.routine-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.routine-step__text { font-size: 0.82rem; color: var(--text-muted-dark); line-height: 1.65; }

/* ─── REVIEWS ───────────────────────────────────── */
.reviews-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-deep);
}
.reviews-section__header { text-align: center; margin-bottom: var(--gap-md); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: rgba(61,127,212,0.30);
  transform: translateY(-3px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(61,127,212,0.15);
  line-height: 1;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-card__stars svg {
  width: 16px; height: 16px;
  color: #F5B93E;
  fill: #F5B93E;
}
.review-card__text {
  font-size: 0.91rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-alt), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-card__name { font-size: 0.90rem; font-weight: 700; color: var(--text-on-dark); }
.review-card__meta { font-size: 0.75rem; color: var(--text-muted-dark); }
.review-card__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 10px;
  background: rgba(142,207,200,0.12);
  border: 1px solid rgba(142,207,200,0.22);
  border-radius: var(--radius-xl);
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--pastel-teal);
}

/* ─── FAQ ───────────────────────────────────────── */
.faq-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-mid);
}
.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-lg);
  align-items: flex-start;
}
.faq-section__sidebar {}
.faq-section__sidebar .u-heading-display { margin: 10px 0 18px; }
.faq-section__sidebar p { font-size: 0.92rem; color: var(--text-muted-dark); line-height: 1.7; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: rgba(61,127,212,0.30); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
}
.faq-item__question {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.45;
}
.faq-item__icon {
  width: 28px; height: 28px;
  background: rgba(61,127,212,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: rgba(61,127,212,0.22); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}
.faq-item.is-open .faq-item__answer { max-height: 280px; }
.faq-item__answer-inner {
  padding: 0 22px 18px;
  font-size: 0.87rem;
  color: var(--text-muted-dark);
  line-height: 1.72;
}

/* ─── ORDER SECTION ─────────────────────────────── */
.order-section {
  padding: var(--gap-xl) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.order-section__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,63,122,0.25) 0%, rgba(8,15,26,0.0) 50%, rgba(142,207,200,0.08) 100%);
  pointer-events: none;
}
.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.order-section__info {}
.order-section__info .u-heading-display { margin: 10px 0 18px; }
.order-section__info p { font-size: 0.92rem; color: var(--text-muted-dark); line-height: 1.72; margin-bottom: 18px; }
.order-section__guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.order-section__guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text-muted-dark);
}
.order-section__guarantee svg { color: var(--pastel-teal); width: 20px; height: 20px; flex-shrink: 0; }

.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.order-form-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.order-form-card__subtitle { font-size: 0.85rem; color: var(--text-muted-dark); margin-bottom: 24px; }
.order-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted-dark); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.90rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder { color: rgba(138,170,200,0.55); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--highlight);
  background: rgba(61,127,212,0.07);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.order-form__price-summary {
  margin: 18px 0;
  padding: 16px;
  background: rgba(61,127,212,0.08);
  border: 1px solid rgba(61,127,212,0.20);
  border-radius: var(--radius-md);
}
.order-form__price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--text-muted-dark);
  margin-bottom: 4px;
}
.order-form__price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-card);
}
.order-form__price-total .label { font-weight: 700; color: var(--text-on-dark); }
.order-form__price-total .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
}
.order-form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.order-form__legal { font-size: 0.73rem; color: var(--text-muted-dark); text-align: center; margin-top: 12px; line-height: 1.5; }
.order-form__legal a { color: var(--pastel-blue); text-decoration: underline; }

/* ─── CONTACT BAR ───────────────────────────────── */
.contact-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 28px 0;
}
.contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.contact-bar__item-icon {
  width: 40px; height: 40px;
  background: rgba(61,127,212,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}
.contact-bar__item-label { font-size: 0.73rem; color: var(--text-muted-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-bar__item-value { font-size: 0.92rem; font-weight: 600; color: var(--text-on-dark); }

/* ─── FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  padding: var(--gap-lg) 0 var(--gap-md);
  border-top: 1px solid var(--border-dark);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--gap-md);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--border-dark);
}
.site-footer__brand .u-section-label { margin-bottom: 4px; }
.site-footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.site-footer__brand-text { font-size: 0.84rem; color: var(--text-muted-dark); line-height: 1.7; max-width: 280px; }
.site-footer__col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pastel-blue); margin-bottom: 16px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-size: 0.85rem; color: var(--text-muted-dark); transition: color var(--transition); }
.site-footer__links a:hover { color: var(--pastel-blue); }
.site-footer__bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copyright { font-size: 0.78rem; color: var(--text-muted-dark); }
.site-footer__disclaimer { font-size: 0.74rem; color: rgba(138,170,200,0.55); max-width: 580px; line-height: 1.5; }

/* ─── COOKIE BANNER ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.40s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.30s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__icon { color: var(--pastel-teal); flex-shrink: 0; width: 32px; height: 32px; margin-top: 2px; }
.cookie-banner__content { flex: 1; }
.cookie-banner__title { font-weight: 700; font-size: 0.96rem; color: var(--text-on-dark); margin-bottom: 6px; }
.cookie-banner__text { font-size: 0.82rem; color: var(--text-muted-dark); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner__text a { color: var(--pastel-blue); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__accept {
  padding: 9px 22px;
  background: var(--highlight);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: background var(--transition);
}
.cookie-banner__accept:hover { background: var(--highlight-soft); }
.cookie-banner__decline {
  padding: 9px 18px;
  background: transparent;
  color: var(--text-muted-dark);
  font-size: 0.83rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  transition: color var(--transition), border-color var(--transition);
}
.cookie-banner__decline:hover { color: var(--text-on-dark); border-color: var(--text-muted-dark); }

/* ─── PAGE TOP (legal pages) ───────────────────── */
.page-hero {
  background: var(--bg-mid);
  padding: 100px 0 56px;
  border-bottom: 1px solid var(--border-dark);
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-on-dark);
}
.page-hero__subtitle { font-size: 0.90rem; color: var(--text-muted-dark); margin-top: 8px; }
.legal-content {
  padding: var(--gap-lg) 0;
  background: var(--bg-deep);
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin: 32px 0 12px;
}
.legal-content p,
.legal-content li { font-size: 0.88rem; color: var(--text-muted-dark); line-height: 1.78; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--pastel-blue); text-decoration: underline; }

/* ─── SUCCESS PAGE ──────────────────────────────── */
.success-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  padding: 40px 24px;
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.success-card__icon {
  width: 80px; height: 80px;
  background: rgba(142,207,200,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--pastel-teal);
}
.success-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.success-card__text { font-size: 0.92rem; color: var(--text-muted-dark); line-height: 1.72; margin-bottom: 32px; }
.success-card__info {
  background: rgba(61,127,212,0.08);
  border: 1px solid rgba(61,127,212,0.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 28px;
}
.success-card__info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
}
.success-card__info-line svg { color: var(--pastel-teal); width: 16px; height: 16px; flex-shrink: 0; }
.success-card__info-line:last-child { margin-bottom: 0; }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { opacity: 0; }
.animate-fade-up.is-visible { animation: fadeInUp 0.55s cubic-bezier(0.4,0,0.2,1) forwards; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.20s; }
.delay-3 { animation-delay: 0.30s; }
.delay-4 { animation-delay: 0.40s; }
.delay-5 { animation-delay: 0.50s; }
.delay-6 { animation-delay: 0.60s; }

/* ─── SECTION HEADER HELPER ─────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header--center { text-align: center; }
.section-header__desc { font-size: 0.97rem; color: var(--text-muted-dark); max-width: 560px; margin-top: 12px; line-height: 1.7; }
.section-header--center .section-header__desc { margin-left: auto; margin-right: auto; }

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(8,15,26,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 24px;
  flex-direction: column;
  gap: 14px;
  z-index: 890;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-nav.is-open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--pastel-blue); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .routine-steps { grid-template-columns: repeat(2, 1fr); }
  .routine-steps::before { display: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__subtext { margin-left: auto; margin-right: auto; }
  .hero__pills { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__badge-float { display: none; }
  .hero__badge-float-2 { display: none; }

  .who-section__inner { grid-template-columns: 1fr; }
  .who-section__img-accent { display: none; }

  .product-section__inner { grid-template-columns: 1fr; text-align: center; }
  .product-section__features { align-items: center; }
  .product-section__cta-group { align-items: center; }

  .benefits-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-section__inner { grid-template-columns: 1fr; }

  .order-section__inner { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .trust-strip__sep { display: none; }
  .trust-strip__inner { justify-content: center; }

  .contact-bar__inner { flex-direction: column; gap: 18px; }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .order-form__row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .order-form-card { padding: 24px 18px; }
  .success-card { padding: 36px 22px; }
  .routine-steps { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; left: 16px; right: 16px; max-width: none; transform: translateX(0) translateY(120px); }
  .cookie-banner.is-visible { transform: translateX(0) translateY(0); }
}
