/* ============================================================
   AUFLORA — css/style.css
   Architecture: BEM + utility helpers
   Tokens: --brand / --brand-alt / --highlight
   Mood: Organic Premium Wellness
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --brand:          #1a5c3a;
  --brand-deep:     #0f3d26;
  --brand-light:    #2d8a58;
  --brand-alt:      #e8f5ee;
  --brand-alt2:     #d0eddb;
  --highlight:      #c8993a;
  --highlight-soft: #f5e9d0;
  --highlight-warm: #e8b84b;

  --surface:        #ffffff;
  --surface-soft:   #f8fbf9;
  --surface-glass:  rgba(255,255,255,0.72);
  --surface-glass2: rgba(255,255,255,0.55);
  --surface-dark:   #0f2a1a;

  --text-primary:   #1a2b22;
  --text-secondary: #3d5449;
  --text-muted:     #7a9485;
  --text-inverse:   #ffffff;

  --border-light:   rgba(26,92,58,0.12);
  --border-medium:  rgba(26,92,58,0.22);

  --shadow-xs:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
  --shadow-brand: 0 8px 28px rgba(26,92,58,0.22);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-pill: 999px;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Nunito', sans-serif;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
.t-display {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.t-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.t-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.t-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}
.t-body-lg { font-size: 1.1rem; line-height: 1.7; }
.t-body    { font-size: 1rem;   line-height: 1.65; }
.t-small   { font-size: 0.875rem; }
.t-xs      { font-size: 0.78rem; }

.t-brand   { color: var(--brand); }
.t-highlight { color: var(--highlight); }
.t-muted   { color: var(--text-muted); }

/* ── Layout Helpers ───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow { max-width: 860px; }
.wrap--wide   { max-width: 1400px; }

.section-pad     { padding: 88px 0; }
.section-pad--sm { padding: 56px 0; }
.section-pad--lg { padding: 112px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { display: flex; gap: 12px; flex-wrap: wrap; }
.flex-gap-md { display: flex; gap: 20px; flex-wrap: wrap; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Decorative Shapes ─────────────────────────────────────── */
.blob-decor {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.07;
  pointer-events: none;
}

/* ── CTA Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--brand);
  color: var(--text-inverse);
  padding: 14px 34px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,92,58,0.32);
}
.btn--primary:active { transform: translateY(0); }

.btn--highlight {
  background: var(--highlight);
  color: var(--text-inverse);
  padding: 14px 34px;
  font-size: 1.05rem;
  box-shadow: 0 8px 28px rgba(200,153,58,0.28);
}
.btn--highlight:hover {
  background: var(--highlight-warm);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,153,58,0.38);
}

.btn--outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 12px 30px;
  font-size: 1rem;
}
.btn--outline:hover {
  background: var(--brand);
  color: var(--text-inverse);
}

.btn--lg { padding: 18px 46px; font-size: 1.15rem; }
.btn--sm { padding: 10px 22px; font-size: 0.9rem; }

.btn__icon { width: 20px; height: 20px; }

/* ── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.logo__text span { color: var(--highlight); }

/* Nav */
.header__nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { width: 100%; }

.header__cta { margin-left: 16px; }

/* Hamburger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border-light);
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
}
.header__mobile-nav.open { display: flex; }
.mobile-nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}
.mobile-nav__link:hover { color: var(--brand); }
.mobile-nav__cta-wrap { margin-top: 12px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,30,18,0.82) 0%,
    rgba(15,61,38,0.68) 45%,
    rgba(26,92,58,0.22) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 48px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-glass2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--highlight-warm);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__heading {
  color: var(--text-inverse);
  margin-bottom: 20px;
}
.hero__heading em {
  font-style: normal;
  color: var(--highlight-warm);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.35);
}
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-item { text-align: left; }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--highlight-warm);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--brand);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.04) 48px,
    rgba(255,255,255,0.04) 49px
  );
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__icon { font-size: 1.1rem; }

/* ── SECTION LABELS ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-intro {
  margin-bottom: 52px;
}
.section-intro__heading { margin-bottom: 14px; }
.section-intro__text {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 580px;
}

/* ── FOR WHOM ─────────────────────────────────────────────── */
.for-whom { background: var(--surface-soft); }

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.for-whom__image-block { position: relative; }
.for-whom__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.for-whom__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.for-whom__img-wrap img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.for-whom__img-wrap:hover img { transform: scale(1.04); }
.for-whom__img-wrap--tall { grid-row: span 2; }
.for-whom__img-wrap--tall img { height: 468px; }

