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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

:root {
  --ink: #08090A;
  --ink-2: #1A1D23;
  --ink-3: #2C3140;
  --steel: #4A5568;
  --mist: #8892A4;
  --border: #E2E5EC;
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --blue: #1847F0;
  --blue-dark: #1238C8;
  --blue-light: #EEF2FF;
  --cyan: #00C9C8;
  --cyan-light: #E6FFFE;
  --amber: #F59E0B;
  --green: #10B981;
  --green-light: #ECFDF5;
  --red: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.12);
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: inherit
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.f-display {
  font-family: 'Bricolage Grotesque', sans-serif
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1 }
  50% { opacity: .3 }
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 100px 0
}

.section--gray {
  background: var(--bg)
}

.section--ink {
  background: var(--ink);
  color: var(--white)
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-md)
}

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

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--steel);
  transition: background .15s, color .15s;
}

.nav-links a:hover {
  background: var(--bg);
  color: var(--ink)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 16px rgba(24,71,240,.3) !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(24,71,240,.35) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s
}

/* ═══════════════════════════════════════════
   URGENCY BANNER
═══════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(90deg, #0F2A5A 0%, #1847F0 50%, #0F2A5A 100%);
  color: var(--white);
  text-align: center;
  padding: 9px 40px 9px 16px; /* right padding for the close btn */
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  line-height: 1.4;
  /* slide-up transition */
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 1;
}

.urgency-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.urgency-banner strong {
  color: var(--cyan);
}

/* Close (dismiss) button */
.banner-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
  transition: opacity .2s, background .2s;
  flex-shrink: 0;
}

.banner-close:hover {
  opacity: 1;
  background: rgba(255,255,255,.25);
}

.countdown-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.countdown-unit {
  background: rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 2px 7px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
  letter-spacing: .02em;
}

.countdown-sep {
  font-weight: 800;
  color: var(--cyan);
}

/* Desktop: show long text, hide short */
.banner-text-short { display: none }
.banner-text-long  { display: inline }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  /* top padding = urgency-banner height + nav height + spacing */
  padding-top: 160px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite alternate;
}

.hbc-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24,71,240,.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hbc-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,201,200,.08) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-delay: -3s;
}

.hbc-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,.06) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes float {
  from { transform: scale(1) translate(0,0) }
  to   { transform: scale(1.05) translate(12px,-12px) }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,71,240,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,71,240,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF7ED;
  border: 1px solid #FDE68A;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .75rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 24px;
  animation: fadeUp .5s ease both;
}

.badge-fire {
  font-size: .9rem
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.02;
  margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--steel);
  line-height: 1.75;
  max-width: 480px;
  animation: fadeUp .6s .2s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  animation: fadeUp .6s .3s ease both;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--steel);
  font-weight: 500
}

.trust-icon {
  font-size: 1rem
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp .6s .4s ease both;
}

/* ── SOCIAL PROOF STRIP under hero actions ── */
.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  animation: fadeUp .6s .5s ease both;
}

.sps-avatars {
  display: flex;
}

.sps-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}

.sps-avatars .sps-avatar:first-child { margin-left: 0 }

.sps-text {
  font-size: .78rem;
  color: var(--steel);
  font-weight: 500;
  line-height: 1.4;
}

.sps-text strong {
  color: var(--ink);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(24,71,240,.3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24,71,240,.4)
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px)
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 14px
}

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

/* ─── HERO FORM CARD ─── */
.hero-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  animation: fadeUp .7s .3s ease both;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.form-header {
  margin-bottom: 28px
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px
}

.form-header p {
  font-size: .85rem;
  color: var(--mist)
}

.form-group {
  margin-bottom: 16px
}

.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: .92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,71,240,.1);
}

.form-control::placeholder {
  color: var(--mist)
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.submit-btn {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 28px rgba(24,71,240,.3);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24,71,240,.4)
}

.submit-btn:active {
  transform: translateY(0)
}

.submit-btn.loading {
  pointer-events: none;
  opacity: .8
}

.form-disclaimer {
  text-align: center;
  font-size: .72rem;
  color: var(--mist);
  margin-top: 14px;
  line-height: 1.5;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink)
}

.form-success p {
  font-size: .88rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 16px;
}

.wa-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 4px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}

.wa-success-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

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

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--steel);
  white-space: nowrap;
}

.ticker-sep {
  color: var(--blue);
  font-size: 1rem
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-header {
  max-width: 600px;
  margin-bottom: 64px
}

.why-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-top: 12px;
  margin-bottom: 16px
}

.why-header p {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.75
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.why-card:hover::after {
  transform: scaleX(1)
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink)
}

.why-card p {
  font-size: .875rem;
  color: var(--steel);
  line-height: 1.7
}

/* ═══════════════════════════════════════════
   COURSES
═══════════════════════════════════════════ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.course-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl)
}

.course-header {
  padding: 36px 36px 0;
  position: relative;
  flex: 1;   /* grow to fill — pushes footer down */
}

.course-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.course-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px
}

.course-card .desc {
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 24px
}

.course-topics {
  list-style: none;
  margin-bottom: 28px
}

