/* ══════════════════════════════════════════════════════════════
   DATE HOTTER GIRLS — Design System v6
   White · Editorial · Playfair Display + Lora
   Black nav · Social sidebar · Unified brand palette
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --off-white:    #F6F6F8;
  --cream:        #FAFAF8;
  --bg:           var(--white);

  --text-primary: #111111;
  --text-body:    #444444;
  --text-muted:   #777777;
  --text-faint:   #AAAAAA;
  --text-secondary: #555555;

  --gold:         #f2cd2c;
  --gold-hover:   #f5d750;
  --gold-light:   #f2cd2c;
  --gold-bg:      rgba(242, 205, 44, 0.08);
  --gold-border:  rgba(242, 205, 44, 0.3);

  --purple:       #5A3FD0;
  --purple-hover: #6B4BE8;
  --purple-light: #7B63E0;
  --purple-bg:    rgba(90, 63, 208, 0.06);

  --border:       #E6E6E6;
  --border-light: #F0F0F0;
  --border-dark:  #D0D0D0;

  --charcoal:     #1A1A1A;
  --dark:         #1A1A1A;
  --dark-soft:    #2A2A2A;
  --dark-surface: #111214;
  --navbar-bg:    #000000;

  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --radius-sm:    4px;

  --ease:         cubic-bezier(.4, 0, .2, 1);
  --transition:   0.25s var(--ease);

  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 8px 28px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl:    0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.04);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-hover); }
ul, ol { list-style: none; }
::selection { background: rgba(90, 63, 208, 0.15); color: var(--text-primary); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.text-center h1, .text-center h2, .text-center h3,
.text-center h4, .text-center h5 { text-align: center; }
h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.1; }
h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 8px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text-primary); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container       { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.section          { padding: 120px 0; }
.section--sm      { padding: 72px 0; }
.section--xs      { padding: 48px 0; }
.section--alt     { background: var(--off-white); }
.section--dark    { background: var(--dark-surface); color: #ddd; }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark strong { color: #fff; }
.section--dark .text-muted { color: #999; }
.section--cream   { background: var(--cream); }

/* ── TEXTURED BACKDROP SECTIONS ───────────────────────────────
   Texture = stage backdrop. White panel = reading surface.
   Content never sits directly on the texture.
   ─────────────────────────────────────────────────────────────── */
.section--textured {
  background-color: var(--off-white);
  padding: 80px 0;
}
.section--textured .container,
.section--textured .container--narrow,
.section--textured .container--wide {
  /* intentional: don't override container max-width, just visual treatment */
}

/* White content panel that floats above the texture */
.panel {
  background: var(--white);
  border-radius: 10px;
  padding: 72px 64px;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid var(--border-light);
  position: relative;
}
.panel--lg {
  padding: 88px 80px;
}
.panel--flush {
  padding: 56px 48px;
}

/* Grids inside panels need no extra styling — they just work */
.panel .grid-3 { margin-top: 48px; }
.panel .grid-2 { margin-top: 48px; }

/* Cards inside panels: remove border since panel provides the container */
.panel .card {
  border-color: var(--border);
}

/* Responsive panel */
@media (max-width: 900px) {
  .panel { padding: 48px 32px; border-radius: 8px; }
  .panel--lg { padding: 56px 36px; }
}
@media (max-width: 600px) {
  .panel { padding: 36px 20px; }
  .panel--lg { padding: 44px 24px; }
  .section--textured { padding: 48px 0; }
}

