/* Page-specific styles */

/* ============ SITE HEADER (sticky island) ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
  pointer-events: none;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header-inner {
  pointer-events: auto;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 26px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              backdrop-filter 0.4s ease,
              box-shadow 0.4s ease,
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  padding: 14px 20px 0;
}
.site-header.is-scrolled .site-header-inner {
  max-width: 960px;
  background: rgba(20, 8, 34, 0.72);
  border-color: rgba(246, 241, 232, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.55);
}
.site-header-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-header-brand img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.site-header-nav {
  display: flex;
  gap: 4px;
}
.site-header-nav a {
  color: rgba(246, 241, 232, 0.78);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-header-nav a:hover {
  color: var(--cream);
  background: rgba(246, 241, 232, 0.08);
}
.site-header-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--purple-dark);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.site-header-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(212, 164, 55, 0.6);
}
@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled { padding: 10px 12px 0; }
  .site-header-inner { padding: 8px 8px 8px 16px; gap: 12px; }
  .site-header.is-scrolled .site-header-inner { max-width: 100%; }
  .site-header-nav { display: none; }
  .site-header-brand img { height: 28px; }
  .site-header-cta {
    font-size: 10px;
    padding: 9px 14px;
    letter-spacing: 0.1em;
  }
}

/* NAV removed */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { text-decoration: none; display: inline-flex; align-items: baseline; gap: 4px; }
.brand-u {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 26px;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.brand-d {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--purple); }
.btn-sm { padding: 11px 22px; font-size: 11px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 22px; }
}

