/* ===================================================================
   AKi cerca de ti — style.css
   Sistema de diseño según docs/02-DESIGN-SYSTEM.md (v4) +
   docs/12-HERO-HEADER-FOOTER-CODE.md (header/hero/footer de referencia)
   =================================================================== */

:root {
  /* Marca */
  --aki-orange: #FF4B16;
  --aki-orange-dark: #FF3813;
  --aki-orange-light: #FF791D;
  --aki-orange-pale: #FFEEDA;
  --aki-black: #101010;

  /* Neutros */
  --aki-cream: #FFFAF5;
  --aki-white: #FFFFFF;
  --aki-text: #111111;
  --aki-text-body: #2C2C2C;
  --aki-text-nav: #252525;
  --aki-text-muted: #6B6B6B;
  --aki-border: #E9E4DE;

  /* Acentos de categorías / iconos de beneficio */
  --aki-purple: #7E3793;
  --aki-pink: #FA1B4E;
  --aki-green: #315D22;

  --aki-gradient: linear-gradient(135deg, #FF3813 0%, #FF791D 100%);
  --aki-gradient-shape: linear-gradient(180deg, #FF9B35, #FF4B17);
}

/* ===== Reset básico ===== */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, ol, dl, dd, fieldset { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Iconos SVG reutilizables (ver sprite <symbol> al inicio de index.html) */
.icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-center { text-align: center; }
.text-accent { color: var(--aki-orange); }

/* ===== Tipografía base ===== */
body {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 16px;
  color: var(--aki-text);
  background: var(--aki-cream);
  line-height: 1.5;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; }

/* ===== Layout — contenedor único, mismo ancho en todo el sitio ===== */
.aki-container {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
}

.section { padding: 56px 0; }
.section--white { background: var(--aki-white); }
.section--cream { background: var(--aki-cream); }
.section__title { font-size: 26px; margin-bottom: 12px; }
.section__lead {
  color: var(--aki-text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ===== Botones ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-block { width: 100%; }

.btn-primary {
  background: var(--aki-gradient);
  color: var(--aki-white);
  box-shadow: 0 8px 20px rgba(255, 56, 19, 0.25);
}
.btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--aki-white);
  color: var(--aki-text);
  border: 1px solid var(--aki-border);
}
.btn-secondary:hover {
  background: var(--aki-cream);
}

/* ===== Tarjetas ===== */
.card {
  background: var(--aki-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 24px;
}

/* ===================================================================
   HEADER / NAV — ver docs/12-HERO-HEADER-FOOTER-CODE.md §1
   =================================================================== */
.aki-header {
  min-height: 88px;
  background: rgba(255, 255, 255, .96);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.aki-header__inner {
  min-height: 88px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.aki-logo img { width: 56px; }

.aki-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.aki-nav a {
  color: var(--aki-text-nav);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.aki-nav a:hover,
.aki-nav a.active {
  color: var(--aki-orange);
  border-bottom-color: var(--aki-orange);
}

.aki-button {
  padding: 12px 20px;
  color: white;
  background: linear-gradient(135deg, var(--aki-orange-dark), var(--aki-orange-light));
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(255, 84, 20, .22);
  flex-shrink: 0;
}

/* ===================================================================
   HERO — ver docs/12-HERO-HEADER-FOOTER-CODE.md §2-5
   (convertido a mobile-first: la base de abajo es la versión móvil)
   =================================================================== */
.aki-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf5 0%, #fffdfb 55%, #fff3e8 100%);
}

.aki-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  padding: 48px 0;
}

.aki-hero__text {
  position: relative;
  z-index: 10;
  text-align: center;
}

.aki-eyebrow {
  display: inline-block;
  color: var(--aki-green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.aki-hero h1 {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(30px, 7vw, 68px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--aki-text);
}

.aki-hero h1 span {
  display: block;
  color: var(--aki-orange);
}

.aki-hero__text > p {
  max-width: 480px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--aki-text-body);
}

/* ===== Los 4 beneficios del hero ===== */
.aki-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}

.aki-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.aki-benefit__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--aki-white);
}
.aki-benefit__icon .icon { width: 22px; height: 22px; }

.aki-benefit:nth-child(1) .aki-benefit__icon { background: var(--aki-orange); }
.aki-benefit:nth-child(2) .aki-benefit__icon { background: var(--aki-black); }
.aki-benefit:nth-child(3) .aki-benefit__icon { background: var(--aki-purple); }
.aki-benefit:nth-child(4) .aki-benefit__icon { background: var(--aki-pink); }

/* ===== Teléfono, formas decorativas y tarjetas flotantes ===== */
.aki-hero__visual {
  position: relative;
  height: 420px;
  margin-top: 24px;
}

.aki-phone {
  position: absolute;
  z-index: 6;
  width: 260px;
  right: 50%;
  bottom: 0;
  transform: translateX(50%) rotate(3deg);
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .22));
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-orange {
  width: 220px;
  height: 280px;
  right: 50%;
  top: -10px;
  transform: translateX(calc(50% + 55px));
  background: var(--aki-gradient-shape);
  border-radius: 48% 52% 50% 45%;
  z-index: 1;
  opacity: .9;
}

.shape-black {
  width: 230px;
  height: 230px;
  right: 50%;
  top: 55px;
  transform: translateX(calc(50% - 55px));
  background: var(--aki-black);
  border-radius: 56% 44% 58% 42%;
  z-index: 2;
  opacity: .9;
}

/* ===================================================================
   "¿QUÉ ES AKI?" — chips
   =================================================================== */
.chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.chip {
  background: var(--aki-cream);
  border-radius: 20px;
  padding: 28px 24px;
}
.chip__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--aki-white);
  margin: 0 auto 16px;
}
.chip__icon .icon { width: 26px; height: 26px; }
.chip:nth-child(1) .chip__icon { background: var(--aki-orange); }
.chip:nth-child(2) .chip__icon { background: var(--aki-black); }
.chip:nth-child(3) .chip__icon { background: var(--aki-purple); }
.chip h3 { font-size: 18px; color: var(--aki-orange); margin-bottom: 6px; }
.chip p { color: var(--aki-text-muted); font-size: 14px; }

