/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --green-deepest: #071810;
  --green-deep:    #0c2318;
  --green-mid:     #0f2e1f;
  --green-logo:    #1a5c35;
  --green-light:   #2a7a4a;
  --gold:          #c9a55a;
  --gold-light:    #e2c47a;
  --gold-dim:      rgba(201,165,90,0.18);
  --text:          #f5f0e8;
  --muted:         #8fa898;
  --border:        rgba(255,255,255,0.08);
  --card-bg:       rgba(255,255,255,0.04);
  --radius-sm:     12px;
  --radius-md:     20px;
  --radius-lg:     28px;
  --shadow:        0 20px 60px rgba(0,0,0,0.35);
  --container:     1200px;
  --transition:    .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--green-deepest);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }


/* ═══════════════════════════════════════
   BACKGROUND DECORATION
═══════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, #1a5c35, transparent 70%);
}
.orb-2 {
  width: 500px; height: 500px;
  top: 30%; right: -150px;
  background: radial-gradient(circle, #0f3020, transparent 70%);
  opacity: .3;
}
.orb-3 {
  width: 700px; height: 700px;
  bottom: -300px; left: 20%;
  background: radial-gradient(circle, #133528, transparent 70%);
  opacity: .25;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,165,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,165,90,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}


/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; }
.section-alt { background: rgba(255,255,255,0.025); }
.center { text-align: center; }


/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: "Inter", sans-serif; }

h1 em, h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
}
.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}


/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { height: 56px; padding: 0 32px; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0c2318;
  box-shadow: 0 8px 24px rgba(201,165,90,0.30);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(201,165,90,0.45); }

.btn-ghost {
  border-color: var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.10); }

.btn-ghost-light {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); }


/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 24, 16, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.topbar.scrolled {
  background: rgba(7, 24, 16, 0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 100px;
}
.brand-logo {
  height: 86px;
  width: auto;
  max-width: 300px;
  border-radius: 6px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: 80px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(201,165,90,0.1);
  border: 1px solid rgba(201,165,90,0.25);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,165,90,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,165,90,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(201,165,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,165,90,0); }
}

.hero h1 { margin-top: 4px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-row svg { color: var(--gold); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,165,90,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 4px rgba(201,165,90,0.07);
  background: var(--green-mid);
  position: relative;
  width: 100%;
}
.hero-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(12,35,24,0.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,165,90,0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}
.float-card.float-top {
  top: 20px; left: -20px;
  animation-delay: 0s;
}
.float-card.float-bottom {
  bottom: 20px; right: -20px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-icon { font-size: 1.6rem; }
.float-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.float-text span {
  font-size: .78rem;
  color: var(--muted);
}


/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(90deg, rgba(26,92,53,0.2), rgba(26,92,53,0.08), rgba(26,92,53,0.2));
  border-top: 1px solid rgba(201,165,90,0.15);
  border-bottom: 1px solid rgba(201,165,90,0.15);
  padding: 36px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-num sup {
  font-size: .55em;
  vertical-align: super;
}
.stat-label {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .03em;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.programs-grid .program-card:nth-child(4),
.programs-grid .program-card:nth-child(5) {
  grid-column: span 1;
}
/* Center the last row of 2 */
.programs-grid::after {
  content: "";
  grid-column: span 1;
}

.program-card {
  position: relative;
  padding: 36px 30px 30px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,53,0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.program-card:hover {
  border-color: rgba(201,165,90,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.program-card:hover::before { opacity: 1; }

.prog-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,165,90,0.12);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  pointer-events: none;
}
.prog-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,165,90,0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.prog-icon svg { width: 24px; height: 24px; }
.program-card h3 { color: var(--text); font-size: 1.25rem; }
.program-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; flex: 1; }
.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  transition: gap var(--transition);
}
.prog-cta:hover { gap: 10px; }


/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-copy h2 { margin-top: 8px; }
.why-copy p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.features-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,165,90,0.18);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feat-icon svg { width: 18px; height: 18px; }
.feat h4 { font-size: .95rem; margin-bottom: 4px; color: var(--text); }
.feat p  { font-size: .88rem; color: var(--muted); line-height: 1.6; }


/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step:hover {
  border-color: rgba(201,165,90,0.3);
  transform: translateY(-4px);
}
.step-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,165,90,0.4), rgba(201,165,90,0.1));
  flex-shrink: 0;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,165,90,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,165,90,0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-icon-wrap svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p  { font-size: .92rem; color: var(--muted); }


/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 36px 30px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-card:hover {
  border-color: rgba(201,165,90,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-card > p {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-logo), var(--green-light));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .95rem; }
.testi-author span   { font-size: .8rem; color: var(--muted); }


