/* =========================================================
   Diplomado IA · Beca Coppel — Landing de inscripción
   Tokens: azul corporativo + oro Coppel · Outfit + Source Sans 3
   ========================================================= */

:root {
  --blue-950: #061a3d;
  --blue-900: #0a2f6b;
  --blue-800: #0e3f8c;
  --blue-700: #1557b0;
  --blue-100: #e8f0fc;
  --blue-50: #f3f7fd;

  --gold-400: #f5c400;
  --gold-500: #e6b800;
  --gold-100: #fff6cc;

  --ink: #121826;
  --ink-soft: #3d4659;
  --muted: #6b7385;
  --line: #d8dee9;
  --surface: #ffffff;
  --bg: #f0f3f9;
  --danger: #b42318;
  --ok: #0f7a45;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(6, 26, 61, 0.12);
  --shadow-sm: 0 4px 16px rgba(6, 26, 61, 0.08);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  --header-h: 64px;
  --space: clamp(1rem, 2.5vw, 1.5rem);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--blue-950);
}

h1 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--ink-soft); }

a {
  color: var(--blue-700);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-400);
  color: var(--blue-950);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding: 0.55rem 0;
}

.header-logos {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.logo {
  display: block;
  height: auto;
  width: auto;
  object-fit: contain;
  max-width: 100%;
  flex-shrink: 1;
}

.logo-coppel {
  width: min(180px, 32vw);
  height: auto;
}

.logo-ag {
  width: min(120px, 22vw);
  height: auto;
}

.logo-umi {
  width: min(44px, 10vw);
  height: min(44px, 10vw);
  object-fit: contain;
  flex-shrink: 0;
}

.logo-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1rem;
}

.logo-coppel-footer {
  width: min(180px, 50vw);
  height: auto;
}

.header-deadline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.deadline-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.header-deadline strong {
  color: var(--blue-900);
  font-family: var(--font-display);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 47, 107, 0.2);
}

.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-confirm {
  background: var(--blue-900);
  box-shadow: 0 0 0 2px var(--gold-400);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-900);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue-700);
  background: var(--blue-50);
}

.btn-block {
  width: 100%;
}

.btn-inline {
  margin-top: 0.25rem;
}

/* Hero */
.hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .enroll-panel {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }

  .logo-coppel {
    width: 200px;
  }

  .logo-ag {
    width: 130px;
  }

  .logo-umi {
    width: 48px;
    height: 48px;
  }

  .header-logos {
    gap: 1rem;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.accent-line {
  color: var(--blue-800);
}

.lead {
  font-size: 1.1rem;
  max-width: 36rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-meta li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.meta-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-950);
}

.meta-value.price-highlight {
  color: var(--blue-800);
}

.meta-value small {
  font-size: 0.75em;
  font-weight: 600;
}

.meta-note {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Enroll card */
.enroll-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(14, 63, 140, 0.12);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.5rem;
  overflow: hidden;
  position: relative;
}

.enroll-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--blue-800);
}

.enroll-kicker {
  margin: 0.35rem 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-700);
}

.enroll-head h2 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.progress {
  height: 6px;
  background: var(--blue-100);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--blue-800);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.progress-label {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.step {
  margin-top: 1.15rem;
  animation: fadeIn 0.3s ease;
}

.step[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.step-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.step-help {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.choice-grid {
  display: grid;
  gap: 0.65rem;
}

.choice-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--blue-50);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.choice-btn:hover {
  border-color: var(--blue-700);
}

.choice-btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.choice-btn.is-selected {
  border-color: var(--blue-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21, 87, 176, 0.15);
}

.choice-btn-muted {
  background: #f7f8fb;
}

.choice-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #8993a8;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.choice-btn.is-selected .choice-icon {
  border-color: var(--blue-800);
  box-shadow: inset 0 0 0 5px #fff;
  background: var(--blue-800);
}

.choice-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.choice-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--blue-950);
}

.choice-text small {
  color: var(--muted);
  font-size: 0.85rem;
}

.field {
  display: block;
  margin-bottom: 0.9rem;
}

.field-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--blue-950);
  font-family: var(--font-display);
}

.field input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(21, 87, 176, 0.15);
}

.field input.is-invalid {
  border-color: var(--danger);
}

.field-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.field-hint a {
  font-weight: 700;
}

.curp-reason {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.curp-reason::before {
  content: "🔒";
  margin-right: 0.25rem;
  font-size: 0.76rem;
}

#curp {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin: -0.4rem 0 0.75rem;
  font-weight: 600;
}

