/* ─────────────────────────────────────────
   LIDERHE · BP START — style.css
───────────────────────────────────────── */

/* ── REVEAL DELAY UTILITIES ── */
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .32s; }

/* ── FOCUS VISIBLE ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ── TOKENS ── */
:root {
  /* Primária — Rosa da logo */
  --teal:       #E82B6E;
  --teal-dark:  #c01f57;
  --teal-light: #fde8f1;

  /* Secundária — Laranja da logo */
  --orange:      #F59E3F;
  --orange-dark: #d4821e;
  --orange-light:#fef3e2;

  /* Navy — azul escuro da logo */
  --navy:       #1A3358;
  --navy-deep:  #0e1f38;
  --navy-mid:   #1e3d69;

  --white:      #ffffff;
  --off:        #f7f6f9;
  --border:     #e8e3ee;
  --muted:      #4f556b;
  --text:       #18202e;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: inherit; }
a { text-decoration: none; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.visible    { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.13s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.21s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.29s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.37s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.45s; }
.stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.53s; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .38s, padding .28s, box-shadow .38s;
}
nav.scrolled {
  background: rgba(14,31,56,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 56px;
  box-shadow: 0 2px 36px rgba(0,0,0,.28);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.15));
  transition: opacity .2s;
  margin: -10px 0;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
  padding: 11px 26px;
  border-radius: 100px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,43,110,.3);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(148deg, var(--navy-deep) 0%, var(--navy) 55%, #0f2d50 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(232,43,110,.18) 0%, transparent 70%);
  top: -180px; right: -110px;
  animation: drift 9s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,63,.14) 0%, transparent 70%);
  bottom: -110px; left: -80px;
  animation: drift 7s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,28px) scale(1.06); }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,43,110,.13);
  border: 1px solid rgba(232,43,110,.36);
  color: #ffb3ce;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .7s .1s var(--ease) forwards;
}
.hero-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.6); }
}

/* Hero title */
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp .75s .22s var(--ease) forwards;
}
/* "Imersão" — peso leve, recuado */
.hero h1 .line-1 {
  display: block;
  font-weight: 300;
  opacity: .7;
  font-size: .46em;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.hero h1 .line-2 { display: block; }
.hero h1 .line-3 { display: block; font-weight: 800; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.52);
  line-height: 1.78;
  max-width: 520px;
  margin: 20px auto 50px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .75s .38s var(--ease) forwards;
}

.hero-dates {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .75s .52s var(--ease) forwards;
}
.date-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  padding: 22px 36px;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: background .26s, border-color .26s, transform .26s var(--ease);
}
.date-card:hover {
  background: rgba(232,43,110,.11);
  border-color: rgba(232,43,110,.32);
  transform: translateY(-4px);
}
.date-card .weekday { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; font-weight: 600; }
.date-card .day     { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 22px; font-weight: 700; }
.date-card .time    { font-size: 13px; color: rgba(255,255,255,.42); margin-top: 5px; }

.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .75s .66s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 14px; letter-spacing: .3px;
  padding: 17px 42px; border-radius: 100px;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(232,43,110,.38);
}
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.72);
  font-weight: 500; font-size: 14px;
  padding: 16px 42px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s, background .2s, transform .18s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.48); color: var(--white);
  background: rgba(255,255,255,.05); transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--navy);
  font-weight: 600; font-size: 14px; letter-spacing: .3px;
  padding: 17px 42px; border-radius: 100px;
  transition: transform .18s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.15); }
.btn-outline-w {
  background: transparent; color: var(--white);
  font-weight: 500; font-size: 14px;
  padding: 16px 42px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.42);
  transition: border-color .2s, background .2s, transform .18s;
}
.btn-outline-w:hover {
  border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px);
}

/* ─── SHARED ─── */
section { padding: 104px 48px; }
.container { max-width: 1100px; margin: 0 auto; }

.label {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: var(--navy);
  line-height: 1.12; margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-title .accent { color: var(--orange); }
.section-title.light   { color: var(--white); }
.hero h1 .line-2 .accent { color: var(--orange); }
.section-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.85; max-width: 520px; font-weight: 400;
}

.section-desc.light { color: rgba(255,255,255,.46); }