/* HERO - animated bg + framed portrait on the right */
.hero {
  padding: 170px 0 160px;
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--cream);
}
.hero-dark {
  background:
    radial-gradient(120% 90% at 10% 10%, rgba(107, 46, 166, 0.55), transparent 60%),
    radial-gradient(90% 80% at 90% 90%, rgba(212, 164, 55, 0.18), transparent 55%),
    linear-gradient(135deg, #1b0c32 0%, #130820 55%, #0e0618 100%);
}
.hero-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-anim .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
  transform: translateZ(0);
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -120px; left: -140px;
  animation: hero-float-1 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -140px; right: 12%;
  opacity: 0.32;
  animation: hero-float-2 18s ease-in-out infinite alternate;
}
.orb-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #8a3fd0 0%, transparent 70%);
  top: 40%; right: -80px;
  opacity: 0.45;
  animation: hero-float-3 22s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 241, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 232, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
  opacity: 0.7;
}
@keyframes hero-float-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes hero-float-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-70px, -50px) scale(1.12); }
}
@keyframes hero-float-3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
}
.hero-dark h1 { color: var(--cream); }
.hero-dark h1 em.gold-ink { color: var(--gold); }
.hero-dark .lede { color: rgba(246, 241, 232, 0.82); }
.hero-dark .hero-meta {
  border-top-color: rgba(212, 164, 55, 0.22);
  color: rgba(246, 241, 232, 0.7);
}
.hero-dark .hero-meta strong { color: var(--gold-soft); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-frame {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(212, 164, 55, 0.55) 0%, rgba(212, 164, 55, 0.1) 35%, rgba(107, 46, 166, 0.45) 100%);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(246, 241, 232, 0.06) inset;
  animation: hero-frame-float 6s ease-in-out infinite alternate;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(212, 164, 55, 0.35), rgba(107, 46, 166, 0.35));
  filter: blur(22px);
  opacity: 0.6;
  z-index: -1;
}
.hero-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--purple-dark);
}
.hero-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(37, 16, 74, 0.55));
  pointer-events: none;
}
.hero-frame-tag {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--gold);
  color: var(--purple-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(212, 164, 55, 0.6);
  white-space: nowrap;
}
@keyframes hero-frame-float {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-frame { animation: none !important; }
}
.hero h1 em.gold-ink,
.gold-ink { color: var(--gold-deep); font-style: italic; }
.hero-copy .eyebrow-pill { margin-bottom: 28px; }
.hero-copy .lede { margin-top: 28px; }
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.hero-meta strong {
  color: var(--purple);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  margin-right: 6px;
}
.hero-art {
  position: relative;
}
.hero-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(20, 8, 34, 0.5);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 50%, rgba(61, 23, 104, 0.55));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(246, 241, 232, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 14px 30px -14px rgba(20, 8, 34, 0.5);
}
.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.hero-badge strong { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.hero-badge span { display: block; font-size: 13px; color: var(--muted); }
.hero-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
}
@media (max-width: 820px) {
  .hero {
    padding: 160px 0 112px;
    min-height: 0;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy .lede { margin-top: 24px; }
  .hero-cta { margin-top: 36px; }
  .hero-meta {
    gap: 16px 22px;
    margin-top: 40px;
    padding-top: 26px;
    flex-wrap: wrap;
  }
  .hero-meta strong { font-size: 22px; margin-right: 4px; }
  .hero-cta .btn-lg {
    padding: 18px 26px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .hero-frame {
    justify-self: center;
    max-width: 360px;
  }
  .hero-frame-tag { left: 50%; transform: translateX(-50%); bottom: -18px; }
  .orb-1 { width: 360px; height: 360px; }
  .orb-2 { width: 280px; height: 280px; }
  .orb-3 { width: 240px; height: 240px; }
}

/* BEFORE / AFTER */
.before-after { background: var(--cream); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 32px;
}
.ba-card {
  margin: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px -24px rgba(20, 8, 34, 0.25);
}
.ba-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(20, 8, 34, 0.78);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ba-label.after {
  background: var(--gold);
  color: var(--purple-dark);
}
.ba-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f0e5;
}
.ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-card figcaption { padding: 24px 26px 26px; }
.ba-card figcaption h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.ba-card figcaption ul { list-style: none; padding: 0; margin: 0; }
.ba-card figcaption li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.ba-card figcaption li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.ba-after figcaption li::before { color: var(--purple); }
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 20px 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--purple);
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  border-left: 1px dashed var(--gold-deep);
  border-right: 1px dashed var(--gold-deep);
  position: relative;
}
.ba-arrow::before,
.ba-arrow::after {
  content: "→";
  font-size: 32px;
  color: var(--gold-deep);
  font-style: italic;
  position: absolute;
}
.ba-arrow::before { left: -14px; background: var(--cream); padding: 0 2px; }
.ba-arrow::after { right: -14px; background: var(--cream); padding: 0 2px; }
.ba-note {
  margin-top: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 22px 28px;
  background: var(--cream-2);
  border-left: 3px solid var(--purple);
  border-radius: 10px;
}
.ba-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.ba-note em { color: var(--purple); }
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow {
    border-left: none;
    border-right: none;
    border-top: 1px dashed var(--gold-deep);
    border-bottom: 1px dashed var(--gold-deep);
    padding: 14px;
  }
  .ba-arrow::before, .ba-arrow::after { display: none; }
}

/* RESULTS 2-col grid (no center photo) */
.results-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 820px) { .results-grid-2 { grid-template-columns: 1fr; } }

/* Price card logo mark */
.price-card-mark {
  width: 56px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

/* Footer logo image */
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  width: 180px;
  max-width: 60%;
  height: auto;
  display: block;
  opacity: 0.9;
}
.footer-brand p {
  color: rgba(246,241,232,0.55);
  font-size: 14px;
  margin: 0;
}

/* Outline light button on dark hero */
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246, 241, 232, 0.35);
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* PAIN */
.pain { background: var(--cream-2); overflow: hidden; position: relative; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.pain-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 38px 32px;
  border: 1px solid var(--line);
  position: relative;
}
.pain-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.pain-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.pain-card p, .pain-list { color: var(--muted); font-size: 15px; }
.pain-list { list-style: none; padding: 0; margin: 0; }
.pain-list li {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list span { color: var(--purple); font-weight: 700; }
.pain-note {
  margin-top: 72px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 26px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
}
.pain-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pain-note em { color: var(--purple); font-style: italic; }
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }

/* BIG IDEA */
.big-idea { background: var(--ink); overflow: hidden; position: relative; }
.big-idea::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(107, 46, 166, 0.25), transparent 60%),
    radial-gradient(50% 50% at 50% 100%, rgba(212, 164, 55, 0.12), transparent 60%);
  pointer-events: none;
}
.big-idea-h {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
}
.big-idea-h em { font-style: italic; }
.promise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 56px auto 0;
  text-align: left;
}
.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(246, 241, 232, 0.06);
  border: 1px solid rgba(232, 201, 118, 0.18);
  border-radius: 12px;
  padding: 16px 20px;
}
.promise-ico {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.promise-item p {
  margin: 0;
  font-size: 15px;
  color: rgba(246, 241, 232, 0.88);
  line-height: 1.45;
}
.promise-item strong { color: var(--gold-soft); }
@media (max-width: 640px) { .promise-list { grid-template-columns: 1fr; } }

/* FOR WHOM */
.for-whom { background: var(--cream); }
.whom-card {
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px;
  border: 1px solid var(--line);
}
.whom-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}
.whom-list { list-style: none; padding: 0; margin: 0; }
.whom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.whom-list li:last-child { border-bottom: none; }
.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.dot.gold { background: var(--gold); color: var(--purple-dark); }
.dot.gold::before { content: "✓"; }
.dot.purple { background: transparent; border: 1.5px solid var(--purple); color: var(--purple); }
.dot.purple::before { content: "✕"; }

/* RESULTS */
.results { position: relative; overflow: hidden; }
.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 50% 30%, rgba(212, 164, 55, 0.12), transparent 60%);
  pointer-events: none;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.results-photo {
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--purple-dark);
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5);
}
.results-photo img { width: 100%; height: 100%; object-fit: cover; }
.results-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(37, 16, 74, 0.4));
}
.results-pill {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.results-pill span {
  background: var(--gold);
  color: var(--purple-dark);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 960px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* MODULES */
.modules { background: var(--cream-2); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.module-card {
  background: var(--purple-dark);
  color: var(--cream);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(212, 164, 55, 0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(37, 16, 74, 0.7);
}
.module-card.bonus {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  border-color: var(--gold);
}
.module-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 164, 55, 0.2), transparent 70%);
  pointer-events: none;
}
.module-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.module-card h3 {
  font-size: 20px;
  color: var(--cream);
  line-height: 1.2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.module-card.bonus h3 { color: var(--gold-soft); }
.module-videos {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(246, 241, 232, 0.72);
  flex: 1;
}
.module-videos li {
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.module-videos li::before {
  content: "▸";
  color: var(--gold-soft);
  flex-shrink: 0;
}
.module-count {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 164, 55, 0.2);
  font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1040px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modules-grid { grid-template-columns: 1fr; } }

/* PROFESSOR */
.professor { background: var(--cream); }
.professor-inner { align-items: center; gap: 72px; }
.professor-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(20, 8, 34, 0.5);
}
.professor-photo img { width: 100%; height: 100%; object-fit: cover; }
.professor-sign {
  position: absolute;
  left: 26px;
  bottom: 20px;
  font-size: 52px;
  color: var(--gold);
  opacity: 0.95;
}
.professor-copy p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* PRICE */
.price { position: relative; overflow: hidden; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 164, 55, 0.18);
  font-size: 15px;
  color: rgba(246, 241, 232, 0.88);
}
.price-list li:last-child { border-bottom: none; }
.price-list strong { color: var(--gold-soft); }
.price-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  padding: 38px 34px;
  text-align: center;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--gold);
}
.price-card-sign {
  font-size: 48px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.price-strike {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.price-strike s { color: #a55; }
.price-tag {
  margin: 10px 0 26px;
}
.p-small { display: block; font-size: 13px; color: var(--muted); }
.p-big {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  margin: 4px 0 6px;
}
.p-big strong { font-weight: 500; font-size: 88px; }
.p-big sup { font-size: 28px; font-weight: 500; }
.price-trust {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.price-decision h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 18px;
}
.decision-list { list-style: none; padding: 0; margin: 0 0 22px; }
.decision-list li {
  padding: 8px 0;
  color: rgba(246, 241, 232, 0.75);
  font-size: 15px;
}
@media (max-width: 1040px) {
  .price-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-decision { text-align: center; }
}

/* FAQ */
.faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--purple); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 28px;
  color: var(--purple);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(0deg); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body em { color: var(--purple); font-style: italic; }

/* FINAL CTA */
.final-cta { overflow: hidden; position: relative; }
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(212, 164, 55, 0.14), transparent 60%);
  pointer-events: none;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer-cols a {
  display: block;
  color: rgba(246, 241, 232, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 241, 232, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(246, 241, 232, 0.5);
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 34px;
  right: 34px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55),
              0 0 0 0 rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease,
              background 0.2s ease;
  animation: whatsapp-pulse 2.8s ease-out infinite;
}
.whatsapp-float:hover {
  background: #1fb955;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.7);
}
.whatsapp-float svg { display: block; }
.whatsapp-float-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 24px -10px rgba(20, 8, 34, 0.5);
}
.whatsapp-float-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--ink);
}
.whatsapp-float:hover .whatsapp-float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float-tip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}


