/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
  --gold:        #C49A2E;
  --gold-light:  #D4AF48;
  --gold-pale:   #F6E8B8;
  --gold-bg:     #FEF9EC;
  --gold-dark:   #9A7820;

  --dark:        #1C1208;
  --dark-2:      #2A1E0C;
  --text:        #2D2010;
  --text-med:    #6B5838;
  --text-light:  #9A8060;

  --cream:       #FDF8EE;
  --cream-2:     #F5EDE0;
  --white:       #FFFFFF;
  --border:      #E8D5A0;
  --border-light:#F0E4C0;

  --wa-green:    #25D366;
  --wa-hover:    #1DA851;

  --font:        'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 100px;

  --sh-sm:  0 2px 8px rgba(28,18,8,.08);
  --sh-md:  0 4px 20px rgba(28,18,8,.12);
  --sh-lg:  0 8px 40px rgba(28,18,8,.18);
  --sh-gold:0 4px 24px rgba(196,154,46,.28);
  --sh-wa:  0 4px 18px rgba(37,211,102,.45);

  --ease:   0.3s ease;
  --ease-slow: 0.6s ease;

  --header-h: 64px;
  --container: 1100px;
  --pad: 20px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Prevent any section from leaking horizontally */
section,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 { font-weight: 700; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 600; }
p  { color: var(--text-med); }

.text-gold { color: var(--gold); }

/* ==========================================
   LAYOUT
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-cream { background: var(--cream-2); }
.text-center   { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.section-sub {
  color: var(--text-med);
  font-size: .95rem;
  margin-bottom: 2.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--ease);
  cursor: pointer;
  white-space: normal;
  word-break: keep-all;
  text-align: center;
  border: 2px solid transparent;
  max-width: 100%;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 28px rgba(196,154,46,.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-wa-sm {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  font-size: .8rem;
  padding: .55rem 1rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  transition: var(--ease);
}
.btn-wa-sm:hover { background: var(--wa-hover); border-color: var(--wa-hover); transform: translateY(-1px); }

.btn-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  background: var(--wa-green);
  color: var(--white);
  border-radius: var(--r-full);
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--ease);
}
.btn-wa-inline:hover { background: var(--wa-hover); transform: translateY(-1px); }

.btn-lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ==========================================
   BADGES
   ========================================== */
.badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-gold    { background: var(--gold); color: var(--dark); }
.badge-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: rgba(255,255,255,.9); }

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(28,18,8,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link { display: flex; align-items: center; }

.logo-img { height: 36px; width: auto; }

.logo-text-fallback {
  display: none;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .01em;
}
.logo-text-fallback strong { color: var(--gold); margin-left: .25rem; font-weight: 800; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,18,8,.96) 0%, rgba(44,30,12,.92) 60%, rgba(28,18,8,.85) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.hero-headline {
  color: var(--white);
  font-size: clamp(1.75rem, 5.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--gold-light); }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.hero-cta .btn {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
  word-break: break-word;
}

/* Hero photo */
.hero-photo-wrap { width: 100%; display: flex; justify-content: center; }

.hero-photo-card {
  position: relative;
  width: min(280px, 80vw);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2) 0%, #3D2A10 100%);
  box-shadow: var(--sh-lg), 0 0 0 3px var(--gold);
}

.hero-photo-card.photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: linear-gradient(135deg, #2A1E0C 0%, #3D2A10 100%);
}
.hero-photo-card.photo-fallback::before {
  content: 'AS';
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .5;
}

.hero-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }

.hero-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,18,8,.95));
  padding: 2.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-photo-caption strong { color: var(--gold); font-size: .95rem; }