/* ─── QUOTE BAND ─── */
.quote-band {
  background: var(--teal);
  padding: 68px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  font-family: Georgia, serif;
  font-size: 340px; color: rgba(255,255,255,.07);
  top: -70px; left: 20px; line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 32px); font-weight: 600;
  color: var(--white); max-width: 780px; margin: 0 auto;
  line-height: 1.5; position: relative; z-index: 1;
}
.quote-source {
  margin-top: 22px; font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; z-index: 1;
}

/* ─── FOR WHOM ─── */
.for-whom { background: var(--off); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 56px;
}
.fw-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .24s;
}
.fw-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease);
}
.fw-card:hover { transform: translateY(-7px); box-shadow: 0 22px 60px rgba(27,43,107,.10); border-color: transparent; }
.fw-card:hover::after { transform: scaleX(1); }
.fw-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.fw-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.5; }

/* ─── LEARN ─── */
.learn { background: var(--white); }

/*
  Layout da seção:
  - Título + lista de tópicos em cima (largura total)
  - Abaixo: aside com stat + citação (em linha)
*/
.learn-header { margin-bottom: 48px; }

/*
  Lista: 3 colunas fixas, ocupa 100% do container
  O 7º item fica na col 1 da 3ª linha (naturalmente)
*/
.learn-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: background .22s, border-color .22s, color .22s, transform .26s var(--ease), box-shadow .22s;
  cursor: default;
}
.learn-list li:hover {
  background: var(--off);
  border-color: var(--teal);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,43,110,.08);
}

/* Last item centered if it's alone on its row (works for any count that leaves 1 orphan in a 3-col grid) */
.learn-list li:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  max-width: 380px;
  margin-inline: auto;
}
.learn-list li:last-child:nth-child(3n+2) {
  grid-column: span 2;
}

.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check svg { width:11px; height:11px; }

/* aside bar: two cards side by side below the list */
.learn-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-block {
  background: var(--navy);
  border-radius: 22px; padding: 32px 32px;
  display: flex; align-items: center; gap: 24px;
  overflow: hidden; position: relative;
}
.stat-block::before {
  content: '';
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,63,.18) 0%, transparent 70%);
  bottom: -60px; right: -40px; pointer-events: none;
}
.stat-icon-wrap {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(245,158,63,.18);
  border: 1px solid rgba(245,158,63,.32);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.stat-icon-wrap svg { width: 26px; height: 26px; }
.stat-text { position: relative; z-index: 1; }
.stat-num {
  font-size: 34px; font-weight: 800; color: var(--orange); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.55; margin-top: 5px; }

.highlight-card {
  background: var(--teal); border-radius: 22px; padding: 32px 32px;
}
.highlight-card p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.6;
}
.highlight-card .sub {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.6); margin-top: 14px; font-style: italic;
}

/* ─── METHODOLOGY ─── */
.methodology {
  background: var(--navy-deep); position: relative; overflow: hidden;
}
.methodology::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px; pointer-events: none;
}

/* FIXED: 3 columns → renders 3+3 */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}

.method-card {
  background: rgba(255,255,255,.038);
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 20px; padding: 32px 26px;
  transition: background .28s, border-color .28s, transform .32s var(--ease);
  position: relative; overflow: hidden;
}
.method-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,43,110,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.method-card:hover {
  background: rgba(232,43,110,.06);
  border-color: rgba(232,43,110,.22);
  transform: translateY(-5px);
}
.method-card:hover::before { opacity: 1; }

/* Badge: contained pill, not a floating giant number */
.method-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232,43,110,.13);
  border: 1px solid rgba(232,43,110,.24);
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
  letter-spacing: .5px;
  transition: background .28s, border-color .28s;
}
.method-card:hover .method-badge {
  background: rgba(232,43,110,.26);
  border-color: rgba(232,43,110,.48);
}
.method-card h3 {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.82); line-height: 1.55;
}

/* ─── INSTRUCTORS ─── */
.instructors { background: var(--off); }

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px;
}
.inst-card {
  background: var(--white); border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}
.inst-card:hover { transform: translateY(-9px); box-shadow: 0 28px 70px rgba(26,51,88,.14); }

.inst-header {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 42px 38px 34px; position: relative; overflow: hidden;
}
.inst-header::after {
  content: '';
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,63,.18) 0%, transparent 70%);
  bottom: -75px; right: -55px; pointer-events: none;
}
/* Photo as full-bleed background of inst-header */
.inst-header {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 42px 38px 34px; position: relative; overflow: hidden;
  min-height: 480px;
}
.inst-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  z-index: 0;
}
.inst-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,31,56,.18) 0%,
    rgba(14,31,56,.62) 60%,
    rgba(14,31,56,.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.inst-header::after {
  content: '';
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,63,.18) 0%, transparent 70%);
  bottom: -75px; right: -55px; pointer-events: none;
  z-index: 1;
}