/* ── UTILITY ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-gold   { color: var(--gold); }
.text-purple { color: var(--purple); }
.text-muted  { color: var(--text-muted); }
.text-dark   { color: var(--text-primary); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ── Dark section text helpers ─────────────────────────────── */
.text-white      { color: #fff; }
.text-light      { color: #aaa; }
.text-muted-dark { color: #999; }
.eyebrow--gold   { color: var(--gold-light); }

/* ── Layout helpers ────────────────────────────────────────── */
.flex-center { display: flex; justify-content: center; }
.stat-bar--left { justify-content: flex-start; gap: 48px; }
.stat-bar__item--left { text-align: left; }

/* ── Placeholder variants ──────────────────────────────────── */
.placeholder--portrait { aspect-ratio: 4/5; min-height: 440px; }
.placeholder--square   { aspect-ratio: 1; min-height: 400px; border-radius: 16px; }

/* ── Split gap variant ─────────────────────────────────────── */
.split--wide { gap: 100px; }

/* ── Feature list dark variant ─────────────────────────────── */
.feature-list--dark li { color: #bbb; }

/* ── Quiz block micro text ─────────────────────────────────── */
.quiz-block__micro { margin-top: 16px; font-size: 12px; color: var(--text-faint); }

/* ── Email micro text ──────────────────────────────────────── */
.email-micro { margin-top: 12px; font-size: 12px; color: #555; }

/* ── Footer logo ───────────────────────────────────────────── */
.footer__logo { height: 28px; opacity: 0.5; }

/* ── Footer social icons ───────────────────────────────────── */
.footer__social {
  display: flex; gap: 16px; margin-top: 16px;
}
.footer__social a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--gold); }
.footer__tagline { font-size: 13px; color: var(--text-faint); margin-top: 12px; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: block;
}
.section--dark .eyebrow { color: var(--gold-light); }

.subtitle {
  font-size: 18px; color: var(--text-muted); max-width: 600px;
  margin: 0 auto 48px; line-height: 1.75;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 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; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 6px;
  font-family: var(--font-ui);
  font-weight: 600; font-size: 14px; letter-spacing: 0.5px;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; text-align: center;
}
.btn--gold {
  background: var(--gold); color: #111111;
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-hover); color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(242,205,44,0.4);
}
.btn--purple {
  background: var(--purple); color: var(--white);
}
.btn--purple:hover {
  background: var(--purple-hover); color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107,75,232,0.3);
}
.btn--outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-dark);
}
.btn--outline:hover {
  border-color: var(--text-primary); color: var(--text-primary);
}
.btn--outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold); color: var(--white);
}
.btn--outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: #fff; color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn--outline-purple {
  background: transparent; color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn--outline-purple:hover {
  background: var(--purple); color: var(--white);
}
.btn--dark {
  background: var(--dark); color: var(--white);
}
.btn--dark:hover {
  background: #333; color: var(--white);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white); color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--white:hover { box-shadow: var(--shadow-md); }
.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   NAV — Black navbar
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navbar-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom-color: rgba(255,255,255,0.1);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 64px;
}
.nav__logo img { height: 30px; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-align: left;
}
.nav__links a:hover { color: #fff; }
.nav__links a.active { color: #fff; font-weight: 600; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta .btn { padding: 8px 22px; font-size: 13px; }
.nav__toggle {
  display: none; background: none; border: none;
  color: #fff; cursor: pointer; font-size: 22px;
  line-height: 1; padding: 4px;
}
/* Dark mode toggle stub */
.nav__theme-toggle {
  background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; transition: all var(--transition);
  color: rgba(255,255,255,0.5);
}
.nav__theme-toggle:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* Mobile nav */
.nav__mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   SOCIAL SIDEBAR — Disabled (attention leak)
   Social links moved to footer only.
   ══════════════════════════════════════════════════════════════ */
.social-sidebar { display: none; }

/* ══════════════════════════════════════════════════════════════
   HERO — Static full-bleed image
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 64px;
}

/* Hero content */
.hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  width: 100%;
}
.hero__copy {
  max-width: 520px;
}
.hero__copy .eyebrow { color: var(--gold-light); margin-bottom: 20px; }
.hero__copy h1 {
  color: #fff; margin-bottom: 24px;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero__copy h1 em {
  font-style: italic; color: var(--gold-light);
  text-shadow:
    0 0 20px rgba(242, 205, 44, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.6);
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.08);
}
.hero__copy .lead {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 40px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__buttons .btn--gold { padding: 16px 40px; font-size: 14px; }
.hero__micro {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.hero__scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.4); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-hint::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* Hero background image */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center right;
}
.hero__bg-mobile { display: none; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 25%,
    rgba(0,0,0,0.2) 50%,
    transparent 70%
  );
}

/* ── LOGO STRIP / AUTHORITY ─────────────────────────────────── */
.logo-strip {
  padding: 48px 0 44px;
  background: var(--gold);
  border-bottom: none;
}
.logo-strip__label {
  display: block; text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 28px;
}
.logo-strip__row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.logo-strip__row + .logo-strip__row {
  margin-top: 20px;
  gap: 44px;
}
.logo-strip__logo {
  display: block;
  height: 20px; width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.logo-strip__logo:hover {
  opacity: 0.45;
}

/* ── STAT BAR ───────────────────────────────────────────────── */
.stat-bar {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.stat-bar__item { text-align: center; }
.stat-bar__num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700; color: var(--text-primary); line-height: 1;
}
.stat-bar__label {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 8px; font-weight: 500;
}
.section--dark .stat-bar__num { color: #fff; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
  transform: translateY(-4px);
}
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.card__icon--purple { background: var(--purple-bg); }
.card__thumb {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  overflow: hidden;
}
.card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
/* ── Approach editorial image ── */
.approach__img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.approach__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
.approach__img-mobile { display: none; }

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* Alt bg cards */
.section--alt .card { background: var(--white); }

/* Dark section cards */
.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

/* ── SPLIT LAYOUT ───────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__visual {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ── CONTENT CARD (articles) ────────────────────────────────── */
.content-card {
  display: block; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition); color: inherit;
}
.content-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  color: inherit;
}
.content-card__img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.content-card__img img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.4s var(--ease);
}
.content-card:hover .content-card__img img {
  transform: scale(1.04);
}
/* Placeholder text — only visible when no image is present */
.content-card__img::after {
  content: attr(data-label);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-faint);
}
.content-card__body { padding: 28px; }
.content-card__tag {
  font-size: 11px; font-weight: 600; color: var(--purple);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.content-card__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.35;
}
.content-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIAL CARDS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card__stars {
  color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px; line-height: 1.8; color: var(--text-body);
  font-style: italic;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 12px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--border-light);
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700; font-size: 14px; color: var(--text-primary);
}
.testimonial-card__detail { font-size: 12px; color: var(--text-muted); }
.testimonial-card__prompt {
  font-size: 12px; color: var(--gold); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}