/* ═══════════════════════════════════════
   AUDIENCE
═══════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.audience-grid h2 { margin-top: 8px; }
.audience-grid > div > p { color: var(--muted); margin-top: 16px; }

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.audience-tags span {
  padding: 10px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--muted);
  transition: var(--transition);
}
.audience-tags span:hover {
  border-color: rgba(201,165,90,0.3);
  color: var(--text);
  background: rgba(201,165,90,0.08);
}


/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section { padding: 60px 0 100px; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(26,92,53,0.25) 0%, rgba(12,35,24,0.6) 100%);
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-copy {
  padding: 56px 52px;
}
.cta-copy h2 { margin-top: 8px; }
.cta-copy p  { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-img {
  overflow: hidden;
  min-height: 360px;
}
.cta-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color var(--transition);
}
.faq-list details[open] {
  border-color: rgba(201,165,90,0.25);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding-right: 32px;
  position: relative;
  color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 300;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: rgba(4, 14, 9, 0.8);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-logo {
  height: auto;
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  margin-bottom: 18px;
  object-fit: contain;
}
.footer-brand p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul a {
  font-size: .92rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text); }
.footer-col p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-col a { color: var(--gold-light); }
.footer-col a:hover { color: var(--gold); }

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  transition: var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: var(--gold-dim);
  border-color: rgba(201,165,90,0.35);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .83rem;
  color: var(--muted);
}


/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  height: 52px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}


/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0; right: 0;
  background: rgba(7,24,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid::after { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: block; max-width: 420px; margin: 0 auto; }
  .steps-row { flex-direction: column; }
  .step-line { width: 2px; height: 40px; background: linear-gradient(180deg, rgba(201,165,90,0.4), rgba(201,165,90,0.1)); }
  .testi-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-img { min-height: 280px; }
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 40px 0 60px; }
  .topbar .btn { display: none; }
  .stats-inner { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stat-sep { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .features-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-copy { padding: 36px 28px; }
  .floating-wa span { display: none; }
  .floating-wa { padding: 0; width: 52px; justify-content: center; }
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.pricing-sub.center { text-align: center; }

/* Session rates row */
.pricing-rates {
  background: rgba(201,165,90,0.06);
  border: 1px solid rgba(201,165,90,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.rates-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.rate-card {
  flex: 1;
  min-width: 180px;
  background: var(--green-mid);
  border: 1px solid rgba(201,165,90,0.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rate-dur {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.rate-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.rate-price em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
}

/* Monthly plan cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.pricing-grid article:nth-child(1) { grid-column: 1 / 3; }
.pricing-grid article:nth-child(2) { grid-column: 3 / 5; }
.pricing-grid article:nth-child(3) { grid-column: 5 / 7; }
.pricing-grid article:nth-child(4) { grid-column: 1 / 4; }
.pricing-grid article:nth-child(5) { grid-column: 4 / 7; }
.price-card {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.price-card-highlight {
  border-color: rgba(201,165,90,0.4);
  background: linear-gradient(145deg, rgba(201,165,90,0.08), var(--green-mid));
}
.price-card-best {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201,165,90,0.14), var(--green-mid));
  box-shadow: 0 0 0 1px rgba(201,165,90,0.25), 0 16px 40px rgba(0,0,0,0.25);
}
.price-badge-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  border: 1px solid rgba(201,165,90,0.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-badge-tag.best {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.price-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-freq {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.price-sessions {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.price-rows {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: .9rem;
}
.price-rows li span { color: var(--muted); }
.price-rows li strong { color: var(--text); font-weight: 600; }
.price-rows li strong small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* Family & Free Trial bottom */
.pricing-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.pricing-extra {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,165,90,0.18);
}
.family-box { background: rgba(201,165,90,0.05); }
.trial-box  { background: rgba(201,165,90,0.08); border-color: rgba(201,165,90,0.3); }
.pricing-extra-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-extra h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.pricing-extra p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.pricing-extra-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
}
.pricing-extra-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill {
  background: rgba(201,165,90,0.15);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .78rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid article:nth-child(1),
  .pricing-grid article:nth-child(2),
  .pricing-grid article:nth-child(3),
  .pricing-grid article:nth-child(4),
  .pricing-grid article:nth-child(5) { grid-column: auto; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-bottom { grid-template-columns: 1fr; }
  .pricing-rates { padding: 24px 20px; }
}

/* ═══════════════════════════════════════
   FREE TRIAL MODAL
═══════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #f8f5ef;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: #333; background: rgba(0,0,0,0.07); }
.modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.2;
}
.modal-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.modal-step {
  height: 5px;
  border-radius: 999px;
  flex: 1;
  background: #ddd;
}
.modal-step.active { background: var(--gold); }
.modal-field {
  margin-bottom: 20px;
}
.modal-field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.modal-field .req { color: var(--gold); }
.modal-field input[type="text"],
.modal-field input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.modal-field input:focus { border-color: var(--gold); }
.modal-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.method-opt {
  flex: 1;
  min-width: 110px;
  cursor: pointer;
}
.method-opt input[type="radio"] { display: none; }
.method-opt span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: #555;
  background: #fff;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.method-opt input:checked + span {
  border-color: var(--gold);
  color: #a07820;
  background: rgba(201,165,90,0.08);
}
.modal-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  justify-content: center;
}
