/* ═══════════════════════════════════════════════════════════
   RAÍCES — Design System v2
   Premium dark landing page for Hotmart infoproduct
   Método M.A.P.A. — Low Ticket Funnel
   Palette: OLED Black + Warm Gold
   ═══════════════════════════════════════════════════════════ */

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

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

/* ── Custom Properties ── */
:root {
  /* Palette */
  --black-deep: #050505;
  --black-surface: #0a0a0a;
  --black-card: #0f0f0f;
  --black-elevated: #141414;
  --black-hover: #1a1a1a;
  --gold-primary: #D4A535;
  --gold-light: #E8C468;
  --gold-dim: #A07D28;
  --gold-glow: rgba(212, 165, 53, 0.15);
  --gold-glow-strong: rgba(212, 165, 53, 0.25);
  --gold-border: rgba(212, 165, 53, 0.2);
  --gold-border-hover: rgba(212, 165, 53, 0.45);
  --white: #FFFFFF;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --gray-text: #8a8a8a;
  --red-soft: #e05252;
  --green-soft: #4ade80;

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --fs-display: clamp(2.6rem, 5.5vw, 4.8rem);
  --fs-h2: clamp(1.9rem, 3.8vw, 3.2rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.15vw, 1.125rem);
  --fs-body-lg: clamp(1.05rem, 1.3vw, 1.25rem);
  --fs-small: clamp(0.85rem, 1vw, 0.95rem);
  --fs-micro: 0.75rem;

  /* Spacing */
  --section-py: clamp(5rem, 10vh, 8rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --container-max: 1100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Motion */
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-base: 0.6s;
  --duration-long: 0.9s;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--black-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container--narrow {
  max-width: 800px;
}

/* ── Section Base ── */
section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ── Shared Typography ── */
.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 55ch;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--duration-base) var(--ease-premium),
              box-shadow var(--duration-base) var(--ease-premium);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--white-10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 48px;
}

.nav-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-brand svg {
  height: 34px;
  width: auto;
  fill: var(--gold-primary);
  transition: fill 0.3s var(--ease-premium);
}

.nav-brand:hover svg {
  fill: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: var(--gold-primary);
  color: var(--black-deep);
  font-weight: 700;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-premium),
              background 0.4s var(--ease-premium);
}

.cta-text-mobile {
  display: none;
}

.cta-text-desktop {
  display: inline;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--black-deep) 0%, rgba(5,5,5,0.75) 35%, rgba(5,5,5,0.25) 100%),
    radial-gradient(ellipse at 50% 100%, var(--gold-glow), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-px) clamp(3rem, 7vh, 5.5rem);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-size: var(--fs-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero-headline em {
  font-style: normal;
  color: var(--white);
}

.hero-sub {
  font-size: var(--fs-body);
  color: var(--white-70);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--white-90);
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gold-primary);
  color: var(--black-deep);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.5s var(--ease-premium),
              background 0.4s var(--ease-premium),
              box-shadow 0.4s var(--ease-premium);
  box-shadow: 0 0 40px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 60px rgba(212, 165, 53, 0.3);
}

.btn-primary:active {
  transform: scale(0.97) translateY(0);
}

.btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(5, 5, 5, 0.15);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-premium);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════ */
.problem {
  position: relative;
  overflow: hidden;
}

.problem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.problem-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black-deep) 25%, rgba(5,5,5,0.85) 100%);
}

.problem-content {
  position: relative;
  z-index: 2;
}

.problem-hook {
  font-size: var(--fs-body-lg);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 55ch;
  margin-bottom: clamp(2rem, 4vh, 3rem);
  font-weight: 300;
}

.problem-hook strong {
  color: var(--white-90);
  font-weight: 500;
}

.problem-label {
  font-size: var(--fs-small);
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.symptom-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vh, 1.5rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--fs-body);
  color: var(--white-70);
  line-height: 1.6;
  font-weight: 300;
}

.symptom-icon {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.7;
}

/* Root cause callout */
.root-cause {
  border-left: 2px solid var(--gold-primary);
  padding: 1.5rem 0 1.5rem 1.5rem;
  max-width: 55ch;
}