.for-whom__float-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.for-whom__float-icon { font-size: 1.8rem; }
.for-whom__float-text { font-size: 0.82rem; }
.for-whom__float-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.for-whom__list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.for-whom__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.for-whom__item:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.for-whom__item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.for-whom__item-body h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 3px;
  color: var(--text-primary);
}
.for-whom__item-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ── PRODUCT SECTION ──────────────────────────────────────── */
.product-section { background: var(--surface); }

.product-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-section__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-section__bg-circle {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-alt2) 0%, var(--brand-alt) 60%, transparent 100%);
  z-index: 0;
}
.product-section__img {
  position: relative;
  z-index: 1;
  max-width: 360px;
  filter: drop-shadow(0 20px 48px rgba(26,92,58,0.25));
  animation: float 4s ease-in-out infinite;
}
.product-section__float-tag {
  position: absolute;
  z-index: 2;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
}
.product-section__float-tag--1 { top: 10%; left: -10%; }
.product-section__float-tag--2 { bottom: 12%; right: -10%; }
.product-section__float-tag-icon { font-size: 1.4rem; }
.product-section__float-tag-val {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.product-section__content { }
.product-section__heading { margin-bottom: 16px; }
.product-section__lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}
.product-section__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.product-feature__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-feature__dot svg { width: 12px; height: 12px; }
.product-feature__text { font-size: 0.97rem; color: var(--text-secondary); }
.product-feature__text strong { color: var(--text-primary); }

.product-section__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

/* ── BENEFITS GRID ────────────────────────────────────────── */
.benefits { background: var(--surface-soft); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover { 
  border-color: var(--brand-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--brand-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.benefit-card__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.benefit-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── ROUTINE SECTION ──────────────────────────────────────── */
.routine { background: var(--surface); }

.routine__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.routine__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.routine__image img { width: 100%; height: 480px; object-fit: cover; }
.routine__image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  color: var(--text-primary);
}
.routine__image-badge-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.routine__image-badge-sub { font-size: 0.8rem; color: var(--text-muted); }

.routine__steps { display: flex; flex-direction: column; gap: 24px; }
.routine-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.routine-step:hover {
  background: var(--brand-alt);
}
.routine-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-inverse);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.routine-step__body h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.routine-step__body p { font-size: 0.9rem; color: var(--text-muted); }

/* ── LIFESTYLE CARDS (consultation, food, habits, vitamins) ── */
.lifestyle { background: var(--surface-soft); }

.lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lifestyle__grid .lifestyle-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  margin: 0 auto;
  width: 100%;
}
.lifestyle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lifestyle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lifestyle-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.lifestyle-card:hover .lifestyle-card__img { transform: scale(1.05); }
.lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,18,0.78) 0%, transparent 55%);
}
.lifestyle-card__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.lifestyle-card__tag {
  display: inline-block;
  background: var(--highlight);
  color: var(--text-inverse);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lifestyle-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-inverse);
  margin-bottom: 4px;
}
.lifestyle-card__text { font-size: 0.87rem; color: rgba(255,255,255,0.75); }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews { background: var(--brand-deep); overflow: hidden; position: relative; }
.reviews::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: rgba(26,92,58,0.25);
  pointer-events: none;
}

.reviews .section-label { color: var(--highlight-warm); }
.reviews .section-label::before { background: var(--highlight-warm); }
.reviews .section-intro__heading { color: var(--text-inverse); }
.reviews .section-intro__text { color: rgba(255,255,255,0.65); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.review-card__stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review-card__star { color: var(--highlight-warm); font-size: 0.95rem; }
.review-card__quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-card__footer { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}
.review-card__author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-inverse);
}
.review-card__author-meta { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--surface); }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq__promo {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}
.faq__promo::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.faq__promo-heading {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}
.faq__promo-text {
  font-size: 0.97rem;
  opacity: 0.82;
  margin-bottom: 28px;
  line-height: 1.6;
}
.faq__promo-btn { background: var(--text-inverse); color: var(--brand); }
.faq__promo-btn:hover { background: var(--highlight-soft); }