/* ─── SECTION CTA ─── */
.section-cta {
  margin-top: 52px;
  text-align: center;
}
.btn-section-cta {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 15px; letter-spacing: .3px;
  padding: 16px 48px; border-radius: 100px;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-section-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(232,43,110,.35);
}
.btn-section-cta--light {
  background: var(--white); color: var(--teal);
}
.btn-section-cta--light:hover {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
}

/* ─── PRICE CARD CTA ─── */
.btn-price-cta {
  display: block;
  margin-top: 28px;
  text-align: center;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 14px; letter-spacing: .3px;
  padding: 14px 32px; border-radius: 100px;
  transition: transform .18s, box-shadow .2s, background .2s;
}
.btn-price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.btn-price-cta--outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-price-cta--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
}
.inst-name { font-size: 26px; font-weight: 700; color: var(--white); position: relative; z-index: 2; }
.inst-crp  { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 7px; position: relative; z-index: 2; }
.inst-body { padding: 30px 38px; }
.inst-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.inst-bio { font-size: 14px; color: var(--muted); line-height: 1.78; font-weight: 300; }
.inst-tag {
  display: inline-block;
  background: var(--orange-light); color: var(--orange-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-top: 20px;
}

/* ─── INCLUDED ─── */
.included { background: var(--white); }

.inc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 56px;
}
.inc-card {
  border: 1px solid var(--border); border-radius: 22px;
  padding: 44px 30px; text-align: center;
  transition: border-color .28s, transform .32s var(--ease), box-shadow .28s;
  position: relative; overflow: hidden;
}
.inc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--orange-light) 0%, transparent 55%);
  opacity: 0; transition: opacity .28s;
}
.inc-card:hover {
  border-color: var(--teal); transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(232,43,110,.11);
}
.inc-card:hover::before { opacity: 1; }
.inc-icon {
  font-size: 38px; margin-bottom: 20px; display: block;
  position: relative; z-index: 1;
  transition: transform .32s var(--ease);
}
.inc-card:hover .inc-icon { transform: scale(1.16) rotate(-5deg); }
.inc-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; position: relative; z-index: 1; }
.inc-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

/* ─── PRICING ─── */
.pricing { background: var(--navy); position: relative; overflow: hidden; }
.pricing::after {
  content: '';
  position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,63,.08) 0%, transparent 70%);
  bottom: -220px; right: -210px; pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px; margin-top: 56px; position: relative; z-index: 1;
}
.price-card {
  border-radius: 26px; padding: 50px 42px;
  position: relative; overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .28s;
}
.price-card:hover { transform: translateY(-7px); }
.price-card.standard {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
}
.price-card.standard:hover { box-shadow: 0 20px 56px rgba(0,0,0,.28); }
.price-card.featured { background: var(--teal); border: 1px solid var(--teal); }
.price-card.featured:hover { box-shadow: 0 20px 56px rgba(232,43,110,.35); }
.price-card.featured::before {
  content: '';
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  top: -90px; right: -70px;
}
.price-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.price-card.standard .price-badge { background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); }
.price-card.featured .price-badge { background: rgba(255,255,255,.2);  color: var(--white); }
.price-who { font-size: 14px; color: rgba(255,255,255,.48); margin-bottom: 7px; }
.price-card.featured .price-who { color: rgba(255,255,255,.78); }
.price-amount {
  font-size: 60px; font-weight: 800; color: var(--white); line-height: 1;
  display: flex; align-items: flex-start; gap: 4px;
}
.price-amount sup { font-size: 22px; font-weight: 600; margin-top: 13px; }
.price-method { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 7px; }
.price-card.featured .price-method { color: rgba(255,255,255,.68); }
.price-divider { height: 1px; background: rgba(255,255,255,.1); margin: 26px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,.22); }
.price-installment { font-size: 14px; color: rgba(255,255,255,.42); }
.price-card.featured .price-installment { color: rgba(255,255,255,.78); }