.hero-photo-caption span   { color: rgba(255,255,255,.75); font-size: .75rem; }

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem { background: var(--cream); }
.problem .section-title { margin-bottom: 2rem; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.problem-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto .75rem;
  background: var(--gold-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.problem-icon svg { width: 24px; height: 24px; }

.problem-card h3 { font-size: .9rem; margin-bottom: .35rem; color: var(--dark); }
.problem-card p  { font-size: .8rem; color: var(--text-med); font-style: italic; line-height: 1.5; }

.problem-bridge {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #FDF5E0 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.problem-bridge p { color: var(--text); font-size: .95rem; line-height: 1.8; }
.problem-bridge strong { color: var(--dark); }
.bridge-ornament { color: var(--gold); font-size: 1.1rem; }

/* ==========================================
   EMOTIONAL BRIDGE
   ========================================== */
.emotional-bridge {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  text-align: center;
}

.bridge-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.bridge-tag {
  display: inline-block;
  background: rgba(196,154,46,.15);
  color: var(--gold-light);
  border: 1px solid rgba(196,154,46,.3);
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.emotional-bridge h2 { color: var(--white); margin-bottom: 1.25rem; }

.bridge-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.bridge-wrap p {
  color: rgba(255,255,255,.8);
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  line-height: 1.85;
  margin-bottom: .75rem;
}
.bridge-wrap strong { color: var(--gold-light); }
.bridge-wrap em     { color: rgba(255,255,255,.6); font-style: italic; }

/* ==========================================
   ABOUT PROGRAM
   ========================================== */
.about-program { background: var(--cream); }
.about-program .section-title { margin-bottom: 2rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.about-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: .9rem;
}
.about-icon svg { width: 24px; height: 24px; }
.about-card h3 { margin-bottom: .4rem; }
.about-card p  { font-size: .875rem; line-height: 1.65; }

/* ==========================================
   BENEFITS
   ========================================== */
.benefits .section-title { margin-bottom: 2rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-bg) 0%, #FEF5D0 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-size: .9rem; margin-bottom: .25rem; }
.benefit-card p  { font-size: .825rem; color: var(--text-med); line-height: 1.55; }

/* ==========================================
   TARGET SECTION
   ========================================== */
.target-section {
  position: relative;
  background: var(--dark);
  padding: 64px 0;
}

.target-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.target-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.target-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,18,8,.92) 0%, rgba(44,28,12,.9) 100%);
}

.target-section .container { position: relative; z-index: 1; }
.target-section .section-title { margin-bottom: 2rem; }

.target-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.target-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(196,154,46,.25);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  backdrop-filter: blur(8px);
  transition: background var(--ease), border-color var(--ease);
}
.target-card:hover { background: rgba(255,255,255,.1); border-color: rgba(196,154,46,.5); }

.target-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  margin-top: .1rem;
}

.target-card p { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.6; }

/* ==========================================
   MENTOR
   ========================================== */
.mentor-section { background: var(--cream); }

.mentor-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.mentor-photo-card {
  position: relative;
  width: min(260px, 80vw);
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #2A1E0C, #3D2A10);
  box-shadow: var(--sh-lg), 0 0 0 3px var(--gold);
}
.mentor-photo-card.mentor-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.mentor-photo-card.mentor-fallback::before {
  content: 'AS';
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .5;
}

.mentor-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }

.mentor-photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,18,8,.95));
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem .75rem .75rem;
}

.mentor-name {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .35rem;
  word-break: break-word;
}
.mentor-tagline {
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.mentor-creds {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mentor-creds li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-med);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
}
.mentor-creds li span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.mentor-creds li strong { color: var(--dark); }
.mentor-creds li em { font-style: italic; }

/* ==========================================
   SCHEDULE / TIMELINE
   ========================================== */
.schedule-section .section-title { margin-bottom: .5rem; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
  z-index: 0;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.tl-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  box-shadow: 0 0 0 4px var(--cream-2), var(--sh-gold);
  z-index: 2;
}

.tl-card {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.tl-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}
.tl-day  { font-size: .75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.tl-main { font-size: .95rem; font-weight: 700; color: var(--dark); }
.tl-time { font-size: .8rem; color: var(--gold); font-weight: 600; background: var(--gold-bg); padding: .15rem .6rem; border-radius: var(--r-full); }

.session-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: .2rem .7rem;
  border-radius: var(--r-full);
  margin-bottom: .35rem;
}

.tl-content h3 { font-size: .95rem; margin-bottom: .3rem; }
.tl-content p  { font-size: .825rem; line-height: 1.6; }

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-section { background: var(--cream); }
.bonus-section .section-title { margin-bottom: 2rem; }

.bonus-stack {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2rem;
}

.bonus-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.bonus-item:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.bonus-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.bonus-icon svg { width: 22px; height: 22px; }

.bonus-text { flex: 1; }
.bonus-text h3 { font-size: .9rem; margin-bottom: .2rem; }
.bonus-text p  { font-size: .8rem; color: var(--text-med); line-height: 1.5; }