/* ===================================================================
   BENEFICIOS (sección propia)
   =================================================================== */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit-card {
  background: var(--aki-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  text-align: left;
}
.benefit-card .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aki-white);
  margin-bottom: 16px;
}
.benefit-card .benefit-icon .icon { width: 22px; height: 22px; }
.benefit-card:nth-child(1) .benefit-icon { background: var(--aki-orange); }
.benefit-card:nth-child(2) .benefit-icon { background: var(--aki-black); }
.benefit-card:nth-child(3) .benefit-icon { background: var(--aki-purple); }
.benefit-card:nth-child(4) .benefit-icon { background: var(--aki-pink); }
.benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p { color: var(--aki-text-muted); font-size: 14px; }

/* ===================================================================
   PROPUESTA SEGMENTADA (tabs)
   =================================================================== */
.tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: var(--aki-white);
  padding: 6px;
  border-radius: 14px;
  margin-bottom: 32px;
}
.tabs__btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--aki-text-muted);
}
.tabs__btn.is-active {
  background: var(--aki-gradient);
  color: var(--aki-white);
}
.tabs__panels {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  background: var(--aki-white);
  border-radius: 20px;
  padding: 28px 24px;
}
.tabs__panel h3 { font-size: 19px; margin-bottom: 8px; }
.tabs__panel p { color: var(--aki-text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.tabs__panel ul { padding-left: 20px; }
.tabs__panel li { font-size: 14px; color: var(--aki-text-body); margin-bottom: 8px; }

/* ===================================================================
   CÓMO FUNCIONA — recorrido con mockups de teléfono
   =================================================================== */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.how-step__text { text-align: left; max-width: 420px; }
.how-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aki-orange);
  color: var(--aki-white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.how-step__text h3 { font-size: 20px; margin-bottom: 8px; }
.how-step__text p { color: var(--aki-text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.how-step__text ul { padding-left: 20px; }
.how-step__text li { font-size: 14px; color: var(--aki-text-body); margin-bottom: 8px; }
.how-step__visual { flex-shrink: 0; }

/* Mockup de teléfono con pantalla de app (ilustrativo, no capturas reales) */
.phone-mock {
  width: 230px;
  background: var(--aki-black);
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}
.phone-mock__screen {
  background: var(--aki-white);
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-topbar { font-size: 13px; font-weight: 700; color: var(--aki-text); }
.pm-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--aki-cream);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--aki-text-muted);
}
.pm-search .icon { width: 14px; height: 14px; flex-shrink: 0; }
.pm-filters { display: flex; gap: 6px; }
.pm-pill {
  background: var(--aki-gradient);
  color: var(--aki-white);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.pm-map {
  position: relative;
  flex: 1;
  min-height: 110px;
  border-radius: 12px;
  background-color: #EAF1E4;
  background-image:
    linear-gradient(rgba(255, 255, 255, .6) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, .6) 2px, transparent 2px);
  background-size: 24px 24px;
}
.pm-map--sm { min-height: 70px; }
.pm-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--aki-white);
  color: var(--aki-orange);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  white-space: nowrap;
}
.pm-cta {
  background: var(--aki-gradient);
  color: var(--aki-white);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 9px;
  border-radius: 10px;
}
.pm-list { display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.pm-list__title { font-size: 10px; font-weight: 700; color: var(--aki-text-muted); margin-top: 4px; }
.pm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--aki-cream);
  border-radius: 10px;
  padding: 6px 8px;
}
.pm-row__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--aki-orange-pale);
  flex-shrink: 0;
}
.pm-row__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  color: var(--aki-text-muted);
  min-width: 0;
}
.pm-row__info strong { font-size: 10px; color: var(--aki-text); }
.pm-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.pm-badge--online { background: rgba(49, 93, 34, .12); color: var(--aki-green); }
.pm-badge--formal { background: var(--aki-orange-pale); color: var(--aki-orange); }