/* ============ MOBILE REFINEMENTS ============ */
@media (max-width: 560px) {
  section { padding: 96px 0; }
  section.tight { padding: 72px 0; }

  h1 { font-size: 30px; line-height: 1.08; }
  h2 { font-size: 26px; line-height: 1.12; }
  h3 { font-size: 19px; }
  .lede { font-size: 16px; line-height: 1.6; }
  .section-head { margin-bottom: 52px; }
  .section-head .lede { margin-top: 18px; }

  .btn-lg { padding: 18px 26px; font-size: 12px; letter-spacing: 0.1em; }

  .hero { padding: 140px 0 96px; }
  .hero-inner { gap: 52px; }
  .hero-copy .lede { margin-top: 22px; }
  .hero-cta { margin-top: 32px; }
  .hero-meta { gap: 14px 20px; margin-top: 36px; padding-top: 24px; }
  .hero-meta > div { font-size: 13px; }
  .hero-meta strong { font-size: 20px; }

  .pain-grid { gap: 20px; margin-top: 8px; }
  .pain-card { padding: 30px 24px; }
  .pain-num { font-size: 40px; }
  .pain-card h3 { font-size: 18px; }
  .pain-note { margin-top: 52px; padding: 22px 24px; }
  .pain-note p { font-size: 17px; }

  .promise-list { margin-top: 40px; gap: 14px; }
  .promise-item { padding: 16px 18px; }

  .ba-grid { gap: 22px; margin-top: 8px; }
  .ba-card figcaption { padding: 22px 24px 24px; }
  .ba-card figcaption h3 { font-size: 18px; }
  .ba-card figcaption li { font-size: 14px; }
  .ba-note { margin-top: 48px; padding: 22px 24px; }
  .ba-note p { font-size: 17px; }

  .whom-card { padding: 32px 24px; }
  .whom-card h3 { font-size: 19px; }
  .whom-list li { font-size: 14px; padding: 11px 0; }

  .results-grid-2 { gap: 14px; margin-top: 20px; }
  .check-card { padding: 18px 20px; }
  .results-pill { margin-top: 48px; }
  .results-pill span { padding: 14px 22px; font-size: 14px; text-align: center; }

  .modules-grid { gap: 16px; margin-top: 16px; }
  .module-card { padding: 24px 22px; min-height: 0; gap: 12px; }
  .module-card h3 { font-size: 18px; }

  .professor-inner { gap: 44px; }
  .professor-copy p { font-size: 15px; }
  .professor-copy p.italic { font-size: 19px !important; }

  .price-grid { gap: 32px; margin-top: 16px; }
  .price-card { padding: 34px 24px; }
  .p-big { font-size: 42px; }
  .p-big strong { font-size: 66px; }
  .p-big sup { font-size: 22px; }
  .price-trust { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .price-decision h3 { font-size: 22px; }

  .faq-list { gap: 12px; }
  .faq-item summary { padding: 20px 22px; font-size: 16px; gap: 10px; }
  .faq-item summary::after { font-size: 24px; }
  .faq-body { padding: 0 22px 22px; font-size: 14px; line-height: 1.7; }

  .footer { padding: 56px 0 28px; }
  .footer-inner { gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-logo { width: 150px; }
  .footer-bottom { margin-top: 36px; padding-top: 20px; }
}
