/* ============================================================
   MULTIRIN — ORIGLOW
   Style Architecture: Section-Scoped Semantic
   Variable Family: --brand / --brand-alt / --highlight
   Visual Mood: Editorial Trust + Modern Wellness
   ============================================================ */

/* ------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Brand palette */
  --brand:           #00E5C4;
  --brand-glow:      rgba(0, 229, 196, 0.22);
  --brand-tint:      rgba(0, 229, 196, 0.1);
  --brand-alt:       #F5C542;
  --highlight:       #A78BFA;
  --highlight-tint:  rgba(167, 139, 250, 0.12);

  /* Dark backgrounds */
  --bg-deep:         #080D1A;
  --bg-mid:          #0D1526;
  --bg-surface:      #131D34;
  --bg-card:         #18233E;
  --bg-card-hover:   #1F2B4A;

  /* Pastel backgrounds */
  --pastel-lavender: #F0EBF8;
  --pastel-mint:     #E4F6F1;
  --pastel-cream:    #FDF6E8;

  /* Text — dark backgrounds */
  --txt-bright:      #EEF1FF;
  --txt-mid:         #8A96BE;
  --txt-dim:         #525E82;

  /* Text — light backgrounds */
  --txt-ink:         #1A1F38;
  --txt-ink-mid:     #474E6E;
  --txt-ink-dim:     #7A82A0;

  /* Borders */
  --b-ghost:         rgba(255, 255, 255, 0.065);
  --b-brand:         rgba(0, 229, 196, 0.22);
  --b-light:         rgba(0, 0, 0, 0.08);

  /* Typography */
  --ff-display:      'Cormorant Garamond', Georgia, serif;
  --ff-text:         'DM Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-pill:   100px;
  --r-xl:     22px;
  --r-lg:     16px;
  --r-md:     10px;
  --r-sm:     6px;

  /* Spacing */
  --sec-y:    100px;
  --sec-y-sm: 64px;
  --gutter:   24px;
  --col-max:  1240px;

  /* Shadows */
  --sh-card:   0 4px 28px rgba(0, 0, 0, 0.38);
  --sh-brand:  0 0 48px rgba(0, 229, 196, 0.18);
  --sh-soft:   0 6px 24px rgba(167, 139, 250, 0.12);

  /* Motion */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast:      0.18s var(--ease);
  --base:      0.32s var(--ease);
  --slow:      0.55s var(--ease);
}

/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::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(--ff-text);
  background: var(--bg-deep);
  color: var(--txt-bright);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--ff-text); border: none; background: none; cursor: pointer; }
address { font-style: normal; }

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

/* ------------------------------------------------------------
   LAYOUT HELPERS
   ------------------------------------------------------------ */
.block-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ------------------------------------------------------------
   TYPOGRAPHY SCALE
   ------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; }

.section-tag {
  display: inline-block;
  font-family: var(--ff-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-tag--light { color: var(--brand); }

.block-header { margin-bottom: 52px; }
.block-header--center { text-align: center; }
.block-header--center .block-intro { margin-left: auto; margin-right: auto; }

.block-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 18px;
  line-height: 1.1;
}
.block-title--dark { color: var(--txt-ink); }
.block-title em { font-style: italic; color: var(--brand); }

.block-intro {
  font-size: 1.05rem;
  color: var(--txt-mid);
  max-width: 640px;
  line-height: 1.72;
}
.block-intro--dark { color: var(--txt-ink-mid); }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  transition: all var(--base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: var(--bg-deep);
}
.btn--primary:hover {
  background: #00FFDA;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 229, 196, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--txt-bright);
  border: 1.5px solid var(--b-ghost);
}
.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn--green-cta {
  background: var(--txt-ink);
  color: #fff;
}
.btn--green-cta:hover {
  background: #252B46;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn--full { width: 100%; }
.btn--large { padding: 16px 32px; font-size: 1rem; }

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 800;
  padding: 18px 0;
  transition: padding var(--base), background var(--base), border-color var(--base);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(8, 13, 26, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--b-ghost);
}

.header-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-logo { flex-shrink: 0; color: var(--txt-bright); }
.logo-mark { width: 170px; height: 44px; display: block; }

.main-nav { flex: 1; }
.nav-list { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--txt-mid);
  transition: color var(--fast);
  letter-spacing: 0.03em;
}
.nav-link:hover { color: var(--txt-bright); }

