/* =====================================================
   NOVARIKA — style.css
   Architecture: Section-Scoped Semantic + Utility Helpers
   Variables: --brand / --brand-alt / --highlight family
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ===================================================== */

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

/* ── TOKEN LAYER ── */
:root {
  --brand:           #0d1f3c;
  --brand-alt:       #1a4068;
  --brand-deep:      #071225;
  --highlight:       #c9922a;
  --highlight-lt:    #e8b75a;
  --highlight-pale:  #fdf3e0;

  --text-heading:    #0d1f3c;
  --text-body:       #3c4a5e;
  --text-muted:      #6e7d91;
  --text-faint:      #9aabbe;

  --surface-0:       #ffffff;
  --surface-1:       #f7f5f0;
  --surface-2:       #edf1f7;

  --border-subtle:   rgba(13,31,60,0.10);
  --border-gold:     rgba(201,146,42,0.35);

  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-pill:     60px;

  --shadow-card:     0 2px 20px rgba(13,31,60,0.07);
  --shadow-lift:     0 8px 40px rgba(13,31,60,0.13);
  --shadow-gold:     0 4px 24px rgba(201,146,42,0.22);

  --max-w:           1160px;
  --section-py:      96px;
  --section-py-sm:   64px;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--surface-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; }

/* ── TYPOGRAPHY UTILITIES ── */
.u-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--highlight);
}
.u-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}
.u-headline--lg { font-size: clamp(2rem, 4vw, 3rem); }
.u-headline--md { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.u-headline--sm { font-size: 1.4rem; }

/* ── LAYOUT UTILITIES ── */
.u-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.u-text-center { text-align: center; }
.u-mt-sm  { margin-top: 12px; }
.u-mt-md  { margin-top: 24px; }
.u-mt-lg  { margin-top: 40px; }
.u-mt-xl  { margin-top: 56px; }

/* ── PILL BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--highlight-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,146,42,0.38);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-0);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
.btn-white:hover {
  background: var(--highlight-pale);
  color: var(--highlight);
}


/* ╔══════════════════════════════════════╗
   ║  SITE HEADER                         ║
   ╚══════════════════════════════════════╝ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(13,31,60,0.10); }

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.header-logo__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1;
}
.header-logo__wordmark span { color: var(--highlight); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav__lnk {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.header-nav__lnk:hover { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { color: var(--highlight); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface-0);
  z-index: 99;
  padding: 28px 24px 40px;
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav-panel.is-open { display: flex; }
.mobile-nav-panel__lnk {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-heading);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav-panel__lnk:hover { background: var(--surface-1); }
.mobile-nav-panel__divider { height: 1px; background: var(--border-subtle); margin-block: 12px; }
.mobile-nav-panel__cta { margin-top: 8px; }
.mobile-nav-panel__cta .btn-gold { width: 100%; justify-content: center; }


/* ╔══════════════════════════════════════╗
   ║  HERO BLOCK                          ║
   ╚══════════════════════════════════════╝ */
.hero-block {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--brand-deep);
  overflow: hidden;
}
.hero-block__photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.22;
  z-index: 0;
}
.hero-block__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(7,18,37,0.95) 40%,
    rgba(13,31,60,0.60) 100%
  );
  z-index: 1;
}
.hero-block__decor {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-content {}
.hero-content__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--highlight-lt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-content__kicker::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--highlight);
  flex-shrink: 0;
}
.hero-content__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-content__h1 em {
  font-style: italic;
  color: var(--highlight-lt);
}
.hero-content__sub {
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-content__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-content__trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  font-weight: 400;
}
.hero-trust-badge svg { color: var(--highlight); flex-shrink: 0; }

.hero-product-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-product-col__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,146,42,0.14) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-product-col__img {
  position: relative;
  z-index: 1;
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.45));
  animation: productFloat 7s ease-in-out infinite;
}
@keyframes productFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}


