/* ============================================================
   STYLES.CSS — Tec Startups · Batch 2026
   ============================================================
   Para cambiar colores globales, edita las variables en :root
   Para cambiar fuentes, edita las líneas de Google Fonts en index.html
   y actualiza --font-head / --font-body aquí
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

:root {
  /* Brand colors */
  --navy:   #0d1f3c;
  --cyan:   #00bcd4;
  --lime:   #8bc34a;
  --gray:   #556070;
  --border: #e8edf3;
  --off:    #f7f9fc;

  /* Gradients */
  --grad:       linear-gradient(90deg,  #8bc34a 0%, #00bcd4 100%);
  --grad-rev:   linear-gradient(90deg,  #00bcd4 0%, #8bc34a 100%);
  --grad-diag:  linear-gradient(135deg, #00bcd4 0%, #8bc34a 100%);
  --grad-text:  linear-gradient(90deg,  #00bcd4 0%, #8bc34a 100%);

  /* Typography */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-pad: 80px 48px;
  --max-w: 1100px;

  /* Safe area for notch phones */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
.reveal.on  { opacity: 1; transform: none; }

/* ── SECTION COMMONS ── */
.section       { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  color: var(--cyan); letter-spacing: 2px;
  text-transform: uppercase;
  display: block; margin-bottom: 10px;
}

.sh {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; color: var(--navy);
  letter-spacing: -.5px; line-height: 1.1;
  margin-bottom: 12px;
}

.ssub {
  font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 540px;
}

.divider-title {
  display: flex; align-items: center; gap: 16px; margin-bottom: 44px;
}
.divider-title::before,
.divider-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.divider-title span {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; color: var(--gray);
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
}

/* ── BUTTONS ── */
.btn-primary {
  /* FIX: align-self + width:fit-content evitan que el botón se estire
     al 100% dentro de contenedores flex-column (como .hero-left) */
  display: inline-flex; align-items: center;
  align-self: flex-start;      /* ← FIX hero stretch */
  width: fit-content;          /* ← FIX hero stretch fallback */
  max-width: 360px;            /* ← tope de ancho seguro */
  border-radius: 100px; overflow: hidden;
  background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,188,212,.3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;         /* ← evita que el texto parta en dos líneas */
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,188,212,.4);
  text-decoration: none;
}
.btn-primary .btn-text  { padding: 15px 28px; flex-shrink: 0; }
.btn-primary .btn-arrow {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
}
.btn-primary .btn-arrow svg {
  width: 18px; height: 18px;
  stroke: #fff; stroke-width: 2.5; fill: none;
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  border: 2px solid var(--border); background: #fff;
  color: var(--navy); font-family: var(--font-head);
  font-weight: 700; font-size: 14px;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  padding: 11px 48px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(13,31,60,.1); }

.nav-left  { display: flex; align-items: center; gap: 16px; }
.nav-sep   { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }
.nav-logo-ts  { height: 30px; width: auto; }
.nav-logo-tec { height: 42px; width: auto; opacity: .9; }

.nav-cta {
  padding: 11px 22px; border-radius: 100px;
  background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,188,212,.25);
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: grid;
  grid-template-columns: 50% 50%;
  padding-top: 62px; overflow: hidden; background: #fff;
}

.hero-left {
  padding: 60px 48px 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-right { position: relative; overflow: hidden; }

.hero-right img.photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Vertical accent line on photo edge */
.hero-right::before {
  content: ''; position: absolute;
  top: 0; bottom: 0;
  left: calc(9% - 3px); width: 5px; z-index: 3;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #00bcd4 0%, #8bc34a 100%);
}

/* Fallback gradient when no photo */
.hero-right-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #00bcd4 100%);
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-right-gradient svg {
  width: 60%; opacity: .15;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 62px); font-weight: 900;
  line-height: .95; color: var(--navy);
  letter-spacing: -2px; text-transform: uppercase;
  margin-bottom: 6px;
}

.hero h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 34px); font-weight: 800;
  line-height: 1.1; color: var(--cyan);
  text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-rule {
  width: 30px; height: 3px;
  background: #e8c430; border-radius: 2px; margin-bottom: 20px;
}

.hero-body {
  font-size: 15px; color: var(--gray);
  line-height: 1.75; max-width: 420px; margin-bottom: 18px;
}
.hero-body strong { color: var(--cyan); font-weight: 700; }

.hero-badges {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--off); border: 1px solid var(--border);
  font-size: 12px; color: var(--gray); font-weight: 600;
}
.hero-badge svg {
  width: 14px; height: 14px; stroke: var(--lime);
  stroke-width: 2; fill: none; flex-shrink: 0;
}