.section--dark .testimonial-card { background: var(--dark-soft); border-color: #333; }
.section--dark .testimonial-card p { color: #bbb; }
.section--dark .testimonial-card__name { color: #fff; }
.section--dark .testimonial-card__author { border-top-color: #333; }

/* ── OFFER / PRICING CARDS ──────────────────────────────────── */
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px; text-align: center;
  transition: all var(--transition);
  position: relative;
}
.offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.offer-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.offer-card--featured::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; background: var(--gold); border-radius: 0 0 3px 3px;
}
.offer-card__tag {
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.offer-card h3 {
  font-size: 26px; margin-bottom: 8px;
}
.offer-card__positioning {
  font-size: 13px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.offer-card__desc {
  font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7;
}
.offer-card__price {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700; color: var(--text-primary); line-height: 1;
}
.offer-card__price span { font-size: 22px; }
.offer-card__period { font-size: 13px; color: var(--text-muted); margin: 6px 0 24px; }
.offer-card__features {
  text-align: left; margin: 0 0 28px; padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.offer-card__features li {
  padding: 7px 0; font-size: 14px; color: var(--text-body);
  display: flex; gap: 10px; align-items: center;
}
.offer-card__features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f2cd2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ── FEATURE LIST ───────────────────────────────────────────── */
.feature-list li {
  padding: 10px 0; font-size: 15px; color: var(--text-body);
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-list li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-bg); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f2cd2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* ── NUMBERED LIST ──────────────────────────────────────────── */
.numbered-list li {
  padding: 24px 0; border-bottom: 1px solid var(--border-light);
  display: flex; gap: 24px; align-items: flex-start;
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list__num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--gold);
  min-width: 48px; line-height: 1; opacity: 0.5;
}
.numbered-list h4 { font-size: 18px; margin-bottom: 6px; }
.numbered-list p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; line-height: 1.75; }

/* ── QUIZ BLOCK ─────────────────────────────────────────────── */
.quiz-block {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 64px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quiz-block::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--purple));
  border-radius: 0 0 3px 3px;
}
.quiz-block h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.quiz-block p { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; line-height: 1.8; }

/* ── EMAIL FORM ─────────────────────────────────────────────── */
.email-block { text-align: center; max-width: 520px; margin: 0 auto; }
.email-form {
  display: flex; gap: 10px; margin-top: 28px;
}
.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1; padding: 14px 18px; border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white); color: var(--text-primary);
  font-size: 14px; font-family: var(--font-body);
  transition: border-color var(--transition);
}
.email-form input::placeholder { color: var(--text-faint); }
.email-form input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(90,63,208,0.08); }
.email-form .btn { flex-shrink: 0; }
.email-micro { margin-top: 14px; font-size: 12px; color: var(--text-faint); }

.section--dark .email-form input {
  background: var(--dark-soft); border-color: #444; color: #fff;
}
.section--dark .email-form input::placeholder { color: #888; }
.section--dark .email-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,106,0.15); }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-body); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px; border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white); color: var(--text-primary);
  font-size: 15px; font-family: var(--font-body);
  transition: all var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(90,63,208,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

/* ── PHONE MOCKUP ───────────────────────────────────────────── */
.phone-mockup {
  background: var(--dark-surface);
  border-radius: 28px; border: 6px solid #333;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 9/19.5; max-width: 280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 12px; font-weight: 600;
  overflow: hidden; position: relative;
  letter-spacing: 1px; text-transform: uppercase;
}
.phone-mockup::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 20px; border-radius: 10px;
  background: #222;
}