/* ╔══════════════════════════════════════╗
   ║  TRUST STRIP                         ║
   ╚══════════════════════════════════════╝ */
.trust-strip {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 26px;
}
.trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-right: 1px solid var(--border-subtle);
}
.trust-pill:last-child { border-right: none; }
.trust-pill__dot {
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-pill__dot svg { color: var(--highlight-lt); }


/* ╔══════════════════════════════════════╗
   ║  AUDIENCE SECTION                    ║
   ╚══════════════════════════════════════╝ */
.audience-section {
  padding-block: var(--section-py);
  background: var(--surface-0);
}
.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.audience-visual-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.audience-visual-stack__main {
  grid-column: 1 / -1;
  height: 270px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.audience-visual-stack__main img { width: 100%; height: 100%; object-fit: cover; }
.audience-visual-stack__secondary {
  height: 165px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.audience-visual-stack__secondary img { width: 100%; height: 100%; object-fit: cover; }
.audience-visual-stack__stat {
  height: 165px;
  border-radius: var(--radius-md);
  background: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.audience-visual-stack__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--highlight-lt);
  letter-spacing: -0.04em;
}
.audience-visual-stack__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  line-height: 1.4;
}

.audience-text {}
.audience-text__head { margin-bottom: 32px; }
.audience-text__head .u-label { display: block; margin-bottom: 10px; }
.audience-text__head .u-headline--lg { margin-bottom: 14px; }
.audience-text__head p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
}

.audience-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.audience-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-0);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.audience-check:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.audience-check__icon {
  width: 38px;
  height: 38px;
  background: var(--highlight-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.audience-check__icon svg { color: var(--highlight); }
.audience-check__body strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 3px;
}
.audience-check__body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }


/* ╔══════════════════════════════════════╗
   ║  PRODUCT SHOWCASE                    ║
   ╚══════════════════════════════════════╝ */
.product-showcase {
  padding-block: var(--section-py);
  background: var(--surface-1);
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-visual-wrap__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,146,42,0.10) 0%, rgba(238,241,247,0.40) 60%, transparent 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.product-visual-wrap__img {
  position: relative;
  z-index: 1;
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 18px 44px rgba(13,31,60,0.18));
}
.product-badge-float {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: -16px;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  min-width: 148px;
  text-align: center;
}
.product-badge-float__big {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight-lt);
  line-height: 1;
}
.product-badge-float__small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  line-height: 1.3;
}

.product-info {}
.product-info__label { display: block; margin-bottom: 10px; }
.product-info__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 28px;
}
.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}
.product-feature-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
}
.product-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}
.spec-tile {
  padding: 14px 16px;
  background: var(--surface-0);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.spec-tile__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.spec-tile__val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}


/* ╔══════════════════════════════════════╗
   ║  ROUTINE SEQUENCE (DARK)             ║
   ╚══════════════════════════════════════╝ */
.routine-sequence {
  padding-block: var(--section-py);
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.routine-sequence__glow-l {
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,146,42,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.routine-sequence__glow-r {
  position: absolute;
  bottom: -120px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,64,104,0.5) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.routine-sequence__head {
  max-width: 560px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.routine-sequence__head .u-label { color: var(--highlight); display: block; margin-bottom: 10px; }
.routine-sequence__head .u-headline--lg { color: #fff; margin-bottom: 14px; }
.routine-sequence__head p { color: rgba(255,255,255,0.62); font-size: 1rem; }

.steps-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.steps-trio__connector {
  position: absolute;
  top: 50px;
  left: calc(16.7% + 20px);
  right: calc(16.7% + 20px);
  height: 0;
  border-top: 2px dashed rgba(201,146,42,0.25);
  z-index: 0;
  pointer-events: none;
}
.step-tile {
  position: relative;
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  transition: background 0.3s, border-color 0.3s;
}
.step-tile:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,146,42,0.30);
}
.step-tile__ghost-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--highlight);
  opacity: 0.12;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.step-tile__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201,146,42,0.13);
  border: 1px solid rgba(201,146,42,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-tile__icon-wrap svg { color: var(--highlight-lt); }
.step-tile__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 10px;
}
.step-tile__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}