.hero-microcopy {
  font-size: 11px; color: #bbb;
  margin-top: 10px; letter-spacing: .3px;
}

/* ── LOGOS STRIP ── */
.logos-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 48px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logos-strip::-webkit-scrollbar { display: none; }

.logos-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; min-width: max-content;
}

.logo-pill {
  display: flex; align-items: center; justify-content: center;
  padding: 6px 32px;
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.logo-pill:last-child { border-right: none; }
.logo-pill img { height: 28px; width: auto; }

.pill-text {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pill-name {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: .4px;
}
.pill-sub {
  font-size: 11px; color: #bbb; text-align: center; line-height: 1.3;
}

/* ── LOCATION BAR ── */
.location-bar {
  padding: 18px 48px;
  border-bottom: 1px solid var(--border); background: #fff;
}
.location-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.loc-pin {
  width: 32px; height: 32px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.loc-pin svg { width: 15px; height: 15px; stroke: var(--lime); stroke-width: 2; fill: none; }
.loc-city {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: .5px;
  border-right: 1px solid var(--border); padding-right: 16px; margin-right: 2px; white-space: nowrap;
}
.loc-desc { font-size: 13px; color: var(--gray); }
.loc-desc a { color: var(--cyan); font-weight: 600; }

/* ── FIT SECTION ── */
.fit-section { background: var(--off); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 40px;
}

.fit-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
}

.fit-card-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.fit-card-title.yes::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--lime); flex-shrink: 0;
}
.fit-card-title.no::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: #e0e0e0; flex-shrink: 0;
}

.fit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--gray); line-height: 1.6;
}
.fit-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.fit-check.yes {
  background: rgba(139,195,74,.1); border: 1.5px solid rgba(139,195,74,.35);
}
.fit-check.no  {
  background: rgba(224,224,224,.3); border: 1.5px solid #e0e0e0;
}
.fit-check svg { width: 10px; height: 10px; fill: none; stroke-width: 2.5; }
.fit-check.yes svg { stroke: var(--lime); }
.fit-check.no  svg { stroke: #bbb; }

/* ── BENEFITS ── */
.benefits-section { background: #fff; }

.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--border); gap: 1px;
  margin-top: 40px;
}

.benefit-col {
  background: #fff; padding: 32px 24px; text-align: center;
  transition: background .2s;
}
.benefit-col:hover { background: #fafcff; }

.bicon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,188,212,.07);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.bicon svg { width: 26px; height: 26px; stroke: var(--cyan); stroke-width: 1.6; fill: none; }

.btitle {
  font-family: var(--font-head); font-size: 12px; font-weight: 900;
  color: var(--navy); text-transform: uppercase; letter-spacing: .3px;
  line-height: 1.3; margin-bottom: 8px;
}
.bline {
  width: 24px; height: 2px; background: var(--grad);
  border-radius: 2px; margin: 8px auto 12px;
}
.bdesc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--grad); padding: 0 48px; }

.cta-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px; flex-wrap: wrap;
}

.cta-left { display: flex; align-items: center; gap: 16px; }

.cta-cal {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-cal svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 1.8; fill: none; }

.cta-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: #fff; text-transform: uppercase; letter-spacing: -.5px; line-height: 1;
}
.cta-divid { width: 1px; height: 32px; background: rgba(255,255,255,.35); margin: 0 2px; }
.cta-badge {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.5;
}