/* ─── CTA ─── */
.cta-section {
  background: var(--teal);
  padding: 108px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 70%);
  top: -220px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(30px,5vw,56px); font-weight: 800;
  color: var(--white); margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-section p {
  font-size: 18px; color: rgba(255,255,255,.68);
  max-width: 500px; margin: 0 auto 52px;
  line-height: 1.72; font-weight: 300; position: relative; z-index: 1;
}
.cta-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; position: relative; z-index: 1;
}
.contacts {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 54px; position: relative; z-index: 1;
}
.contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: var(--white);
  font-size: 13px; padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, transform .18s;
}
.contact-chip:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding: 72px 80px 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,.35);
  line-height: 1.7; margin-top: 0;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.footer-link {
  font-size: 14px; color: rgba(255,255,255,.48); transition: color .18s;
}
.footer-link:hover { color: var(--white); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.footer-wa:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 80px;
  max-width: 1200px; margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,.22);
  text-align: center;
}
.footer-logo-img {
  height: 110px; width: auto;
  mix-blend-mode: lighten;
  margin: -20px 0 12px -8px;
  display: block;
  transition: opacity .2s;
}
.footer-logo-img:hover { opacity: .8; }

/* ─── RESPONSIVE ─── */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .method-grid  { grid-template-columns: repeat(2, 1fr); }
  .learn-list   { grid-template-columns: repeat(2, 1fr); }
  .learn-aside  { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {

  /* Nav */
  nav         { padding: 10px 18px; }
  nav.scrolled { padding: 10px 18px; }
  .nav-logo-img { height: 48px; margin: -6px 0; }
  .nav-cta    { font-size: 12px; padding: 9px 18px; }

  /* Global section spacing */
  section { padding: 64px 20px; }

  /* Hero */
  .hero { padding: 110px 20px 80px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub { font-size: 15px; margin: 16px auto 36px; }
  .hero-pill { font-size: 10px; letter-spacing: 1.8px; padding: 7px 16px; margin-bottom: 24px; }
  .hero-dates { flex-direction: column; align-items: center; gap: 12px; }
  .date-card  { width: 100%; max-width: 280px; padding: 18px 28px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; text-align: center; padding: 16px 24px; }

  /* Quote band */
  .quote-band { padding: 48px 24px; }
  .quote-text { font-size: clamp(17px, 5vw, 24px); }

  /* For whom */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .fw-card    { padding: 28px 22px; }

  /* Learn */
  .learn-list { grid-template-columns: 1fr; gap: 10px; }
  .learn-list li:last-child:nth-child(3n+1) { grid-column: auto; max-width: 100%; margin-inline: 0; }
  .learn-list li:last-child:nth-child(3n+2) { grid-column: auto; }
  .learn-aside { grid-template-columns: 1fr; gap: 14px; }
  .stat-block { padding: 24px 22px; gap: 16px; }
  .stat-num   { font-size: 28px; }
  .highlight-card { padding: 24px 22px; }
  .highlight-card p { font-size: 15px; }

  /* Methodology */
  .method-grid { grid-template-columns: 1fr; gap: 12px; }
  .method-card { padding: 24px 20px; }

  /* Instructors */
  .instructors-grid { grid-template-columns: 1fr; gap: 24px; }
  .inst-header { min-height: 380px; padding: 28px 24px 24px; }
  .inst-body   { padding: 24px 24px; }
  .inst-name   { font-size: 22px; }

  /* Included */
  .inc-grid { grid-template-columns: 1fr; gap: 14px; }
  .inc-card { padding: 32px 22px; }

  /* CTA section */
  .cta-section { padding: 72px 24px; }
  .cta-section h2 { font-size: clamp(26px, 7vw, 42px); }
  .cta-section p  { font-size: 16px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-white, .btn-outline-w { width: 100%; max-width: 300px; text-align: center; padding: 16px 24px; }
  .contacts { gap: 10px; margin-top: 36px; }
  .contact-chip { font-size: 12px; padding: 9px 16px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card   { padding: 36px 28px; }
  .price-amount { font-size: 48px; }

  /* Section CTA buttons */
  .section-cta { margin-top: 36px; }
  .btn-section-cta { width: 100%; max-width: 300px; text-align: center; padding: 15px 24px; font-size: 14px; }

  /* Footer */
  footer { padding: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer-bottom { padding: 16px 24px; }
  .footer-logo-img { height: 80px; margin: -14px 0 8px -6px; }
}

/* ── Small mobile (≤ 380px) ── */
@media (max-width: 380px) {
  .hero h1     { font-size: 30px; }
  .date-card   { max-width: 100%; }
  .nav-cta     { display: none; }
}