/* ╔══════════════════════════════════════╗
   ║  BENEFITS GRID                       ║
   ╚══════════════════════════════════════╝ */
.benefits-section {
  padding-block: var(--section-py);
  background: var(--surface-0);
}
.benefits-section__head {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}
.benefits-section__head .u-label { display: block; margin-bottom: 10px; }
.benefits-section__head .u-headline--lg { margin-bottom: 14px; }
.benefits-section__head p { color: var(--text-muted); font-size: 1rem; }

.benefits-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.benefit-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.benefit-card__body { padding: 26px 24px; }
.benefit-card__icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.benefit-card__icon {
  width: 40px;
  height: 40px;
  background: var(--highlight-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon svg { color: var(--highlight); }
.benefit-card__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.benefit-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit-card__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }


/* ╔══════════════════════════════════════╗
   ║  VOICES SECTION (TESTIMONIALS)       ║
   ╚══════════════════════════════════════╝ */
.voices-section {
  padding-block: var(--section-py);
  background: var(--surface-1);
}
.voices-section__head { max-width: 560px; margin-bottom: 52px; }
.voices-section__head .u-label { display: block; margin-bottom: 10px; }
.voices-section__head .u-headline--lg { margin-bottom: 14px; }
.voices-section__head p { color: var(--text-muted); font-size: 1rem; }

.voices-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.voice-card {
  position: relative;
  background: var(--surface-0);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.voice-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.voice-card__openquote {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--highlight);
  opacity: 0.15;
  user-select: none;
}
.voice-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.voice-card__star { color: var(--highlight); font-size: 0.9rem; }
.voice-card__quote {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.voice-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.voice-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--highlight-lt);
  flex-shrink: 0;
}
.voice-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.3;
}
.voice-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ╔══════════════════════════════════════╗
   ║  QUESTIONS SECTION (FAQ)             ║
   ╚══════════════════════════════════════╝ */
.questions-section {
  padding-block: var(--section-py);
  background: var(--surface-0);
}
.questions-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.questions-sidebar__label { display: block; margin-bottom: 10px; }
.questions-sidebar__title { margin-bottom: 14px; }
.questions-sidebar__text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.questions-sidebar__img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.questions-sidebar__img img { width: 100%; height: 100%; object-fit: cover; }

.faq-stack { display: flex; flex-direction: column; gap: 10px; }
.faq-entry {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-entry.open { border-color: var(--border-gold); }
.faq-entry__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.faq-entry__q {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-heading);
  flex: 1;
  line-height: 1.45;
}
.faq-entry__toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  transition: background 0.2s, transform 0.35s ease, color 0.2s;
}
.faq-entry.open .faq-entry__toggle {
  background: var(--highlight);
  color: #fff;
  transform: rotate(45deg);
}
.faq-entry__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
  padding: 0 22px;
}
.faq-entry.open .faq-entry__panel {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-entry__a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}


/* ╔══════════════════════════════════════╗
   ║  ORDER SECTION                       ║
   ╚══════════════════════════════════════╝ */
.order-section {
  padding-block: var(--section-py);
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, #1c3f6e 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.order-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,64,104,0.45) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.order-content__label { color: var(--highlight); display: block; margin-bottom: 10px; }
.order-content__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.order-content__text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.order-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.order-include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}
.order-include svg { color: var(--highlight); flex-shrink: 0; }

.order-form-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}
.order-form-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.order-form-card__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}
.field-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.02em;
}
.field-row input,
.field-row select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-heading);
  background: var(--surface-0);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field-row input:focus,
