
:root {
  --navy: #2B315B;
  --navy-deep: #1e2340;
  --gold: #F8B520;
  --gold-soft: #FEF3C7;
  --white: #FFFFFF;
  --off: #F8F6F1;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e8e4dc;
  --success: #16a34a;
  --success-bg: #dcfce7;
  --accent: #F8B520;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); }

/* RAINBOW BAR */
.rainbow { height: 4px; background: linear-gradient(90deg,#e74c3c,#f39c12,#2ecc71,#3498db,#9b59b6,#e74c3c); }

/* TOP BAR */
.topbar {
  background: var(--navy);
  padding: .65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; }
.logo em { color: var(--gold); font-style: normal; }
.topbar-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

/* URGENCY BANNER */
.urgency {
  background: var(--gold);
  text-align: center;
  padding: .55rem 1rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: calc(100vh - 120px);
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-form-col { position: static !important; }
}

/* HERO LEFT */
.hero-copy {
  background: var(--navy);
  padding: 3rem 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(248,181,32,.07);
}
.hero-copy::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(248,181,32,.05);
}
.certif-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.certif-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-copy .lead {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-proof {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-item { text-align: left; }
.proof-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.proof-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; }

/* HERO RIGHT — FORM */
.hero-form-col {
  background: var(--off);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(43,49,91,.08);
  border: 1px solid var(--border);
}
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
  line-height: 1.2;
}
.form-card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cpf-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: .6rem .9rem;
  margin-bottom: 1.5rem;
}
.cpf-icon { font-size: 18px; }
.cpf-text { font-size: 12px; color: #92400e; line-height: 1.4; }
.cpf-text strong { display: block; font-size: 13px; }

label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: .75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
  margin-bottom: 1rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
input::placeholder, textarea::placeholder { color: #bbb; }
textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-icon { font-size: 16px; }

.form-reassurance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1rem;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
}
.reassurance-icon { color: var(--success); font-size: 12px; }

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .5rem; }
.success-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* CONTENT SECTIONS */
.section { padding: 4rem 2.5rem; }
.section-inner { max-width: 720px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.section p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

/* FOR WHO */
.forwho { background: var(--off); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 1.5rem; }
@media (max-width: 600px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.who-check { color: var(--success); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.who-text { font-size: 13px; color: var(--text); line-height: 1.5; }
.who-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }

/* FORMATION DETAILS */
.formation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1.5rem; }
@media (max-width: 600px) { .formation-grid { grid-template-columns: 1fr; } }
.formation-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
}
.fstat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.fstat-label { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 4px; }

.modules-list { margin-top: 1.5rem; list-style: none; }
.modules-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.modules-list li:last-child { border: none; }
.module-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* TESTIMONIALS */
.testimonials { background: var(--navy); }
.testimonials .section-tag { background: var(--gold); color: var(--navy); }
.testimonials h2 { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 1.5rem; }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1.25rem;
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: .6rem; }
.testi-quote { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; font-style: italic; margin-bottom: .75rem; }
.testi-author { font-size: 12px; color: var(--gold); font-weight: 600; }
.testi-role { font-size: 11px; color: rgba(255,255,255,.45); }

/* HOW IT WORKS */
.steps-list { margin-top: 1.5rem; counter-reset: steps; }
.step-item {
  display: flex;
  gap: 14px;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-item:last-child { border: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.step-content p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* CTA BOTTOM */
.cta-bottom {
  background: linear-gradient(135deg, var(--navy) 0%, #3d4470 100%);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}
.cta-bottom h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: #fff; margin-bottom: .75rem; }
.cta-bottom p { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.btn-cta-bottom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s;
}
.btn-cta-bottom:hover { transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.4);
}
footer strong { color: var(--gold); }

/* MOBILE STICKY CTA */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 1rem 1.5rem;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.mobile-sticky a {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: .9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 800px) { .mobile-sticky { display: block; } }

/* HERO CTAs */
.hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 2rem; max-width: 420px; }
.hero-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 10px; padding: .95rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(248,181,32,.35);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(248,181,32,.45); }
.hero-btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 10px; padding: .85rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* INTENT PILL */
.intent-pill {
  display: none; align-items: center; gap: 7px;
  background: var(--gold-soft); border: 1px solid #fde68a;
  border-radius: 8px; padding: .5rem .85rem; margin-bottom: 1rem;
  font-size: 12px; color: #92400e; font-weight: 500;
}
.intent-pill.visible { display: flex; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy > * { animation: fadeUp .5s ease forwards; opacity: 0; }
.hero-copy > *:nth-child(1) { animation-delay: .1s; }
.hero-copy > *:nth-child(2) { animation-delay: .2s; }
.hero-copy > *:nth-child(3) { animation-delay: .3s; }
.hero-copy > *:nth-child(4) { animation-delay: .4s; }