/* ── PLACEHOLDER ────────────────────────────────────────────── */
.placeholder {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: var(--off-white); border: 1px solid var(--border);
}
.placeholder__label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-faint);
}
.placeholder__sublabel {
  font-size: 10px; color: var(--text-faint); letter-spacing: 1px; opacity: 0.7;
}

/* ── STEP LIST ──────────────────────────────────────────────── */
.step-list { counter-reset: step; }
.step-list__item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
}
.step-list__item:last-child { border-bottom: none; }
.step-list__num {
  counter-increment: step;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.step-list__num::before { content: counter(step); }
.step-list__content h3 { margin-bottom: 6px; }
.step-list__content p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-align: left; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--purple); }
.faq-question::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer__inner {
  padding: 0 0 22px; font-size: 14px; color: var(--text-muted); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── ARTICLE BODY ───────────────────────────────────────────── */
.article-body {
  max-width: 700px; margin: 0 auto; font-size: 17px; line-height: 1.85;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 30px; margin: 56px 0 16px;
}
.article-body h3 { font-size: 22px; margin: 40px 0 12px; }
.article-body p { margin-bottom: 24px; }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding-left: 24px;
  margin: 32px 0; font-style: italic; color: var(--text-muted);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 0;
  background: var(--dark-surface); color: #999;
  text-align: left;
}
.footer h4 { color: #fff; }
.footer a { color: #888; }
.footer a:hover { color: var(--gold); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
.footer__brand p {
  font-size: 13px; color: #777; margin-top: 20px; line-height: 1.8; max-width: 280px;
}
.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 20px;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a { font-size: 13px; }
/* Footer legal bottom bar — separated from content */
.footer__legal-bar {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.footer__legal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #444;
}
.footer__legal-inner a {
  color: #555;
  font-size: 12px;
  transition: color 0.2s ease;
}
.footer__legal-inner a:hover { color: var(--gold); }
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
}
.footer__legal-links span {
  color: #333;
}

/* ── TESTIMONIAL CAROUSEL ──────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}
.testimonial-carousel__track {
  overflow: hidden;
}
.testimonial-carousel__slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}
.testimonial-carousel__slide {
  min-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-carousel__card {
  text-align: center;
  padding: 48px 40px;
}
.testimonial-carousel__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 32px;
  position: relative;
}
.testimonial-carousel__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.testimonial-carousel__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.testimonial-carousel__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  max-width: 280px;
  margin: 0 auto;
}
.testimonial-carousel__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-carousel__name {
  font-weight: 700; font-size: 14px; color: var(--text-primary);
  text-align: left;
}
.testimonial-carousel__detail {
  font-size: 12px; color: var(--text-muted); text-align: left;
}
/* Carousel navigation arrows */
.testimonial-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-muted);
  z-index: 2;
}
.testimonial-carousel__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.testimonial-carousel__arrow--prev { left: 0; }
.testimonial-carousel__arrow--next { right: 0; }
.testimonial-carousel__arrow svg {
  width: 16px; height: 16px;
}
/* Carousel dots */
.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testimonial-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.testimonial-carousel__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.divider {
  border: none; height: 1px; margin: 0;
  background: var(--border-light);
}
.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold-border), rgba(242,205,44,0.4), var(--gold-border), transparent);
}

/* ── PARALLAX IMAGE BREAK ──────────────────────────────────── */
.parallax-break {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--dark-surface);
}
/* Dark overlay */
.parallax-break::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(17,18,20,0.2);
  pointer-events: none;
}
/* Breakout: go full-width from inside a narrow container */
.parallax-break--breakout {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 48px;
  margin-bottom: 48px;
}

/* ── PAGE HEADER (inner pages) ──────────────────────────────── */
.page-header {
  padding: 160px 0 72px; text-align: center;
  background: var(--dark-surface);
}
.page-header h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-header .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.page-header .lead {
  font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.8;
  max-width: 560px; margin: 0 auto;
}

/* ── Start Here hero with background image ── */
.start-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 60px;
  padding-top: calc(60px + 40px); /* 40px nudge to clear fixed nav */
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-surface);
}
.start-hero__bg {
  position: absolute; inset: 0;
}
.start-hero__bg img {
  position: absolute; inset: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.start-hero__bg-mobile { display: none !important; }
.start-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,18,20,0.78) 0%,
    rgba(17,18,20,0.55) 45%,
    rgba(17,18,20,0.75) 100%
  );
}
.start-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
}
.start-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  text-align: center;
}
.start-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.start-hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE PAGES
   ══════════════════════════════════════════════════════════════ */