.field-row select:focus {
  border-color: var(--brand-alt);
  box-shadow: 0 0 0 3px rgba(26,64,104,0.09);
}
.field-row input::placeholder { color: var(--text-faint); }
.form-action {
  width: 100%;
  padding: 15px;
  background: var(--highlight);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold);
  margin-top: 6px;
  transition: all 0.25s ease;
}
.form-action:hover {
  background: var(--highlight-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,146,42,0.42);
}
.form-notice {
  text-align: center;
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ╔══════════════════════════════════════╗
   ║  REACH SECTION (CONTACT)             ║
   ╚══════════════════════════════════════╝ */
.reach-section {
  padding-block: var(--section-py-sm);
  background: var(--surface-1);
  border-top: 1px solid var(--border-subtle);
}
.reach-section__head {
  text-align: center;
  margin-bottom: 44px;
}
.reach-section__head .u-label { display: block; margin-bottom: 8px; }
.reach-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reach-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  background: var(--surface-0);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reach-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.reach-card__icon {
  width: 46px;
  height: 46px;
  background: var(--brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reach-card__icon svg { color: var(--highlight-lt); }
.reach-card__lbl {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.reach-card__val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}
.reach-card__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }


/* ╔══════════════════════════════════════╗
   ║  SITE FOOTER                         ║
   ╚══════════════════════════════════════╝ */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.60);
  padding-top: 60px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand__wordmark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand__wordmark span { color: var(--highlight); }
.footer-brand__blurb {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}
.footer-link-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link-list a:hover { color: var(--highlight-lt); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom__copy { font-size: 0.8rem; }
.footer-bottom__disclaimer {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  max-width: 580px;
  line-height: 1.6;
  text-align: right;
}


/* ╔══════════════════════════════════════╗
   ║  LEGAL / STATIC PAGES                ║
   ╚══════════════════════════════════════╝ */
.page-wrap {
  max-width: 780px;
  margin-inline: auto;
  padding: 64px 24px 80px;
}
.page-wrap__hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.page-wrap__hero .u-label { display: block; margin-bottom: 8px; }
.page-wrap__hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-wrap__hero p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.page-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 40px;
  margin-bottom: 14px;
}
.page-wrap p,
.page-wrap li {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 14px;
}
.page-wrap ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.page-wrap a { color: var(--brand-alt); text-decoration: underline; }
.page-wrap a:hover { color: var(--highlight); }

/* Success page */
.success-screen {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.success-screen__ring {
  width: 84px;
  height: 84px;
  background: var(--highlight-pale);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 28px;
}
.success-screen__ring svg { color: var(--highlight); }
.success-screen h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.success-screen p {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; --section-py-sm: 48px; }
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-product-col    { display: none; }
  .audience-layout     { grid-template-columns: 1fr; }
  .product-layout      { grid-template-columns: 1fr; }
  .questions-layout    { grid-template-columns: 1fr; }
  .questions-sidebar__img { display: none; }
  .order-layout        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --section-py-sm: 40px; }
  .header-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .steps-trio  { grid-template-columns: 1fr; }
  .steps-trio .steps-trio__connector { display: none; }
  .benefits-trio { grid-template-columns: 1fr; }
  .voices-quad   { grid-template-columns: 1fr; }
  .reach-trio    { grid-template-columns: 1fr; }
  .trust-strip__row .trust-pill { border-right: none; border-bottom: 1px solid var(--border-subtle); width: 100%; }
  .trust-strip__row .trust-pill:last-child { border-bottom: none; }
  .audience-visual-stack { grid-template-columns: 1fr; }
  .audience-visual-stack__secondary { display: none; }
  .audience-visual-stack__main { height: 220px; }
  .product-specs-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom__disclaimer { text-align: left; }
}

@media (max-width: 520px) {
  .hero-content__actions { flex-direction: column; }
  .hero-content__actions .btn-gold,
  .hero-content__actions .btn-ghost-light { width: 100%; justify-content: center; }
  .order-form-card { padding: 28px 18px; }
  .hero-content__h1 { font-size: 2.5rem; }
}