.pm-chat { flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.pm-chat__header { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; }
.pm-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aki-green); margin-left: 2px; }
.pm-bubble {
  max-width: 80%;
  font-size: 10px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 12px;
}
.pm-bubble--in { align-self: flex-start; background: var(--aki-cream); color: var(--aki-text); border-bottom-left-radius: 4px; }
.pm-bubble--out { align-self: flex-end; background: var(--aki-gradient); color: var(--aki-white); border-bottom-right-radius: 4px; }
.pm-chat__done {
  align-self: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--aki-green);
  background: rgba(49, 93, 34, .1);
  padding: 5px 10px;
  border-radius: 999px;
}
.pm-input {
  font-size: 10px;
  color: var(--aki-text-muted);
  background: var(--aki-cream);
  border-radius: 10px;
  padding: 8px 10px;
}

/* ===================================================================
   PLANES
   =================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: left;
}
.pricing-card {
  background: var(--aki-white);
  border: 1px solid var(--aki-border);
  border-radius: 20px;
  padding: 28px 24px;
}
.pricing-card--featured {
  border-color: var(--aki-orange);
  box-shadow: 0 10px 40px rgba(255, 75, 22, 0.12);
}
.pricing-card__badge {
  display: inline-block;
  background: var(--aki-orange-pale);
  color: var(--aki-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pricing-card__plan { font-size: 14px; color: var(--aki-text-muted); font-weight: 600; margin-bottom: 4px; }
.pricing-card__price { font-size: 32px; font-weight: 800; color: var(--aki-text); }
.pricing-card__price span { font-size: 15px; font-weight: 500; color: var(--aki-text-muted); }
.pricing-card__price-alt { font-size: 13px; color: var(--aki-text-muted); margin-bottom: 12px; }
.pricing-card__desc { font-size: 14px; color: var(--aki-text-muted); margin-bottom: 20px; min-height: 42px; }
.pricing-includes-title { font-weight: 700; margin-bottom: 12px; }
.pricing-includes { max-width: 500px; margin: 0 auto; text-align: left; padding-left: 0; }
.pricing-includes li {
  list-style: none;
  font-size: 14px;
  color: var(--aki-text-body);
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aki-green);
  font-weight: 700;
}

/* ===== Inputs ===== */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--aki-text-muted); }

.field input,
.field select {
  font: inherit;
  background: var(--aki-white);
  border: 1px solid var(--aki-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--aki-text);
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--aki-orange);
  box-shadow: 0 0 0 3px rgba(255, 75, 22, 0.15);
}
.field select:disabled {
  background: var(--aki-cream);
  color: var(--aki-text-muted);
}