.cta-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0; transition: transform .2s;
}
.cta-arrow:hover { transform: scale(1.08); }
.cta-arrow svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.5; fill: none; }

/* ── PROCESS SECTION ── */
.process-section { background: var(--navy); }
.process-section .eyebrow { color: var(--cyan); }
.process-section .sh      { color: #fff; }
.process-section .ssub    { color: rgba(255,255,255,.65); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 48px;
  background: rgba(255,255,255,.08); border-radius: 16px; overflow: hidden;
}

.process-step {
  background: rgba(255,255,255,.04); padding: 32px 24px;
  position: relative;
  transition: background .2s;
}
.process-step:hover { background: rgba(255,255,255,.08); }

.process-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  color: var(--cyan); letter-spacing: 2px; margin-bottom: 16px;
}

.process-step-title {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}

.process-step-desc {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65;
}

.process-disclaimer {
  margin-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.4);
  text-align: center; line-height: 1.6;
}

/* ── TRUST SECTION ── */
.trust-section { background: var(--off); }

.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}

.trust-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}

.trust-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad); flex-shrink: 0; margin-top: 5px;
}

.trust-name {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.trust-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── PROGRAM DETAILS ── */
.details-section { background: #fff; }

.details-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 40px;
}

.details-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.details-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; gap: 16px;
}
.details-list li:last-child { border-bottom: none; }
.dl-label { color: var(--gray); }
.dl-value { font-family: var(--font-head); font-weight: 700; color: var(--navy); text-align: right; }

.sectors-label {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--gray); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; display: block;
}
.sectors-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-tag {
  display: inline-flex; padding: 6px 14px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; color: var(--gray); font-weight: 600;
}

/* ── FORM SECTION ── */
.form-section { background: var(--off); }

#fc {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  max-width: 680px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(13,31,60,.07);
}

/* Progress bar */
.form-progress {
  display: flex; gap: 0; background: var(--border);
}
.form-prog-step {
  flex: 1; height: 4px; background: var(--border);
  transition: background .35s;
}
.form-prog-step.active,
.form-prog-step.done { background: var(--cyan); }
.form-prog-step.done { background: var(--lime); }

/* Step labels */
.form-steps-labels {
  display: flex; justify-content: space-between;
  padding: 12px 24px 0; gap: 4px;
}
.form-step-label {
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  color: #ccc; text-transform: uppercase; letter-spacing: .8px;
  flex: 1; text-align: center;
  transition: color .3s;
}
.form-step-label.on { color: var(--cyan); }

/* Step container */
.form-step { display: none; padding: 28px 32px 32px; }
.form-step.active { display: block; }

.form-step-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 900;
  color: var(--navy); margin-bottom: 6px; letter-spacing: -.3px;
}
.form-step-desc {
  font-size: 13px; color: var(--gray); line-height: 1.65;
  margin-bottom: 24px;
}

/* Fields */
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: .3px;
}
.field-label .req { color: var(--cyan); margin-left: 2px; }

.fi, .fs, .fta {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; color: var(--navy);
  background: #fff; transition: border-color .2s;
  outline: none;
}
.fi:focus, .fs:focus, .fta:focus { border-color: var(--cyan); }
.fi::placeholder, .fta::placeholder { color: #bbb; }
.fs { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fta { resize: vertical; min-height: 90px; }

/* Radio / Checkbox groups */
.radio-group, .checkbox-group {
  display: flex; flex-direction: column; gap: 10px;
}
/* FIX: cambiados de <label> a <div> en el HTML para evitar
   el doble-toggle que ocurre cuando label envuelve input oculto.
   cursor:pointer y user-select:none son necesarios en divs. */
.radio-option, .checkbox-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  user-select: none;           /* ← evita selección de texto al hacer clic */
  transition: border-color .2s, background .2s;
}
.radio-option:hover, .checkbox-option:hover {
  border-color: var(--cyan); background: rgba(0,188,212,.03);
}
.radio-option input, .checkbox-option input { display: none; }
.radio-option.selected, .checkbox-option.checked {
  border-color: var(--cyan); background: rgba(0,188,212,.06);
}

.radio-custom, .check-custom {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s; margin-top: 1px;
}
.check-custom { border-radius: 5px; }
.radio-option.selected .radio-custom { border-color: var(--cyan); }
.checkbox-option.checked .check-custom { border-color: var(--cyan); background: var(--cyan); }

.radio-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; transition: background .2s;
}
.radio-option.selected .radio-inner { background: var(--cyan); }