.header-cta {
  flex-shrink: 0;
  background: var(--brand);
  color: var(--bg-deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: all var(--fast);
  letter-spacing: 0.02em;
}
.header-cta:hover {
  background: #00FFDA;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 229, 196, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt-bright);
  border-radius: 2px;
  transition: all var(--fast);
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero-block {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 72% 40%, rgba(0,229,196,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 15% 75%, rgba(167,139,250,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 85% 10%,  rgba(245,197,66,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid var(--b-brand);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 600;
  color: var(--txt-bright);
  line-height: 1.08;
}
.hero-heading em {
  font-style: italic;
  color: var(--brand);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--txt-mid);
  line-height: 1.72;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-chips {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.chip { font-size: 0.78rem; color: var(--txt-dim); font-weight: 500; }

/* Hero media */
.hero-media { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-brand), var(--sh-card);
}
.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.hero-glow-ring {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,229,196,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-float-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--bg-card);
  border: 1px solid var(--b-brand);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--sh-card);
  animation: float-bob 3.2s ease-in-out infinite;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}
.float-emoji { font-size: 1.9rem; line-height: 1; }
.float-text { display: flex; flex-direction: column; gap: 2px; }
.float-text strong { font-size: 0.82rem; font-weight: 700; color: var(--txt-bright); }
.float-text span   { font-size: 0.73rem; color: var(--brand); }

/* ------------------------------------------------------------
   AWARENESS SECTION  (pastel lavender)
   ------------------------------------------------------------ */
.awareness-block {
  background: var(--pastel-lavender);
  padding: var(--sec-y) 0;
}
.awareness-block .section-tag { color: var(--highlight); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat-tile {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 34px 26px;
  box-shadow: var(--sh-soft);
  border: 1px solid rgba(167,139,250,0.14);
  transition: transform var(--base);
}
.stat-tile:hover { transform: translateY(-5px); }
.stat-emoji   { font-size: 2.1rem; margin-bottom: 14px; }
.stat-figure  { font-family: var(--ff-display); font-size: 1.85rem; font-weight: 600; color: var(--txt-ink); margin-bottom: 8px; }
.stat-note    { font-size: 0.875rem; color: var(--txt-ink-mid); line-height: 1.55; }

/* ------------------------------------------------------------
   BENEFITS SECTION  (dark secondary)
   ------------------------------------------------------------ */
.benefits-block {
  background: var(--bg-mid);
  padding: var(--sec-y) 0;
}

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

.benefit-tile {
  background: var(--bg-card);
  border: 1px solid var(--b-ghost);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--base);
}
.benefit-tile:hover {
  border-color: var(--b-brand);
  transform: translateY(-5px);
  box-shadow: var(--sh-card);
}

.benefit-photo-wrap { height: 220px; overflow: hidden; }
.benefit-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.benefit-tile:hover .benefit-photo { transform: scale(1.06); }

.benefit-body {
  padding: 28px 28px 26px;
  position: relative;
}
.benefit-num {
  position: absolute;
  top: -22px;
  right: 22px;
  font-family: var(--ff-display);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(0,229,196,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.benefit-body h3 {
  font-family: var(--ff-display);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 10px;
}
.benefit-body p {
  font-size: 0.9rem;
  color: var(--txt-mid);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   PRODUCT SECTION  (deep dark)
   ------------------------------------------------------------ */
.product-block {
  background: var(--bg-deep);
  padding: var(--sec-y) 0;
  position: relative;
  overflow: hidden;
}
.product-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 40%, transparent 100%);
  opacity: 0.25;
  margin-bottom: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.product-visual-col { position: sticky; top: 100px; }
.product-frame {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--b-brand);
  border-radius: var(--r-xl);
  padding: 44px;
  text-align: center;
  overflow: hidden;
}
.product-shot {
  max-width: 260px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 42px rgba(0,229,196,0.2));
  transition: transform var(--slow);
}
.product-shot:hover { transform: scale(1.03) translateY(-4px); }
.product-halo {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 80px;
  background: radial-gradient(ellipse, rgba(0,229,196,0.22), transparent 70%);
  pointer-events: none;
}

.product-trust-strip {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ptrust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--b-ghost);
  padding: 11px 16px;
  border-radius: var(--r-md);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--txt-mid);
}
.ptrust-item span:first-child { font-size: 1rem; }

/* Product info column */
.product-name {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 4px;
}
.product-tagline {
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.product-feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--txt-mid);
  line-height: 1.55;
}
.product-feat-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-panel {
  background: var(--bg-surface);
  border: 1px solid var(--b-brand);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-tag-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-dim);
  font-weight: 700;
}
.price-tag-value {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brand-alt);
  line-height: 1.1;
}
.price-tag-note {
  font-size: 0.78rem;
  color: var(--txt-dim);
}