/* ── Article Hero ──────────────────────────────────────────── */
.article-hero {
  padding: 140px 0 56px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
}
.article-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-hero__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.article-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 600px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
}
.article-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-hero__meta .separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
}
.article-hero__byline {
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Article Body ──────────────────────────────────────────── */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-thumb-hero {
  display: block;
  width: 100%;
  margin: 0 0 40px;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.article-thumb-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.article-content > p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 28px;
}
.article-content > p:first-child {
  font-size: 19px;
  color: var(--text-primary);
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 56px 0 24px;
  line-height: 1.25;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 40px 0 16px;
  line-height: 1.35;
}
.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}
.article-content em {
  font-style: italic;
}
.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.article-content a:hover {
  color: var(--gold-hover);
}
.article-content ul,
.article-content ol {
  margin: 0 0 28px;
  padding-left: 24px;
}
.article-content li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 10px;
}
.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 36px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}
.article-content hr {
  border: none;
  height: 1px;
  background: var(--border-light);
  margin: 48px 0;
}

/* ── Pull Quote ────────────────────────────────────────────── */
.pull-quote {
  text-align: center;
  padding: 40px 32px;
  margin: 48px -24px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0 !important;
}
.pull-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ── Callout Box ───────────────────────────────────────────── */
.callout {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
}
.callout--gold {
  border-left: 3px solid var(--gold);
  background: var(--gold-bg);
  border-color: var(--gold-border);
  border-left-color: var(--gold);
}
.callout__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.callout p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 12px;
}
.callout p:last-child { margin-bottom: 0; }

/* ── Inline CTA Block ──────────────────────────────────────── */
.inline-cta {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 48px 0;
  text-align: center;
}
.inline-cta__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.inline-cta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}
.inline-cta p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.inline-cta .btn { margin: 0; }

/* ── End-of-Article CTA ────────────────────────────────────── */
.article-end-cta {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  padding: 72px 24px;
}
.article-end-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-end-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.article-end-cta__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.article-end-cta__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold-border);
}
.article-end-cta__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article-end-cta__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-end-cta__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.article-end-cta__card .btn {
  font-size: 13px;
  padding: 10px 24px;
}

/* ── Related Articles ──────────────────────────────────────── */
.related-articles {
  padding: 72px 24px;
  border-top: 1px solid var(--border-light);
}
.related-articles__inner {
  max-width: 720px;
  margin: 0 auto;
}
.related-articles__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.related-articles__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.related-articles__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: all 0.2s ease;
}
.related-articles__item:first-child {
  padding-top: 0;
}
.related-articles__item:last-child {
  border-bottom: none;
}
.related-articles__item:hover {
  padding-left: 8px;
}
.related-articles__item-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.related-articles__item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  transition: color 0.2s ease;
}
.related-articles__item:hover .related-articles__item-title {
  color: var(--gold);
}
.related-articles__item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT / PHILOSOPHY PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── About Hero ───────────────────────────────────────────── */
.about-hero {
  padding: 160px 0 72px;
  background: var(--dark-surface);
  text-align: center;
}
.about-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
}
.about-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 0;
  line-height: 1.1;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.about-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.about-hero__rule {
  border: none;
  height: 2px;
  width: 60px;
  margin: 40px auto 0;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

/* ── About Body tweaks ────────────────────────────────────── */
.about-body {
  padding-top: 80px;
  padding-bottom: 40px;
}

/* ── Signature block ──────────────────────────────────────── */
.about-signature {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.about-signature .divider--gold {
  margin-bottom: 40px;
}
.about-signature__inner {
  text-align: center;
}
.about-signature__names {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-signature__title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.about-signature__est {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE LIBRARY / HUB PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Library Hero ─────────────────────────────────────────── */
.library-hero {
  padding: 140px 0 64px;
  background: var(--dark-surface);
  text-align: center;
}
.library-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
}
.library-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 24px;
}
.library-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.library-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.library-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Featured Layout ──────────────────────────────────────── */
.library-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Library Card (shared) ────────────────────────────────── */
.library-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.library-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-border);
  color: inherit;
}
.library-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.library-card__cat {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.library-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}
.library-card--hero .library-card__title {
  font-size: clamp(22px, 2.5vw, 28px);
}
.library-card .library-card__title {
  font-size: 18px;
}
.library-card__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.library-card--hero .library-card__excerpt {
  font-size: 16px;
}
.library-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.library-card__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
}
.library-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.library-card:hover .library-card__cta {
  color: var(--gold-hover);
}

/* Hero card spans full left column height */
.library-card--hero {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: var(--gold-border);
}
.library-card--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}