/* FIX: el SVG del check debe estar visible cuando está marcado */
.check-inner { display: flex; align-items: center; justify-content: center; }
.check-inner svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; visibility: hidden; }
.checkbox-option.checked .check-inner svg { visibility: visible; }

.radio-text, .check-text {
  font-size: 14px; color: var(--gray); line-height: 1.5;
}

/* Single commitment checkboxes */
/* FIX: también cambiados de <label> a <div> en el HTML */
.commit-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); cursor: pointer;
  user-select: none;           /* ← evita selección de texto */
  transition: border-color .2s, background .2s;
}
.commit-option:hover, .commit-option.checked {
  border-color: var(--lime); background: rgba(139,195,74,.06);
}
.commit-option input { display: none; }

.commit-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; transition: border-color .2s, background .2s;
}
.commit-option.checked .commit-check {
  border-color: var(--lime); background: var(--lime);
}
/* FIX: SVG del check de compromisos */
.commit-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; visibility: hidden; }
.commit-option.checked .commit-check svg { visibility: visible; }
.commit-text { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* Form navigation */
.form-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; gap: 12px;
}

.btn-form-next, .btn-form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(0,188,212,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-form-next:hover, .btn-form-submit:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,188,212,.35);
}
.btn-form-next svg, .btn-form-submit svg {
  width: 16px; height: 16px; stroke: #fff; stroke-width: 2.5; fill: none;
}

.btn-form-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  background: #fff; color: var(--gray); cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  transition: border-color .2s, color .2s;
}
.btn-form-back:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-form-back svg {
  width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none;
}

/* Error message under field */
.field-error {
  font-size: 11px; color: #e74c3c; margin-top: 4px; display: none;
}
.field-group.has-error .fi,
.field-group.has-error .fs,
.field-group.has-error .fta { border-color: #e74c3c; }
.field-group.has-error .field-error { display: block; }

/* Privacy notice */
.privacy-notice {
  margin-top: 20px; padding: 14px 16px;
  background: var(--off); border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 12px; color: var(--gray); line-height: 1.65;
}
.privacy-notice a { color: var(--cyan); font-weight: 600; }

/* Success state */
#fok {
  display: none; padding: 48px 32px; text-align: center;
}
.fok-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(139,195,74,.12); border: 2px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.fok-icon svg { width: 28px; height: 28px; stroke: var(--lime); stroke-width: 2.5; fill: none; }
.fok-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: var(--navy); margin-bottom: 10px;
}
.fok-body { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* Error state */
#ferr {
  display: none; padding: 32px;
  background: rgba(231,76,60,.05); border-radius: 10px;
  border: 1px solid rgba(231,76,60,.2); margin: 24px 32px;
  text-align: center;
}
.ferr-title {
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  color: #e74c3c; margin-bottom: 8px;
}
.ferr-body { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }

/* Submitting loader */
.form-loading {
  display: none; padding: 32px; text-align: center; font-size: 14px; color: var(--gray);
}
.form-loading.active { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 32px 48px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-sep  { width: 1px; height: 24px; background: rgba(255,255,255,.15); }
.footer-logo { height: 28px; opacity: .75; }

.footer-tagline {
  font-size: 12px; color: rgba(255,255,255,.4);
  max-width: 360px; line-height: 1.5;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,.4);
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; padding: 12px 20px calc(12px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(13,31,60,.12);
}
.sticky-cta a {
  display: block; text-align: center;
  padding: 14px; border-radius: 12px;
  background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: -.2px;
}
.sticky-sub {
  text-align: center; font-size: 10px; color: #bbb;
  margin-top: 5px; letter-spacing: .3px;
}