.field.has-error input,
.field.has-error select {
  border-color: var(--aki-pink);
}
.field__error {
  color: var(--aki-pink);
  font-size: 12px;
}

/* Teléfono: +58 fijo + código de operadora/área + resto del número.
   El campo ocupa toda la fila del form-grid (no comparte con Correo)
   porque son 3 controles juntos y necesitan más espacio horizontal. */
.field--phone { grid-column: 1 / -1; }
.phone-group {
  display: flex;
  gap: 8px;
}
.phone-group__prefix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--aki-border);
  border-radius: 12px;
  background: var(--aki-cream);
  color: var(--aki-text-muted);
  font-weight: 600;
}
.phone-group select { flex: 0 1 130px; min-width: 0; }
.phone-group input { flex: 1 1 160px; min-width: 0; }

/* Honeypot anti-spam: oculto para personas, visible para bots que llenan todo el formulario */
.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.field--fieldset { margin-top: 8px; }
.field--fieldset legend {
  font-size: 13px;
  color: var(--aki-text-muted);
  margin-bottom: 10px;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.checkbox input { width: auto; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}

/* ===== Wizard ===== */
.wizard { padding: 48px 0 64px; background: var(--aki-cream); }

.wizard__inner { position: relative; }

#registro-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
#registro-form[hidden] { display: none; }

.wizard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stepper-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stepper-sidebar__item {
  padding-left: 14px;
  border-left: 3px solid var(--aki-border);
}
.stepper-sidebar__step {
  font-size: 12px;
  color: var(--aki-text-muted);
}
.stepper-sidebar__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--aki-text-muted);
}
.stepper-sidebar__item.is-active {
  border-left-color: var(--aki-orange);
}
.stepper-sidebar__item.is-active .stepper-sidebar__step,
.stepper-sidebar__item.is-active .stepper-sidebar__name {
  color: var(--aki-orange);
  font-weight: 700;
}
.stepper-sidebar__item.is-complete .stepper-sidebar__name::after {
  content: " ✓";
  color: var(--aki-green);
}

.wizard__security-note {
  font-size: 13px;
  color: var(--aki-text-muted);
  background: var(--aki-orange-pale);
  border-radius: 12px;
  padding: 14px 16px;
}

.alert-error {
  font-size: 13px;
  color: var(--aki-pink);
  background: rgba(250, 27, 78, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 16px;
}
.alert-success {
  font-size: 13px;
  color: var(--aki-green);
  background: rgba(49, 93, 34, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 16px;
}

.wizard__panel { padding: 24px; }

.step__title { font-size: 20px; margin-bottom: 8px; }
.step__timing { color: var(--aki-orange); font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.step__subtitle { color: var(--aki-text-muted); font-size: 14px; margin-bottom: 24px; }

.step__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.wizard__illustration { display: none; }

.wizard__illustration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--aki-white);
  text-align: center;
}
.wizard__illustration-item[hidden] { display: none; }

.wizard__illustration-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard__illustration-icon .icon { width: 40px; height: 40px; }

.wizard__illustration-item p {
  font-size: 16px;
  font-weight: 600;
  max-width: 190px;
  line-height: 1.4;
}

/* ===== Resumen (Paso 4) ===== */
.summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.summary__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--aki-border);
  border-radius: 12px;
  cursor: pointer;
}
.summary__block dt {
  font-size: 13px;
  color: var(--aki-text-muted);
  font-weight: 600;
}
.summary__block dd { font-size: 15px; margin: 0; }

/* ===== Pantalla de éxito ===== */
.success-screen {
  text-align: center;
  padding: 48px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.success-screen__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--aki-orange-pale);
  font-size: 32px;
  margin-bottom: 20px;
}
.success-screen h2 { font-size: 22px; margin-bottom: 8px; }
.success-screen p { color: var(--aki-text-muted); }

/* ===================================================================
   FOOTER — ver docs/12-HERO-HEADER-FOOTER-CODE.md §6
   (nav horizontal en vez de vertical, según docs/02-DESIGN-SYSTEM.md)
   =================================================================== */
.aki-footer {
  position: relative;
  margin-top: 90px;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 90px;
  margin-bottom: -2px;
}