/* Secondary card grid (right column) */
.library-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.library-featured__grid .library-card {
  padding: 24px 22px;
}
.library-featured__grid .library-card__title {
  font-size: 16px;
}
.library-featured__grid .library-card__excerpt {
  font-size: 14px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Library Card Image ───────────────────────────────────── */
.library-card__img {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  margin: -32px -28px 24px -28px;
  width: calc(100% + 56px);
}
.library-card--hero .library-card__img {
  margin: -40px -36px 28px -36px;
  width: calc(100% + 72px);
  padding-top: 50%; /* wider ratio for hero */
}
.library-featured__grid .library-card__img {
  margin: -24px -22px 20px -22px;
  width: calc(100% + 44px);
}
.library-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.library-card:hover .library-card__img img {
  transform: scale(1.04);
}

/* ── Related Articles Image ──────────────────────────────── */
.related-articles__item-img {
  width: 100px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-articles__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA Strip ────────────────────────────────────────────── */
.library-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
}
.library-cta-strip__copy {
  flex: 1;
}
.library-cta-strip__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.library-cta-strip__copy p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ── Topic Sections ───────────────────────────────────────── */
.library-topic {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}
.library-topic:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.library-topic__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.library-topic__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.library-topic__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.library-topic__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* Topic list cards — vertical layout with image on top */
.library-topic__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.library-topic-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  background: var(--white);
  overflow: hidden;
}
.library-topic-card:first-child {
  border-radius: var(--radius-lg);
}
.library-topic-card:last-child {
  border-radius: var(--radius-lg);
  margin-bottom: 0;
}
.library-topic-card:only-child {
  border-radius: var(--radius-lg);
}
.library-topic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-border);
  color: inherit;
}
.library-topic-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.library-topic-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.library-topic-card:hover .library-topic-card__img img {
  transform: scale(1.04);
}
.library-topic-card__content {
  flex: 1;
  padding: 20px 24px 24px;
}
.library-topic-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.library-topic-card:hover .library-topic-card__title {
  color: var(--gold);
}
.library-topic-card__excerpt {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.library-topic-card__meta {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 500;
  white-space: nowrap;
  padding: 0 24px 20px;
  flex-shrink: 0;
}

/* ── Coming Soon ──────────────────────────────────────────── */
.library-coming-soon {
  text-align: center;
  padding: 56px 0 0;
}
.library-coming-soon__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.library-coming-soon__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 28px;
}
.library-coming-soon__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.library-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.library-tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-bg);
}

/* ══════════════════════════════════════════════════════════════
   COACHING INTAKE FORM
   ══════════════════════════════════════════════════════════════ */