.bonus-value {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.bonus-value span   { font-size: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.bonus-value strong { font-size: .9rem; font-weight: 700; color: var(--gold-dark); }

.bonus-total {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  box-shadow: var(--sh-lg);
}
.total-label  { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.total-amount { font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 800; color: var(--gold); line-height: 1.2; word-break: break-word; }
.total-note   { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ==========================================
   URGENCY
   ========================================== */
.urgency-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1E08 100%);
}

.urgency-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.urgency-icon {
  width: 64px;
  height: 64px;
  background: rgba(196,154,46,.15);
  border: 2px solid rgba(196,154,46,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.urgency-icon svg { width: 30px; height: 30px; }

.urgency-section h2 { color: var(--white); margin-bottom: 1rem; }

.urgency-copy {
  color: rgba(255,255,255,.75);
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.urgency-copy strong { color: var(--gold-light); }

.urgency-quote {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: .75rem 1.25rem;
  margin: 1.5rem auto;
  max-width: 500px;
  text-align: left;
  background: rgba(196,154,46,.08);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.urgency-points {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
  text-align: left;
}

.urgency-pt {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.urgency-pt span:first-child { font-size: 1.1rem; flex-shrink: 0; }

/* ==========================================
   FAQ
   ========================================== */
.faq-section .section-title { margin-bottom: 2rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}
.faq-q:hover { color: var(--gold); background: var(--gold-bg); }
.faq-q[aria-expanded="true"] { color: var(--gold); background: var(--gold-bg); }

.faq-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.faq-q[aria-expanded="true"] .faq-ico {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-a-inner {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--border-light);
}
.faq-a-inner p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-med);
  padding-top: .75rem;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
  background: var(--dark);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,154,46,.12) 0%, transparent 70%);
}

.final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-ornament {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: .7;
  color: var(--gold);
  opacity: .25;
  margin-bottom: .5rem;
  display: block;
}

.final-headline {
  color: var(--white);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 800;
}

.final-copy {
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.final-copy em { color: var(--gold-light); }

.final-contact { margin-top: 1rem; color: rgba(255,255,255,.55); font-size: .875rem; }
.final-contact strong { color: var(--gold-light); }
.final-org { margin-top: .4rem; color: rgba(255,255,255,.4); font-size: .8rem; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--dark-2);
  padding: 2.5rem 0 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo   { display: block; font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: .3rem; }
.footer-brand p{ font-size: .8rem; color: rgba(255,255,255,.45); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1rem;
}
.footer-nav a {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ==========================================
   FLOATING WA & MOBILE STICKY
   ========================================== */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 200;
  background: var(--wa-green);
  color: var(--white);
  border-radius: var(--r-full);
  padding: .7rem 1.1rem .7rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .825rem;
  font-weight: 600;
  box-shadow: var(--sh-wa);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.floating-wa:hover { background: var(--wa-hover); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.floating-wa span  { display: none; }

.mobile-sticky {
  display: block;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: .75rem var(--pad);
  padding-bottom: calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(28,18,8,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196,154,46,.2);
  transform: translateY(100%);
  transition: transform var(--ease);
  box-sizing: border-box;
  width: 100%;
}
.mobile-sticky.visible { transform: translateY(0); }

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .9rem;
  background: var(--wa-green);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 600;
  box-shadow: var(--sh-wa);
  transition: background var(--ease);
}
.mobile-sticky-btn:hover { background: var(--wa-hover); }

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay    { transition-delay: .1s; }
.reveal-delay-1  { transition-delay: .15s; }
.reveal-delay-2  { transition-delay: .3s; }
.reveal-delay-3  { transition-delay: .45s; }
.reveal-delay-4  { transition-delay: .6s; }

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================
   TABLET — 600px+
   ========================================== */
@media (min-width: 600px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }
  .hero-cta .btn {
    width: auto;
    flex: 1;
  }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .bonus-stack .bonus-item {
    flex-direction: row;
    align-items: center;
  }
  .bonus-value {
    flex-shrink: 0;
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    gap: .1rem;
  }
}

/* ==========================================
   TABLET — 768px+
   ========================================== */
@media (min-width: 768px) {
  :root { --pad: 32px; }

  .section { padding: 88px 0; }

  .problem-grid  { grid-template-columns: repeat(4, 1fr); }
  .about-grid    { grid-template-columns: repeat(4, 1fr); }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .hero-content  { flex: 1; }
  .hero-photo-wrap {
    flex-shrink: 0;
    width: auto;
    justify-content: flex-end;
  }
  .hero-photo-card { width: 300px; }

  .mentor-inner { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .mentor-photo-wrap { flex-shrink: 0; }
  .mentor-info   { flex: 1; }

  .timeline::before { left: 28px; }
  .tl-dot { width: 56px; height: 56px; font-size: .8rem; }

  .floating-wa span { display: inline; }
  .floating-wa { bottom: 2rem; right: 1.75rem; }
}

/* ==========================================
   DESKTOP — 1024px+
   ========================================== */
@media (min-width: 1024px) {
  :root { --pad: 40px; }

  .section { padding: 104px 0; }

  .hero-photo-card { width: 360px; }

  .benefits-grid { grid-template-columns: repeat(4, 1fr); }

  .tl-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .tl-date {
    flex-direction: column;
    flex-shrink: 0;
    min-width: 130px;
    gap: .25rem;
  }

  .bonus-item { align-items: center; }
  .bonus-value { min-width: 120px; }

  .target-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
