/* ═══════════════════════════════════════
    TOKENS — Paleta corporativa Aulaformación
═══════════════════════════════════════ */
:root {
  --red:        #CC0000;
  --red-deep:   #990000;
  --red-light:  #FF2222;
  --red-bg:     #FFF5F5;
  --red-border: #FFCCCC;
  --dark:       #1A1A1A;
  --dark-2:     #2D2D2D;
  --green:      #22C55E;
  --green-bg:   #F0FDF4;
  --white:      #FFFFFF;
  --off-white:  #F9F9F9;
  --gray-100:   #F3F3F3;
  --gray-300:   #CCCCCC;
  --gray-500:   #777777;
  --gray-700:   #444444;
  --gold:       #F59E0B;
  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; color: var(--dark); }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
    TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.topbar a { color: #FF6666; font-weight: 600; }
.topbar strong { color: var(--white); }

/* ═══════════════════════════════════════
    NAVBAR
═══════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logos-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logos-wrap img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logos-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-300);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}
.nav-phone strong { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-deep); color: white; }

/* ═══════════════════════════════════════
    HERO
═══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #7A0000 0%, var(--red-deep) 45%, var(--red) 100%);
  padding: 72px 0 56px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #FFD0D0;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.hero-badge::before { content: '✓'; color: #FFB0B0; }

.hero h1 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero h1 span { color: #FFCCCC; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

/* CTA group */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); color: var(--red-deep); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s;
}
.btn-hero-secondary:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ── SAVINGS CARD ── */
.savings-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
}
.savings-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.savings-card-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.savings-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.savings-slider-label strong { color: var(--dark); }
input[type="range"] {
  width: 100%;
  accent-color: var(--red);
  height: 6px;
  cursor: pointer;
  margin-bottom: 18px;
}
.savings-result {
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 18px;
}
.savings-result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #16a34a;
  font-weight: 700;
  margin-bottom: 3px;
}
.savings-amount {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 3px;
}
.savings-note { font-size: 11px; color: #16a34a; opacity: .8; }
.btn-primary {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.savings-disclaimer { text-align: center; font-size: 11px; color: var(--gray-500); margin-top: 9px; }

/* ═══════════════════════════════════════
    TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--red);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 500;
}
.trust-icon { font-size: 20px; }

/* ═══════════════════════════════════════
    CÓMO FUNCIONA
═══════════════════════════════════════ */
.how-section { padding: 68px 0; background: var(--white); }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 540px; margin-bottom: 44px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.step-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--red);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.step-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════
    TRUST BLOCKS
═══════════════════════════════════════ */
.trust-section { padding: 68px 0; background: var(--off-white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.trust-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--red);
}
.trust-block-icon { font-size: 34px; margin-bottom: 14px; }
.trust-block-number {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-block-label { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.trust-block-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════
    CURSOS GRID
═══════════════════════════════════════ */
.courses-section { padding: 68px 0; background: var(--white); }
.courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.course-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* colored ribbon top */
.course-card { border-top: 3px solid var(--red); }

.course-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.oferta-ribbon {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 4px;
}
.course-body { padding: 18px; }
.course-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 9px; }
.course-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tag-ia   { background: #FFE4E4; color: var(--red-deep); }
.tag-chat { background: #fef9c3; color: #854d0e; }
.tag-auto { background: #ede9fe; color: #6d28d9; }
.tag-ms   { background: #e0f2fe; color: #0369a1; }
.tag-data { background: #fce7f3; color: #9d174d; }

.course-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 7px; line-height: 1.35; color: var(--dark); }
.course-meta { font-size: 11px; color: var(--gray-500); margin-bottom: 12px; display: flex; gap: 10px; }
.course-footer { display: flex; align-items: center; justify-content: space-between; }
.course-price-old { font-size: 11px; color: var(--gray-500); text-decoration: line-through; }
.course-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}
.fundae-badge {
  display: inline-block;
  font-size: 9px;
  background: var(--green-bg);
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
}
.oferta-badge {
  display: inline-block;
  font-size: 9px;
  background: #FFF0F0;
  color: var(--red);
  border: 1px solid var(--red-border);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
}
.btn-course {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 7px 13px;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-course:hover { background: var(--red); color: white; }

.courses-cta { text-align: center; margin-top: 36px; }
.btn-outline-large {
  display: inline-block;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 34px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.btn-outline-large:hover { background: var(--red); color: white; }

/* ═══════════════════════════════════════
    TESTIMONIALS
═══════════════════════════════════════ */

/* MASTERS SECTION */
.masters-section {
  padding: 72px 0;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.masters-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.masters-section .section-eyebrow { color: #FF6666; }
.masters-section .section-title   { color: #FFFFFF; }
.masters-section .section-sub     { color: rgba(255,255,255,.55); margin-bottom: 48px; }

.masters-ia-school-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.masters-ia-school-badge img { height: 28px; width: auto; object-fit: contain; }
.masters-ia-school-badge span { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .04em; }

.masters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.master-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid #CC0000;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.master-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(204,0,0,.2);
}
.master-card-header {
  background: linear-gradient(135deg, rgba(204,0,0,.25) 0%, rgba(100,0,0,.35) 100%);
  padding: 32px 28px 24px;
}
.master-level-tag {
  display: inline-block;
  background: #CC0000;
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.master-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 10px;
}
.master-card-tagline { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }
.master-card-body { padding: 24px 28px; }

.master-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.master-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.master-pill.highlight {
  background: rgba(204,0,0,.2);
  border-color: rgba(204,0,0,.4);
  color: #FF9999;
}

.master-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.master-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}
.master-features li::before {
  content: 'check';
  font-family: 'Material Icons', monospace;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px; height: 17px;
  min-width: 17px;
  background: #CC0000;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
  font-family: inherit;
  content: 'check';
}
.master-features li::before { content: '\2713'; font-family: inherit; }

.master-card-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.master-stat-group { display: flex; gap: 20px; }
.master-stat { text-align: center; }
.master-stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.master-stat-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }

.btn-master {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #CC0000;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-master:hover { background: #FF2222; color: white; transform: translateY(-1px); }

.masters-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.masters-note a { color: rgba(255,255,255,.5); text-decoration: underline; }

@media (max-width: 780px) {
  .masters-grid { grid-template-columns: 1fr; }
}


.testimonials-section { padding: 68px 0; background: var(--dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-eyebrow { color: #FF8888; }
.testimonials-section .section-sub { color: rgba(255,255,255,.55); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: #FF9999; }
.testimonial-role { font-size: 11px; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════
    FORM SECTION
═══════════════════════════════════════ */
.form-section { padding: 76px 0; background: var(--off-white); }
.form-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.form-copy h2 { margin-bottom: 14px; }
.form-copy p { font-size: 15px; color: var(--gray-500); margin-bottom: 22px; line-height: 1.7; }
.form-bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.form-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.form-bullets li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  border-top: 4px solid var(--red);
}
.contact-form h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.contact-form > p { font-size: 13px; color: var(--gray-500); margin-bottom: 22px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-300);
  border-radius: 7px;
  padding: 10px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 78px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--red);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--red-deep); transform: translateY(-1px); }
.form-privacy { text-align: center; font-size: 11px; color: var(--gray-500); margin-top: 10px; line-height: 1.5; }
.form-privacy a { color: var(--red); }

/* ═══════════════════════════════════════
    FAQ
═══════════════════════════════════════ */
.faq-section { padding: 68px 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 22px;
}
.faq-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.faq-item p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ═══════════════════════════════════════
    CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: white; font-size: clamp(20px, 3vw, 34px); font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; }
.btn-white {
  display: inline-block;
  background: white;
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 38px;
  border-radius: 8px;
  transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); color: var(--red-deep); }

/* ═══════════════════════════════════════
    FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
}
.footer a { color: rgba(255,255,255,.45); }
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-logos img { height: 32px; width: auto; opacity: .75; object-fit: contain; }

/* ═══════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .savings-card  { max-width: 100%; }
  .form-layout   { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid      { grid-template-columns: 1fr; }
  .nav-phone     { display: none; }
}
@media (max-width: 600px) {
  .trust-items   { gap: 18px; }
  .form-row      { grid-template-columns: 1fr; }
  .courses-header{ flex-direction: column; align-items: flex-start; }
  .logos-wrap img { height: 34px; }
  .hero-ctas     { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
}

/* ═══ ANIMATIONS ═══ */
@media (prefers-reduced-motion: no-preference) {
  .course-card, .trust-block, .step-card {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .45s ease forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  .course-card:nth-child(2) { animation-delay: .06s; }
  .course-card:nth-child(3) { animation-delay: .12s; }
  .course-card:nth-child(4) { animation-delay: .18s; }
  .course-card:nth-child(5) { animation-delay: .24s; }
  .course-card:nth-child(6) { animation-delay: .30s; }
}