.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--brand-light); }
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--surface);
  transition: background var(--transition-fast);
}
.faq-item__question:hover { background: var(--brand-alt); }
.faq-item.open .faq-item__question { background: var(--brand-alt); }
.faq-item__question-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.35;
}
.faq-item__toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-alt);
  border: 1px solid var(--border-medium);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
}
.faq-item.open .faq-item__toggle {
  background: var(--brand);
  color: var(--text-inverse);
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-item__answer p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--highlight-soft) 0%, var(--brand-alt) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(26,92,58,0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(200,153,58,0.1);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-inner__heading { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 10px; }
.cta-inner__text { font-size: 1rem; color: var(--text-secondary); max-width: 500px; }
.cta-inner__actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cta-inner__note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { background: var(--surface-soft); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__info { }
.contact__info-heading { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; }
.contact__info-text { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.contact__detail-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail a { color: var(--brand); transition: color var(--transition-fast); }
.contact__detail a:hover { color: var(--brand-light); }

.contact__form-wrap {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact__form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26,92,58,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand);
}
.form-consent label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent a { color: var(--brand); text-decoration: underline; }
.form-submit { width: 100%; }

/* ── DISCLAIMER BANNER ────────────────────────────────────── */
.disclaimer-banner {
  background: var(--highlight-soft);
  border-top: 1px solid rgba(200,153,58,0.3);
  padding: 20px 0;
}
.disclaimer-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.disclaimer-banner__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.disclaimer-banner__text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.disclaimer-banner__text strong { color: var(--text-primary); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__brand-logo { margin-bottom: 14px; }
.footer__brand-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer__col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--highlight-warm); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer__contact-item-icon { margin-top: 2px; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom-legal { display: flex; gap: 20px; }
.footer__bottom-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer__bottom-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── SCROLL TOP ───────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-inverse);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  font-size: 1.2rem;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--brand-light); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SUCCESS PAGE ─────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-alt);
  padding: 48px 24px;
  text-align: center;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin: 0 auto 24px;
  animation: fadeInUp 0.5s ease forwards;
}
.success-title { font-family: var(--font-head); font-weight: 700; font-size: 2rem; margin-bottom: 12px; color: var(--brand); }
.success-text { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 32px; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-page { min-height: 100vh; background: var(--surface); }
.legal-page__header { background: var(--brand-deep); padding: 64px 0 48px; }
.legal-page__header h1 { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--text-inverse); margin-bottom: 8px; }
.legal-page__header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.legal-page__body { padding: 64px 0; }
.legal-content h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 7px; list-style: disc; }
.legal-content a { color: var(--brand); text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-section__layout { gap: 40px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { min-height: 85vh; }
  .hero__stats { gap: 20px; }

  .trust-strip__item { padding: 4px 14px; font-size: 0.8rem; }

  .for-whom__grid,
  .product-section__layout,
  .routine__layout,
  .faq__grid,
  .contact__layout,
  .cta-inner { grid-template-columns: 1fr; }

  .for-whom__images { grid-template-columns: 1fr 1fr; }
  .for-whom__img-wrap--tall img { height: 240px; }
  .for-whom__float-badge { right: 0; }

  .product-section__visual { margin-bottom: 0; }
  .product-section__float-tag--1,
  .product-section__float-tag--2 { display: none; }
  .product-section__bg-circle { width: 280px; height: 280px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .lifestyle__grid { grid-template-columns: 1fr; }
  .lifestyle__grid .lifestyle-card:last-child { grid-column: auto; max-width: 100%; }

  .cta-inner { text-align: center; }
  .cta-inner__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }

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

@media (max-width: 600px) {
  .section-pad { padding: 60px 0; }
  .grid-3, .benefits__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; gap: 16px; }
  .trust-strip__inner { flex-direction: column; align-items: flex-start; padding: 0 16px; }
  .trust-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; padding: 8px 0; }
  .trust-strip__item:last-child { border-bottom: none; }
  .for-whom__images { grid-template-columns: 1fr; }
  .for-whom__img-wrap--tall { grid-row: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px 18px; }
  .faq__grid { gap: 32px; }
  .lifestyle__grid { grid-template-columns: 1fr; }
  .lifestyle__grid .lifestyle-card:last-child { grid-column: auto; max-width: 100%; }
}