.course-topics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--steel);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  line-height: 1.5;
}

.course-topics li:last-child {
  border-bottom: none
}

.topic-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.course-footer {
  padding: 24px 36px 36px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.course-price .old {
  font-size: .85rem;
  color: var(--mist);
  text-decoration: line-through
}

.course-price .new {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-top: 2px;
}

.course-price .new em {
  font-size: 1rem;
  color: var(--steel);
  font-style: normal
}

.course-enroll-btn {
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(24,71,240,.25);
}

.course-enroll-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

/* ═══════════════════════════════════════════
   CURRICULUM TABS
═══════════════════════════════════════════ */
.tab-nav {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--steel);
  transition: all .2s;
}

.tab-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm)
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.month-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}

.month-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.month-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3
}

.month-list {
  list-style: none
}

.month-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--steel);
  padding: 5px 0;
  line-height: 1.5;
}

.month-list li::before {
  content: '—';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* ═══════════════════════════════════════════
   TOOLS STRIP
═══════════════════════════════════════════ */
.tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.tool-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md)
}

.tool-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.tool-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--blue);
  color: var(--white);
  padding: 56px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat-num span {
  color: var(--cyan)
}

.stat-lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  font-weight: 500
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.stars {
  color: var(--amber);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.review-text {
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink)
}

.reviewer-role {
  font-size: .75rem;
  color: var(--mist);
  margin-top: 2px
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 56px auto 0;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl)
}

.pricing-card.featured {
  border-color: var(--blue);
  background: var(--blue-light)
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px
}

.pricing-sub {
  font-size: .85rem;
  color: var(--mist);
  margin-bottom: 28px
}

.pricing-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.pricing-num sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: .4rem;
  margin-right: 2px
}

.pricing-orig {
  font-size: .88rem;
  color: var(--mist);
  text-decoration: line-through;
  margin-top: 6px;
  margin-bottom: 28px
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--steel);
}

.pf-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-card.featured .pf-check {
  background: rgba(16,185,129,.15)
}

/* ─── SEATS SCARCITY ─── */
.seats-left {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 18px;
}

.seats-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   LEAD FORM SECTION (mid-page)
═══════════════════════════════════════════ */
.lead-section {
  background: linear-gradient(135deg, #0A1628 0%, #0F2A5A 50%, #082840 100%);
  color: var(--white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.lead-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,201,200,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.lead-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 12px 0 20px;
}

.lead-left p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 36px
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.trust-list li span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,71,240,.07);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-a p {
  font-size: .92rem;
  color: var(--steel);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 16px
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(255,255,255,.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,255,255,.15)
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px)
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink-2);
  color: rgba(255,255,255,.45);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

footer p {
  font-size: .82rem
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color .2s
}

.footer-links a:hover {
  color: var(--white)
}

/* ═══════════════════════════════════════════
   FLOATING BAR
═══════════════════════════════════════════ */
.float-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  opacity: 0;
  background: var(--ink);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,.4);
  z-index: 999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.08);
}

.float-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1
}

.float-bar-text {
  font-size: .85rem;
  color: rgba(255,255,255,.65)
}

.float-bar-text strong {
  color: var(--white)
}

.float-bar-btn {
  background: var(--blue);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s, transform .2s;
}

.float-bar-btn:hover {
  background: var(--blue-dark);
  transform: scale(1.04)
}

/* ═══════════════════════════════════════════
   WHATSAPP BUBBLE
═══════════════════════════════════════════ */
.wa-bubble {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4) }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1) }
}

.wa-label {
  background: var(--ink);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}

.wa-bubble:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal-d1 { transition-delay: .05s }
.reveal-d2 { transition-delay: .12s }
.reveal-d3 { transition-delay: .19s }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px }
  .hero-form-card { max-width: 520px }
  .lead-inner { grid-template-columns: 1fr; gap: 48px }
  .lead-form-card { max-width: 520px }
  .why-grid { grid-template-columns: repeat(2, 1fr) }
  .courses-grid { grid-template-columns: 1fr }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px }
  .reviews-grid { grid-template-columns: 1fr }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px }
  .tab-panel.active { grid-template-columns: 1fr }
}

@media(max-width:768px) {
  /* Nav */
  .nav-links { display: none }
  .hamburger { display: flex }
  .nav-logo img { height: 34px }

  /* Urgency banner — compact single line, no wrap */
  .urgency-banner {
    padding: 7px 36px 7px 12px;
    font-size: .7rem;
    flex-wrap: nowrap;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
  }
  /* Hide the long text on mobile, keep just icon + short label + countdown */
  .banner-text-long  { display: none }
  .banner-text-short { display: inline }
  .countdown-unit {
    font-size: .75rem;
    min-width: 26px;
    padding: 1px 5px;
  }

  /* Hero — extra top padding because banner is taller when wrapping */
  .hero { padding-top: 190px }

  /* General */
  .section { padding: 72px 0 }
  .why-grid { grid-template-columns: 1fr }
  .hero h1 { font-size: 2.3rem }
  .float-bar-text { display: none }
  .form-row { grid-template-columns: 1fr }
  .wa-bubble { bottom: 80px; right: 16px }
}