.root-cause-label {
  font-size: var(--fs-micro);
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.root-cause p {
  font-size: var(--fs-body);
  color: var(--white-70);
  line-height: 1.7;
  font-weight: 300;
}

.root-cause strong {
  color: var(--white-90);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TRANSFORMATION SECTION
   ═══════════════════════════════════════════════════════════ */
.transformation {
  background: var(--black-surface);
  text-align: center;
}

.transformation .section-title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.transformation .section-subtitle {
  margin: 0 auto clamp(3rem, 5vh, 4rem);
  text-align: center;
  max-width: 52ch;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.transform-card {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  background: var(--black-card);
  text-align: left;
  transition: border-color 0.4s var(--ease-premium),
              transform 0.5s var(--ease-premium);
}

.transform-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}

.transform-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.transform-card p {
  font-size: var(--fs-small);
  color: var(--white-70);
  line-height: 1.6;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   M.A.P.A. METHOD SECTION (Light Rest Section)
   ═══════════════════════════════════════════════════════════ */
.method {
  background: #FAF8F2; /* Soft warm premium light cream */
  color: var(--black-deep);
  position: relative;
  overflow: hidden;
}

.method::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(212, 165, 53, 0.1), transparent 55%);
  pointer-events: none;
}

.method-intro {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  position: relative;
  z-index: 2;
}

.method .section-title {
  color: #8C6A1B; /* Darker premium gold/mustard for readability on light BG */
}

.method .section-subtitle {
  margin: 0 auto;
  text-align: center;
  color: rgba(5, 5, 5, 0.7);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.method-step {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(212, 165, 53, 0.15);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: border-color 0.4s var(--ease-premium),
              box-shadow 0.4s var(--ease-premium),
              transform 0.5s var(--ease-premium);
}

.method-step:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(212, 165, 53, 0.1);
  transform: translateY(-4px);
}

.method-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.method-letter {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  opacity: 0.95;
}

.method-step-name {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--black-deep);
  line-height: 1.2;
}

.method-step-desc {
  font-size: var(--fs-body);
  color: rgba(5, 5, 5, 0.65);
  line-height: 1.7;
  font-weight: 300;
}

.method-differentiator {
  text-align: center;
  margin-top: clamp(2.5rem, 5vh, 4rem);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(212, 165, 53, 0.3);
  border-radius: var(--radius-md);
  background: rgba(212, 165, 53, 0.06);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.method-differentiator p {
  font-size: var(--fs-body);
  color: rgba(5, 5, 5, 0.8);
  line-height: 1.7;
  font-weight: 300;
}

.method-differentiator strong {
  color: #8C6A1B;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   OFFER DETAILS
   ═══════════════════════════════════════════════════════════ */
.offer {
  background: var(--black-surface);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.offer-text h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.offer-subtitle {
  font-size: var(--fs-body);
  color: var(--white-50);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  font-weight: 300;
}

.offer-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.offer-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
}

.offer-detail-text strong {
  display: block;
  font-size: var(--fs-body);
  color: var(--white-90);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.offer-detail-text span {
  font-size: var(--fs-small);
  color: var(--white-50);
  font-weight: 300;
}

.offer-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   FOR WHOM SECTION
   ═══════════════════════════════════════════════════════════ */
.for-whom {
  background: var(--black-deep);
}

.for-whom .section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.for-whom-col {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--black-card);
}

.for-whom-col--yes {
  border-color: rgba(74, 222, 128, 0.15);
}

.for-whom-col--no {
  border-color: rgba(224, 82, 82, 0.15);
}

.for-whom-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.for-whom-col--yes .for-whom-label {
  color: var(--green-soft);
}

.for-whom-col--no .for-whom-label {
  color: var(--red-soft);
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-small);
  color: var(--white-70);
  line-height: 1.6;
  font-weight: 300;
}

.for-whom-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.for-whom-col--yes .for-whom-list li svg {
  color: var(--green-soft);
}

.for-whom-col--no .for-whom-list li svg {
  color: var(--red-soft);
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════ */
.pricing {
  background: var(--black-surface);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(212, 165, 53, 0.07), transparent 55%);
  pointer-events: none;
}

.pricing .section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--black-card);
  position: relative;
  z-index: 2;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--white-10);
  margin-bottom: 2rem;
}

.pricing-card-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-card-duration {
  font-size: var(--fs-small);
  color: var(--white-50);
  font-weight: 300;
}

/* Value Stack */
.value-stack {
  margin-bottom: 2rem;
}

.value-stack-title {
  font-size: var(--fs-micro);
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.value-stack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--white-05);
}

.value-stack-item:last-child {
  border-bottom: none;
}

.value-stack-item-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-70);
  font-weight: 300;
}

.value-stack-item-name svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

.value-stack-item-value {
  color: var(--white-50);
  text-decoration: line-through;
  font-weight: 300;
  white-space: nowrap;
}

/* Value Total */
.value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  margin-bottom: 1.5rem;
}

.value-total-label {
  font-size: var(--fs-body);
  color: var(--white-90);
  font-weight: 600;
}

.value-total-amount {
  font-size: var(--fs-body);
  color: var(--white-50);
  text-decoration: line-through;
  font-weight: 400;
}