.coaching-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.coaching-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coaching-form__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.coaching-form__req {
  color: var(--gold);
  font-weight: 700;
}
.coaching-form__input,
.coaching-form__textarea {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.coaching-form__input:focus,
.coaching-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 205, 44, 0.15);
}
.coaching-form__input::placeholder,
.coaching-form__textarea::placeholder {
  color: var(--text-faint);
}
.coaching-form__textarea {
  resize: vertical;
  min-height: 80px;
}
.coaching-form__hint {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.5;
}
.coaching-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.coaching-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-body);
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.2s ease;
}
.coaching-form__radio:hover {
  border-color: var(--gold-border);
  background: var(--gold-bg);
}
.coaching-form__radio input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  margin: 0;
}
.coaching-form__radio input[type="radio"]:checked + span {
  color: var(--text-primary);
  font-weight: 600;
}
.coaching-form__radio:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.coaching-form__submit {
  text-align: center;
  padding-top: 16px;
}
.coaching-form__fine-print {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── MOBILE HERO: overlay on portrait image ── */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 80px;
  }
  .hero__eyebrow { display: none; }
  .hero__bg {
    position: absolute; inset: 0;
  }
  .hero__bg-desktop { display: none; }
  .hero__bg-mobile {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.7) 35%,
      rgba(0,0,0,0.2) 55%,
      transparent 70%
    );
  }
  .hero__inner {
    position: relative;
    z-index: 1;
    padding: 20px 24px 0;
    width: 100%;
  }
  .hero__copy {
    max-width: 100%;
    text-align: center;
  }
  .hero__copy h1 {
    font-size: clamp(28px, 8vw, 44px);
    text-align: center;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }
  .hero__lead {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-align: center;
    color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__buttons .btn--gold {
    padding: 14px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .hero__micro {
    text-align: center;
    margin-top: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  /* Approach image swap */
  .approach__img-desktop { display: none; }
  .approach__img-mobile  { display: block; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-bar { gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__theme-toggle { display: none; }
  .email-form { flex-direction: column; }
  .email-form input { width: 100%; }
  .logo-strip__row { gap: 28px; }
  .logo-strip__logo { height: 16px; }

  /* Carousel responsive */
  .testimonial-carousel { padding: 0 40px; }
  .testimonial-carousel__card { padding: 36px 16px; }

  /* Article responsive — tablet */
  .article-hero { padding: 120px 0 48px; }
  .article-end-cta__grid { grid-template-columns: 1fr; }

  /* Footer legal bar responsive */
  .footer__legal-inner { padding: 0 24px; }

  /* Start Here hero — tablet/mobile */
  .start-hero { min-height: 400px; padding: 120px 0 56px; }
  .start-hero__bg-desktop { display: none !important; }
  .start-hero__bg-mobile  { display: block !important; }
  .start-hero__bg img { object-position: center 25%; }

  /* About page — tablet */
  .about-hero { padding: 130px 0 56px; }

  /* Library page — tablet */
  .library-hero { padding: 120px 0 56px; }
  .library-featured { grid-template-columns: 1fr; }
  .library-featured__grid { grid-template-columns: 1fr 1fr; }
  .library-cta-strip { flex-direction: column; text-align: center; gap: 20px; }

  /* Parallax — fixed bg breaks on iOS, fall back to scroll */
  .parallax-break {
    height: 280px;
    background-attachment: scroll;
  }

  /* Social sidebar removed globally — see main declaration */
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .section--sm { padding: 48px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .quiz-block { padding: 40px 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .page-header { padding: 110px 0 44px; }
  .page-header h1 { font-size: 30px; }
  .stat-bar { gap: 24px; }
  .stat-bar__num { font-size: 32px; }
  .hero__scroll-hint { display: none; }
  .hero__inner { padding: 16px 20px 0; }
  .hero__copy h1 { font-size: clamp(26px, 8vw, 38px); margin-bottom: 10px; }
  .hero__lead { font-size: 13px !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
  .hero__micro { font-size: 11px; margin-top: 10px; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { text-align: center; padding: 14px 24px; }

  /* Carousel mobile */
  .testimonial-carousel { padding: 0 32px; }
  .testimonial-carousel__arrow { width: 32px; height: 32px; }
  .testimonial-carousel__card { padding: 24px 8px; }
  .testimonial-carousel__quote { font-size: 16px; }

  /* Article responsive — mobile */
  .article-hero { padding: 100px 0 40px; }
  .article-hero__title { font-size: 28px; }
  .article-content { padding: 48px 20px; }
  .article-content > p { font-size: 16px; }
  .article-content h2 { font-size: 24px; margin-top: 40px; }
  .pull-quote { margin: 36px -8px; padding: 32px 16px; }
  .callout { padding: 24px 20px; }
  .inline-cta { padding: 32px 24px; }
  .article-end-cta { padding: 48px 20px; }
  .related-articles { padding: 48px 20px; }

  /* Footer legal bar mobile */
  .footer__legal-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }
  .footer__legal-links { justify-content: center; }

  /* About page — mobile */
  .about-hero { padding: 110px 0 44px; }
  .about-hero h1 { font-size: 30px; }
  .about-body { padding-top: 56px; }

  /* Library page — mobile */
  .library-hero { padding: 100px 0 44px; }
  .library-hero h1 { font-size: 28px; }
  .library-hero__sub { font-size: 15px; }
  .library-featured__grid { grid-template-columns: 1fr; }
  .library-card--hero { padding: 32px 24px; }
  .library-card__img { margin: -32px -28px 20px -28px; width: calc(100% + 56px); }
  .library-card--hero .library-card__img { margin: -32px -24px 24px -24px; width: calc(100% + 48px); }
  .library-featured__grid .library-card__img { margin: -24px -22px 16px -22px; width: calc(100% + 44px); }
  .related-articles__item-img { width: 80px; height: 56px; }
  .library-topic__list { grid-template-columns: 1fr; }
  .library-topic-card__img { height: 140px; }
  .library-topic-card__content { padding: 16px 18px 20px; }
  .library-topic-card__meta { padding: 0 18px 16px; }
  .library-topic__header { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   SALES PAGE COMPONENTS
═══════════════════════════════════════════════════════════ */

/* ── Numbered placeholder boxes (for image holding) ── */
.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(
    45deg,
    #f5f1e1,
    #f5f1e1 12px,
    #ede6c8 12px,
    #ede6c8 24px
  );
  border: 2px dashed #c9b357;
  border-radius: var(--radius-lg);
  color: #5a4a10;
  font-family: var(--font-ui);
  padding: 24px;
  width: 100%;
  margin: 0 auto;
}
.img-ph__num {
  display: inline-block;
  background: #1a1a1a;
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.img-ph__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #2a1a00;
}
.img-ph__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #5a4a10;
  max-width: 320px;
  font-family: var(--font-ui);
}
.img-ph__dim {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
}
/* aspect ratios */
.img-ph--16x9   { aspect-ratio: 16 / 9; }
.img-ph--4x3    { aspect-ratio: 4 / 3; }
.img-ph--1x1    { aspect-ratio: 1 / 1; }
.img-ph--3x2    { aspect-ratio: 3 / 2; }
.img-ph--2x3    { aspect-ratio: 2 / 3; }
.img-ph--book   { aspect-ratio: 3 / 4; }
.img-ph--banner { aspect-ratio: 5 / 2; }
.img-ph--wide   { aspect-ratio: 21 / 9; }

/* ── Sales hero ── */
.sales-hero {
  background: var(--cream);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.sales-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sales-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.sales-hero__byline {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.sales-hero__byline span { color: var(--gold); }
.sales-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 auto 28px;
  max-width: 880px;
  color: var(--text-primary);
}
.sales-hero h1 em { color: var(--gold); font-style: italic; }
.sales-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-body);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 40px;
}
.sales-hero__product {
  margin: 40px auto 0;
  max-width: 520px;
}

/* ── Section dividers ── */
.sales-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 720px;
  padding: 60px 24px 0;
}
.sales-divider::before,
.sales-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sales-divider span {
  padding: 0 18px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 6px;
}

/* ── Author signature block ── */
.signature-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.signature-block img,
.signature-block .img-ph {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signature-block__text { flex: 1; }
.signature-block__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.signature-block__title {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── Element / Module cards ── */
.element-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  height: 100%;
}
.element-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border-color: var(--gold-border);
}
.element-card__num {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.element-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.element-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}
.element-card__img {
  margin: -36px -32px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.element-card__img .img-ph {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

/* ── Bonus stack ── */
.bonus-list {
  display: grid;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.bonus-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  align-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.bonus-card__media .img-ph {
  width: 100%;
  aspect-ratio: 3 / 2;
}
.bonus-card__tag {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.bonus-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}
.bonus-card__value {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}
.bonus-card__value strong { color: var(--gold); }

/* ── Testimonial cards ── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 30px;
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__author .img-ph,
.testimonial-card__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.testimonial-card__location {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Award badge ── */
.award-badge {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2418 100%);
  color: #fff;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 720px;
  margin: 48px auto 0;
}
.award-badge__icon {
  flex-shrink: 0;
}
.award-badge__icon .img-ph {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.award-badge__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.award-badge__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}
.award-badge__source {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── For/Not For lists ── */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.qualify-col {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.qualify-col--yes { border-top: 4px solid var(--gold); }
.qualify-col--no  { border-top: 4px solid #c44; }
.qualify-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 22px;
}
.qualify-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qualify-col li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}
.qualify-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.qualify-col--no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #c44;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ── Pricing block ── */
.price-block {
  background: linear-gradient(180deg, #fff 0%, #faf6e6 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(242, 205, 44, 0.18);
}
.price-block__cover {
  margin: -88px auto 28px;
  max-width: 280px;
}
.price-block__cover .img-ph { aspect-ratio: 3 / 4; }
.price-block__strike {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.price-block__price {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin: 8px 0 6px;
}
.price-block__price sup {
  font-size: 36px;
  vertical-align: super;
  margin-right: 4px;
}
.price-block__terms {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.price-block__cta {
  margin-bottom: 18px;
}
.price-block__includes {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.price-block__trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-block__trust span::before {
  content: '★ ';
  color: var(--gold);
}

/* ── Guarantee badge ── */
.guarantee {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.guarantee__seal .img-ph {
  width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
.guarantee__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.guarantee__copy {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── PS block ── */
.ps-block {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 36px 32px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.ps-block p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}
.ps-block p:last-child { margin-bottom: 0; }
.ps-block strong {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-right: 6px;
}

/* ── Big CTA bar ── */
.cta-bar {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2418 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  max-width: 980px;
  margin: 0 auto;
}
.cta-bar h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 18px;
}
.cta-bar p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* ── Image-side / text-side row ── */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.split-row--reverse .split-row__media { order: 2; }
.split-row__media .img-ph { width: 100%; }
.split-row__text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 18px;
}
.split-row__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ── Mobile ── */
@media (max-width: 860px) {
  .sales-hero { padding: 110px 0 56px; }
  .bonus-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .qualify-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .guarantee__seal { margin: 0 auto; }
  .price-block { padding: 36px 24px; }
  .price-block__price { font-size: 64px; }
  .price-block__cover { margin-top: -64px; max-width: 220px; }
  .split-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-row--reverse .split-row__media { order: 0; }
  .award-badge {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .element-card { padding: 32px 24px; }
  .element-card__img { margin: -32px -24px 20px; }
}