.prefill {
  background: var(--blue-50);
  border: 1px dashed var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.prefill p {
  margin: 0.2rem 0;
  color: var(--ink);
}

.prefill-label {
  display: inline-block;
  min-width: 4.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.step-actions {
  margin-top: 1.1rem;
}

.step-actions-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
}

.form-footnote {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Consent */
.consent-card {
  background: #fff;
  border: 1.5px solid rgba(14, 63, 140, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.1rem;
  position: relative;
}

.consent-badge {
  display: inline-block;
  background: var(--gold-400);
  color: var(--blue-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.55rem;
}

.consent-program {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.consent-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.consent-facts div {
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
}

.consent-facts dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}

.consent-facts dd {
  margin: 0.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-950);
}

.consent-list {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.consent-list li {
  margin-bottom: 0.4rem;
}

.consent-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-950);
  cursor: pointer;
}

.consent-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--blue-800);
  flex-shrink: 0;
}

/* Results */
.step-result {
  text-align: center;
  padding: 1rem 0.25rem 0.5rem;
  animation: fadeIn 0.35s ease;
}

.step-result h3 {
  margin-top: 0.75rem;
}

.result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0.5rem auto 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.result-icon-ok {
  background: #e3f7ec;
  color: var(--ok);
}

.result-icon-muted {
  background: var(--blue-100);
  color: var(--blue-800);
  font-family: var(--font-display);
}

.success-summary {
  text-align: left;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  font-size: 0.92rem;
}

.success-summary p {
  margin: 0.25rem 0;
  color: var(--ink);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.section-lead {
  font-size: 1.05rem;
}

/* Price */
.price-section {
  padding-top: 0;
}

.price-panel {
  display: grid;
  gap: 1.5rem;
  background: var(--blue-950);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.price-panel .eyebrow {
  background: rgba(245, 196, 0, 0.2);
  color: var(--gold-400);
}

.price-panel h2,
.price-panel p {
  color: #fff;
}

.price-panel p {
  opacity: 0.88;
}

@media (min-width: 800px) {
  .price-panel {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.price-caption {
  font-size: 0.9rem;
}

.price-full {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 1.15rem;
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.price-half {
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-half span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.price-half strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.price-half.coppel {
  background: rgba(245, 196, 0, 0.12);
  border-color: rgba(245, 196, 0, 0.35);
  color: var(--gold-400);
}

.price-half.you.is-highlight {
  background: #fff;
  color: var(--blue-950);
  border-color: transparent;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-week {
  margin: 0.9rem 0 0 !important;
  font-size: 0.9rem !important;
  opacity: 0.75 !important;
}

/* Ruta */
.ruta-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.ruta-track {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.ruta-node {
  flex: 1 1 0;
  min-width: 110px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.65rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.ruta-node:hover {
  border-color: var(--blue-700);
}

.ruta-node:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.ruta-node.is-active {
  border-color: var(--blue-800);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(21, 87, 176, 0.12);
}

.ruta-week {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-700);
  margin-bottom: 0.2rem;
}

.ruta-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-950);
}

.ruta-line {
  width: 16px;
  height: 2px;
  background: var(--line);
  flex-shrink: 0;
}

.ruta-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.28s ease;
}

.ruta-panel[hidden] {
  display: none !important;
}

.ruta-panel-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-700);
}

.ruta-panel ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.ruta-includes {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: #fff;
}

.ruta-includes h3 {
  color: #fff;
  font-size: 1rem;
}

.ruta-includes ul {
  margin: 0.4rem 0 0.75rem;
  padding-left: 1.15rem;
  opacity: 0.92;
}

.ruta-includes li {
  margin-bottom: 0.3rem;
}

.ruta-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
  color: #fff !important;
}

/* Benefits */
.benefit-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold-400);
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-950);
  padding: 0.9rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-700);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.faq-cta {
  margin-top: 1.75rem;
  text-align: center;
}

/* WhatsApp secundario: disponible durante la visita sin competir con el CTA */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 10px 28px rgba(4, 45, 22, 0.28);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  background: #178a45;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 13px 32px rgba(4, 45, 22, 0.34);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  box-shadow: 0 0 0 6px #1fa855;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.5rem;
  background: #fff;
}

.footer-inner p {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-meta {
  font-size: 0.78rem !important;
}

/* Mobile: form first priority */
@media (max-width: 959px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .enroll-panel {
    order: -1;
  }

  .hero-copy .btn-inline {
    display: none;
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    min-height: 52px;
    padding: 0.68rem 0.85rem;
    font-size: 0.84rem;
  }
}