/* Price Display */
.price-display {
  text-align: center;
  margin-bottom: 2rem;
}

.price-label {
  font-size: var(--fs-micro);
  color: var(--gold-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1.1;
}

.price-currency {
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: super;
  color: var(--gold-dim);
}

.price-usd {
  font-size: var(--fs-small);
  color: var(--white-50);
  margin-top: 0.35rem;
  font-weight: 300;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: var(--fs-small);
  color: var(--white-50);
  position: relative;
  z-index: 2;
}

.guarantee svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION (Light Cream Rest Section)
   ═══════════════════════════════════════════════════════════ */
.faq {
  background: #FAF8F2; /* Soft warm premium light cream */
  color: var(--black-deep);
}

.faq .section-title {
  text-align: center;
  color: #8C6A1B;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(5, 5, 5, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--black-deep);
  font-family: var(--font-main);
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease-premium);
}

.faq-question:hover {
  color: #8C6A1B;
}

.faq-question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C6A1B;
  transition: transform 0.4s var(--ease-premium);
}

.faq-item.open .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-premium),
              opacity 0.4s var(--ease-premium);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  font-size: var(--fs-small);
  color: rgba(5, 5, 5, 0.65);
  line-height: 1.7;
  font-weight: 300;
  max-width: 55ch;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA (Light Cream Rest Section)
   ═══════════════════════════════════════════════════════════ */
.final-cta {
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  text-align: center;
  background: #FAF8F2; /* Soft warm premium light cream */
  color: var(--black-deep);
}

.final-cta h2 {
  font-size: var(--fs-display);
  font-weight: 900;
  color: #8C6A1B;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: var(--fs-body);
  color: rgba(5, 5, 5, 0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--white-10);
  background: var(--black-deep);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer-brand svg {
  height: 30px;
  width: auto;
  fill: var(--gold-primary);
  transition: fill 0.3s var(--ease-premium);
}

.footer-brand:hover svg {
  fill: var(--white);
}

.footer-copy {
  font-size: var(--fs-micro);
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  font-size: var(--fs-micro);
  color: var(--gray-text);
  transition: color 0.3s var(--ease-premium);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--duration-long) var(--ease-premium),
              transform var(--duration-long) var(--ease-premium);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-image {
    order: -1;
    aspect-ratio: 16/9;
    max-height: 280px;
  }

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

  .method-steps {
    grid-template-columns: 1fr;
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    max-width: 100%;
  }

  .hero-bg img {
    object-position: 55% center;
    opacity: 0.3;
  }

  .nav-brand svg {
    height: 28px;
  }

  .cta-text-desktop {
    display: none;
  }

  .cta-text-mobile {
    display: inline;
  }

  .top-banner-content {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.25rem 0;
  }

  .nav-cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 900;
  }

  .btn-primary {
    padding: 1.15rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 900;
  }

  /* Center transformation cards & enlarge icons on mobile */
  .transform-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .transform-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem auto;
  }

  .transform-card-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPLIANCE & DYNAMIC URGENCY STYLES
   ═══════════════════════════════════════════════════════════ */

/* Top Notification Banner */
.top-banner {
  background-color: var(--black-surface);
  border-bottom: 1px solid var(--white-10);
  padding: 0.85rem var(--container-px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 101;
}

.top-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.top-banner-content p {
  font-size: var(--fs-small);
  color: var(--white-90);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

.top-banner-content strong {
  color: var(--gold-primary);
  font-weight: 700;
}

.badge-live {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--black-deep);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  animation: pulseGlow 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.96); }
}

/* Pricing Urgency Notes (Checkout Lock Box) */
.checkout-lock-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(212, 165, 53, 0.03);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: dotPulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 12px var(--gold-primary); }
}

.lock-title {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-70);
  font-weight: 600;
}

.lock-timer {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.1rem 0;
}

.lock-desc {
  font-size: 0.72rem;
  color: var(--white-50);
  line-height: 1.4;
  font-weight: 300;
  max-width: 32ch;
  margin: 0;
}

/* Footer Compliance Disclaimer */
.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--white-30);
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}

/* Sticky Mobile CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-border);
  padding: 0.85rem 1.25rem;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-premium);
  display: none;
}

.mobile-sticky-cta.active {
  transform: translateY(0);
}

.mobile-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-cta-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.m-price-label {
  font-size: 0.65rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.m-price-value {
  font-size: 1.15rem;
  color: var(--gold-primary);
  font-weight: 800;
}

.btn-m-sticky {
  padding: 0.9rem 1.8rem !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  box-shadow: none !important;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .value-stack-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-answer {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