/* Order form */
.checkout-form {
  background: var(--bg-card);
  border: 1px solid var(--b-ghost);
  border-radius: var(--r-xl);
  padding: 30px;
}
.form-heading {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt-mid);
  letter-spacing: 0.05em;
}
.field-group input {
  background: var(--bg-mid);
  border: 1.5px solid var(--b-ghost);
  border-radius: var(--r-md);
  padding: 12px 15px;
  font-size: 0.93rem;
  font-family: var(--ff-text);
  color: var(--txt-bright);
  transition: border-color var(--fast), box-shadow var(--fast);
  outline: none;
}
.field-group input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,229,196,0.1);
}
.field-group input::placeholder { color: var(--txt-dim); }
.field-group input.invalid       { border-color: #FF6B6B; }

.field-consent { margin-bottom: 18px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--txt-mid);
  cursor: pointer;
  line-height: 1.55;
}
.consent-row input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.consent-row a { color: var(--brand); text-decoration: underline; }

.form-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--txt-dim);
  line-height: 1.55;
  text-align: center;
}

/* ------------------------------------------------------------
   AUDIENCE SECTION  (pastel mint)
   ------------------------------------------------------------ */
.audience-block {
  background: var(--pastel-mint);
  padding: var(--sec-y) 0;
}
.audience-block .section-tag { color: #059669; }

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

.audience-photos {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12px;
  align-items: start;
}
.aud-photo-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,0.14);
}
.aud-photo-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.aud-photo-side {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  margin-top: 40px;
}
.aud-photo-side img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}

.audience-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.95rem;
  color: var(--txt-ink-mid);
  line-height: 1.55;
}
.chk {
  width: 24px; height: 24px;
  min-width: 24px;
  background: rgba(5,150,105,0.12);
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ------------------------------------------------------------
   ROUTINE SECTION  (deep dark)
   ------------------------------------------------------------ */
.routine-block {
  background: var(--bg-deep);
  padding: var(--sec-y) 0;
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-index {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  opacity: 0.55;
}
.step-connector {
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--b-ghost), transparent);
}
.step-content h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--txt-mid);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   REVIEWS SECTION  (dark secondary)
   ------------------------------------------------------------ */
.reviews-block {
  background: var(--bg-mid);
  padding: var(--sec-y) 0;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--b-ghost);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  position: relative;
  transition: all var(--base);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: var(--b-brand);
  transform: translateY(-5px);
  box-shadow: var(--sh-card);
}
.review-card--featured {
  border-color: rgba(0,229,196,0.28);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(0,229,196,0.05) 100%);
}

.review-mark {
  font-family: var(--ff-display);
  font-size: 4.5rem;
  color: var(--brand);
  line-height: 0.75;
  margin-bottom: 14px;
  opacity: 0.5;
}
.review-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--txt-mid);
  line-height: 1.72;
  margin-bottom: 22px;
}
.review-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name  { font-size: 0.87rem; font-weight: 600; color: var(--txt-bright); font-style: normal; display: block; }
.reviewer-detail{ font-size: 0.74rem; color: var(--txt-dim); }
.review-rating  { color: var(--brand-alt); font-size: 0.8rem; letter-spacing: 2px; white-space: nowrap; }

/* ------------------------------------------------------------
   FAQ SECTION  (pastel lavender)
   ------------------------------------------------------------ */