.aki-footer__main {
  background: linear-gradient(100deg, #101010 0%, #121212 55%, #050505 100%);
  color: white;
  padding: 40px 0;
}

.aki-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand p { color: rgba(255, 255, 255, .75); font-size: 14px; max-width: 320px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}
.footer-nav a { color: white; text-decoration: none; font-size: 14px; }
.footer-nav a:hover { color: var(--aki-orange-light); }

.footer-social { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-social p { font-size: 14px; color: rgba(255, 255, 255, .75); }
.footer-social__icons { display: flex; gap: 12px; }
.footer-social__icons a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  color: var(--aki-white);
}
.footer-social__icons a .icon { width: 18px; height: 18px; }
.footer-social__icons a:hover { background: rgba(255, 255, 255, .16); }

.footer-partner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-partner p { font-size: 13px; color: rgba(255, 255, 255, .6); }

.aki-footer__bottom {
  background: linear-gradient(90deg, var(--aki-orange-dark), var(--aki-orange-light));
  color: white;
  font-size: 13px;
}

.aki-footer__bottom-inner {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 0;
  text-align: center;
}

.aki-footer__bottom-inner a { color: white; text-decoration: underline; }

/* ===== Páginas legales (placeholder) ===== */
.legal-page { padding: 64px 24px; max-width: 720px; }
.legal-page h1 { font-size: 26px; margin: 24px 0 8px; }
.legal-page__updated { color: var(--aki-text-muted); font-size: 13px; margin-bottom: 32px; }
.legal-page h2 { font-size: 18px; margin: 32px 0 12px; color: var(--aki-text); }
.legal-page p, .legal-page li { font-size: 14px; line-height: 1.7; color: var(--aki-text-body); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page a.inline-link { color: var(--aki-orange); text-decoration: underline; }
.legal-page .btn { margin-top: 24px; }
.legal-page__notice {
  color: var(--aki-text-muted);
  background: var(--aki-orange-pale);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

/* ===================================================================
   Breakpoints — mobile-first
   =================================================================== */

/* Tablet chico: >= 640px */
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 32px; }
  .wizard__panel { padding: 32px; }
  .chip-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* Cómo funciona: teléfono y texto lado a lado, alternando */
@media (min-width: 900px) {
  .how-step { flex-direction: row; justify-content: center; align-items: center; gap: 56px; }
  .how-step--reverse { flex-direction: row-reverse; }
}

/* Punto de quiebre del footer (ver 12-HERO-HEADER-FOOTER-CODE.md §7): >= 800px */
@media (min-width: 800px) {
  .aki-footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand   partner"
      "nav     nav"
      "social  social";
    text-align: left;
    align-items: start;
  }
  .footer-brand { grid-area: brand; align-items: flex-start; }
  .footer-partner { grid-area: partner; align-items: flex-end; text-align: right; }
  .footer-nav { grid-area: nav; }
  .footer-social { grid-area: social; align-items: flex-start; }
  .aki-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Punto de quiebre del hero (ver 12-HERO-HEADER-FOOTER-CODE.md §7): >= 901px, layout de 2 columnas */
@media (min-width: 901px) {
  .aki-hero__content {
    grid-template-columns: 48% 52%;
    align-items: center;
    min-height: 560px;
  }
  .aki-hero__text { text-align: left; padding-right: 20px; }
  .aki-hero__text > p { margin-left: 0; }
  .aki-eyebrow, .aki-hero h1 { margin-left: 0; }
  .aki-benefits { grid-template-columns: repeat(2, 1fr); text-align: left; }

  .aki-hero__visual { height: 100%; min-height: 560px; margin-top: 0; }
  .aki-phone {
    width: min(340px, 32vw);
    right: 9%;
    bottom: -25px;
    transform: rotate(5deg);
  }
  .shape-orange { width: 300px; height: 380px; right: -40px; top: -20px; transform: none; }
  .shape-black { width: 320px; height: 320px; right: 100px; top: 60px; transform: none; }
}

/* Desktop: >= 1024px */
@media (min-width: 1024px) {
  .aki-nav { display: flex; }

  #registro-form {
    grid-template-columns: 220px 1fr 200px;
    align-items: start;
  }

  .wizard__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    border-radius: 24px;
    background: var(--aki-gradient);
    min-height: 320px;
    padding: 32px 16px;
  }

  .aki-benefits { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
}