.faq-block {
  background: var(--pastel-lavender);
  padding: var(--sec-y) 0;
}
.faq-block .section-tag { color: var(--highlight); }

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-entry {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(167,139,250,0.15);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(167,139,250,0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--txt-ink);
  text-align: left;
  transition: color var(--fast);
  cursor: pointer;
}
.faq-q:hover { color: #5B21B6; }
.faq-q[aria-expanded="true"] { color: #5B21B6; }

.faq-toggler {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--highlight);
  transition: transform var(--base);
  flex-shrink: 0;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-toggler { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.875rem;
  color: var(--txt-ink-mid);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CONTACT SECTION  (dark secondary)
   ------------------------------------------------------------ */
.contact-block {
  background: var(--bg-mid);
  padding: var(--sec-y) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon-wrap { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-row div { display: flex; flex-direction: column; gap: 4px; }
.contact-field-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-dim);
  font-weight: 700;
}
.contact-field-val {
  font-size: 0.98rem;
  color: var(--txt-bright);
  font-weight: 500;
}
a.contact-field-val:hover { color: var(--brand); }

.trust-panel {
  background: var(--bg-card);
  border: 1px solid var(--b-brand);
  border-radius: var(--r-xl);
  padding: 38px;
}
.trust-panel h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 22px;
}
.trust-items {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.trust-items li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.875rem;
  color: var(--txt-mid);
  line-height: 1.5;
}
.trust-items li span:first-child { font-size: 1.15rem; flex-shrink: 0; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--b-ghost);
}
.footer-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  padding: 60px 0 44px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo-link { color: var(--txt-mid); }
.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--txt-dim);
  line-height: 1.65;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-nav-col h4 {
  font-family: var(--ff-text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-mid);
  margin-bottom: 16px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a,
.footer-nav-col li {
  font-size: 0.85rem;
  color: var(--txt-dim);
  transition: color var(--fast);
  line-height: 1.55;
}
.footer-nav-col a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--b-ghost);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-legal-note {
  font-size: 0.76rem;
  color: var(--txt-dim);
  line-height: 1.65;
  max-width: 900px;
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--txt-dim);
}

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(130px);
  z-index: 9900;
  width: min(820px, 92vw);
  background: var(--bg-card);
  border: 1px solid var(--b-brand);
  border-radius: var(--r-xl);
  box-shadow: 0 10px 50px rgba(0,0,0,0.55), 0 0 0 1px var(--b-ghost);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.52s var(--ease), opacity 0.52s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-inner {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.83rem;
  color: var(--txt-mid);
  line-height: 1.6;
  min-width: 280px;
}
.cookie-text a { color: var(--brand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 11px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--fast);
  font-family: var(--ff-text);
}
.cookie-btn--primary { background: var(--brand); color: var(--bg-deep); border: none; }
.cookie-btn--primary:hover { background: #00FFDA; }
.cookie-btn--secondary {
  background: transparent;
  color: var(--txt-mid);
  border: 1px solid var(--b-ghost);
}
.cookie-btn--secondary:hover { border-color: var(--txt-mid); color: var(--txt-bright); }

/* ------------------------------------------------------------
   LEGAL PAGES BASE  (shared across privacy, terms, etc.)
   ------------------------------------------------------------ */
.legal-page {
  background: var(--bg-deep);
  min-height: 100vh;
  padding-top: 80px;
}
.legal-page .legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px var(--gutter) 96px;
}
.legal-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--txt-bright);
  margin-bottom: 8px;
}
.legal-page .legal-meta {
  font-size: 0.82rem;
  color: var(--txt-dim);
  margin-bottom: 48px;
}
.legal-page h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--txt-bright);
  margin: 36px 0 12px;
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--txt-mid);
  line-height: 1.72;
  margin-bottom: 14px;
}
.legal-page ul { list-style: disc; padding-left: 24px; }
.legal-page a { color: var(--brand); text-decoration: underline; }

/* ------------------------------------------------------------
   RESPONSIVE  — 1024px
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --sec-y: 72px; }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .product-visual-col { position: static; max-width: 440px; margin: 0 auto; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE  — 768px
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --sec-y: 56px;
    --gutter: 18px;
  }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--b-ghost);
    padding: 18px var(--gutter) 22px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--base);
    z-index: 799;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; gap: 14px; }
  .header-cta { display: none; }

  .hero-block { padding: 100px 0 60px; min-height: auto; }
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { height: 340px; }
  .hero-float-tag { bottom: -10px; left: 8px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-chips { flex-direction: column; gap: 6px; }

  .stats-row { grid-template-columns: 1fr; gap: 14px; }
  .benefits-grid { grid-template-columns: 1fr; }

  .audience-layout { grid-template-columns: 1fr; gap: 36px; }
  .audience-photos {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .aud-photo-main { grid-row: auto; }
  .aud-photo-main img,
  .aud-photo-side img { height: 190px; }
  .aud-photo-side { margin-top: 0; }

  .routine-steps { grid-template-columns: 1fr; gap: 28px; }
  .step-connector { display: none; }

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

  .field-row { grid-template-columns: 1fr; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 32px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; gap: 28px; }

  .faq-accordion { max-width: 100%; }
}

/* ------------------------------------------------------------
   RESPONSIVE  — 480px
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .footer-nav-cols { grid-template-columns: 1fr; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .hero-float-tag { display: none; }
  .product-frame { padding: 28px; }
}

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

/* ------------------------------------------------------------
   LEGAL TABLE  (cookie policy)
   ------------------------------------------------------------ */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: .85rem;
  color: var(--text-secondary);
}
.legal-table th {
  text-align: left;
  padding: .65rem .9rem;
  background: rgba(0,229,196,.07);
  color: var(--brand);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,229,196,.15);
}
.legal-table td {
  padding: .65rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table code {
  font-family: 'DM Mono', 'Fira Mono', monospace;
  font-size: .8rem;
  background: rgba(0,229,196,.07);
  padding: .1em .4em;
  border-radius: 4px;
  color: var(--brand);
}
.legal-table a { color: var(--brand); }
@media (max-width: 600px) {
  .legal-table { display: block; overflow-x: auto; }
}
