/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --color-bg:      #0A0E27;
  --color-surface: #1A1F4E;
  --color-border:  rgba(108, 99, 255, 0.18);
  --color-accent:  #6C63FF;
  --color-text:    #F5F5FF;
  --color-muted:   #8B82FF;

  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --border-thin: 1px solid var(--color-border);
  --radius-sm:   3px;
  --radius-md:   6px;

  --max-w: 1280px;
  --pad-x: 2rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(108, 99, 255, .04);
  white-space: nowrap;
}

.badge__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px  var(--color-accent); }
  50%       { opacity: .25; box-shadow: 0 0 3px  var(--color-accent); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 2.25rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: box-shadow .22s ease, transform .16s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #F5F5FF;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #8B82FF;
  box-shadow: 0 0 36px rgba(108, 99, 255, .55), 0 0 8px rgba(108, 99, 255, .3);
  transform: translateY(-2px);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-bottom: var(--border-thin);
  overflow: hidden;
}

/* Full-cover background video */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: hue-rotate(60deg) saturate(0.85);
}

/* Directional overlay:
   left (copy side) → very dark | right → semi-transparent so video breathes
   bottom-fade → blends cleanly into the next section                         */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 14, 39, 0.96) 0%,
      rgba(10, 14, 39, 0.88) 38%,
      rgba(10, 14, 39, 0.58) 62%,
      rgba(10, 14, 39, 0.22) 100%
    );
  pointer-events: none;
}

.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
}

/* Engineering grid — above overlay */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .18;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* HUD labels anchored to hero corners */
.hero__hud {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(108, 99, 255, .38);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero__hud--tl { top: 1.25rem;    left: 1.5rem;  }
.hero__hud--tr { top: 1.25rem;    right: 1.5rem; }
.hero__hud--bl { bottom: 1.25rem; left: 1.5rem;  }
.hero__hud--br { bottom: 1.25rem; right: 1.5rem; }

/* Inner container — single column, copy anchored left */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: 7rem 5rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.hero__badge-wrap {
  margin-bottom: 2rem;
}

.hero__headline {
  font-size: clamp(2.2rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.025em;
  margin-bottom: 1.6rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-accent);
  text-shadow: 0 0 60px rgba(108, 99, 255, .35);
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--color-muted);
  max-width: 46ch;
  margin-bottom: 2.75rem;
}

.hero__sub strong {
  color: var(--color-text);
  font-weight: 500;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.hero__micro {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero__micro::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero__inner { padding-block: 5rem 4rem; }

  .hero__copy { max-width: 100%; }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 14, 39, 0.90) 0%,
      rgba(10, 14, 39, 0.82) 60%,
      rgba(10, 14, 39, 0.70) 100%
    );
  }
}

@media (max-width: 480px) {
  :root { --pad-x: 1.25rem; }

  .badge { font-size: .6rem; white-space: normal; }

  .btn { padding: .8rem 1.5rem; font-size: .75rem; }

  .hero__hud { display: none; }
}

/* ============================================================
   UTILITY — reusable across sections
   ============================================================ */
.label-mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: .7;
  margin-bottom: 1.25rem;
}

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

/* ============================================================
   SECTION 02 · PAIN / IDENTITY
   ============================================================ */
.pain {
  position: relative;
  padding-block: 6rem;
  border-bottom: var(--border-thin);
}

.pain__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* --- Header --- */
.pain__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.pain__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin-bottom: 1rem;
}

.pain__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* --- Grid --- */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* --- Card --- */
.pain-card {
  position: relative;
  background: var(--color-surface);
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-height: 130px;
  overflow: hidden;
  transition: background .22s ease;
  animation: fadeInUp .45s ease both;
  animation-delay: var(--delay, 0s);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity .22s ease;
}

.pain-card:hover {
  background: #0A0E27;
}

.pain-card:hover::before {
  opacity: 1;
}

/* Background number watermark */
.pain-card__num {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-border);
  user-select: none;
  pointer-events: none;
  transition: color .22s ease;
}

.pain-card:hover .pain-card__num {
  color: #1A1F4E;
}

/* Title */
.pain-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.01em;
  margin-bottom: 0;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  padding-right: 3.5rem;
}

/* Close paragraph below pain grid */
.pain__close {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pain { padding-block: 4rem; }

  .pain__header { margin-bottom: 2.5rem; }

  .pain__grid { grid-template-columns: 1fr; }

  .pain-card { padding: 1.5rem; }

  .pain-card__num { font-size: 2.75rem; }
}

/* ============================================================
   SECTION 03 · STATS — AMPLIFICACIÓN
   ============================================================ */
.stats {
  padding-block: 6rem;
  border-bottom: var(--border-thin);
  background: var(--color-surface);
}

.stats__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.stats__header { margin-bottom: 3.5rem; }

.stats__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-block {
  position: relative;
  background: var(--color-bg);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.stat-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
}

.stat-block__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(108, 99, 255, .22);
}

.stat-block__value--word {
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: .1em;
}

.stat-block__unit {
  font-size: .42em;
  font-weight: 400;
  margin-left: .1em;
  vertical-align: super;
  opacity: .7;
}

.stat-block__desc {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--color-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.stat-block__src {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: .45;
}

@media (max-width: 768px) {
  .stats { padding-block: 4rem; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-block { padding: 2rem 1.5rem; }
}

/* ============================================================
   SECTION 04 · PROCESO — 3 PASOS
   ============================================================ */
.process {
  padding-block: 6rem;
  border-bottom: var(--border-thin);
}

.process__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.process__header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.process__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin-bottom: 1rem;
}

.process__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.process__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  background: var(--color-surface);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, background .22s ease;
}

.process-step:hover {
  border-color: rgba(108, 99, 255, .3);
  background: #0A0E27;
}

.process-step__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.process-step__num {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-accent);
  opacity: .7;
}

.process-step__icon {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
}

.process-step__icon svg { width: 100%; height: 100%; }

.process-step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.process-step__body {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.process-step__connector {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  color: var(--color-border);
  padding-inline: 2px;
}

.process-step__connector svg { width: 100%; display: block; }

@media (max-width: 860px) {
  .process { padding-block: 4rem; }

  .process__steps {
    flex-direction: column;
    gap: 0;
  }

  .process-step__connector {
    width: 16px;
    height: 36px;
    transform: rotate(90deg);
    align-self: center;
    margin-block: -2px;
  }
}

/* ============================================================
   SECTION 05 · ANTES / DESPUÉS
   ============================================================ */
.compare {
  padding-block: 6rem;
  border-bottom: var(--border-thin);
  background: var(--color-surface);
}

.compare__inner {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.compare__header { margin-bottom: 3.5rem; }

.compare__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
}

.compare__table {
  border: var(--border-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare__thead {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare__th {
  padding: .8rem 1.5rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.compare__th--before {
  background: rgba(255, 255, 255, .02);
  color: var(--color-muted);
  border-right: var(--border-thin);
}

.compare__th--after {
  background: rgba(108, 99, 255, .05);
  color: var(--color-accent);
}

.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--border-thin);
  transition: background .16s ease;
}

.compare__row:hover .compare__cell--before { background: rgba(255,255,255,.02); }
.compare__row:hover .compare__cell--after  { background: rgba(108,99,255,.06); }

.compare__cell {
  padding: 1.1rem 1.5rem;
  font-size: .9rem;
  line-height: 1.55;
  transition: background .16s ease;
}

.compare__cell--before {
  color: var(--color-muted);
  border-right: var(--border-thin);
  background: rgba(255,255,255,.01);
}

.compare__cell--after {
  color: var(--color-text);
  background: rgba(108, 99, 255, .03);
}

@media (max-width: 600px) {
  .compare { padding-block: 4rem; }
  .compare__thead,
  .compare__row        { grid-template-columns: 1fr; }
  .compare__th--before,
  .compare__cell--before { border-right: none; border-bottom: var(--border-thin); }
  .compare__cell { padding: .875rem 1.25rem; }
}

/* ============================================================
   SECTION 06 · NOSOTROS VS AGENCIAS
   ============================================================ */
.versus {
  padding-block: 6rem;
  border-bottom: var(--border-thin);
}

.versus__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.versus__header { margin-bottom: 3.5rem; }

.versus__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
}

.versus__table {
  border: var(--border-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.versus__head {
  display: grid;
  grid-template-columns: 1fr 2.5fr 2.5fr;
  border-bottom: var(--border-thin);
}

.versus__head-cell {
  padding: .85rem 1.25rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.versus__head-cell--label  { border-right: var(--border-thin); }
.versus__head-cell--agency { color: var(--color-muted); border-right: var(--border-thin); }
.versus__head-cell--us     { color: var(--color-accent); background: rgba(108,99,255,.04); }

.versus__row {
  display: grid;
  grid-template-columns: 1fr 2.5fr 2.5fr;
  border-top: var(--border-thin);
}

.versus__label {
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-right: var(--border-thin);
  display: flex;
  align-items: center;
}

.versus__val {
  padding: 1rem 1.25rem;
  font-size: .875rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.versus__val--bad {
  color: var(--color-muted);
  border-right: var(--border-thin);
}

.versus__val--bad span  { color: #ff4d5e; font-weight: 700; font-size: .8rem; }

.versus__val--good { color: var(--color-text); background: rgba(108,99,255,.03); }

.versus__val--good span { color: var(--color-accent); font-weight: 700; font-size: .8rem; }

@media (max-width: 680px) {
  .versus { padding-block: 4rem; }

  .versus__head,
  .versus__row { grid-template-columns: 1fr 1fr; }

  .versus__head-cell--label,
  .versus__label { display: none; }

  .versus__head-cell--agency { border-right: var(--border-thin); }
}

/* ============================================================
   SECTION 07 · ESCASEZ
   ============================================================ */
.scarcity {
  padding-block: 7rem;
  border-bottom: var(--border-thin);
  background: var(--color-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scarcity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(108,99,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

.scarcity__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scarcity__icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: .75;
}

.scarcity__icon svg { width: 100%; height: 100%; }

.scarcity__inner .label-mono { margin-bottom: 1.5rem; }

.scarcity__title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin-bottom: 1.75rem;
}

.scarcity__body {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--color-muted);
  max-width: 50ch;
  margin-bottom: 1rem;
}

.scarcity__slots strong { color: var(--color-accent); }

@media (max-width: 600px) {
  .scarcity { padding-block: 5rem; }
}

/* ============================================================
   SECTION 08 · FORMULARIO
   ============================================================ */
.form-section {
  padding-block: 6rem;
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108,99,255,.04) 0%, transparent 65%);
  pointer-events: none;
}

.form-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.form-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.form-section__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin-bottom: 1rem;
}

.form-section__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 48ch;
  margin-inline: auto;
}

/* Form layout */
.qualify-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qualify-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Field */
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field--full { grid-column: 1 / -1; }

.form-field__label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.form-field__req  { color: var(--color-accent); }

.form-field__input {
  width: 100%;
  background: var(--color-surface);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  padding: .82rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--color-text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field__input::placeholder { color: var(--color-muted); opacity: .45; }

.form-field__input:hover  { border-color: rgba(108,99,255,.2); }

.form-field__input:focus  {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,.08);
}

.form-field__input:user-invalid {
  border-color: rgba(255, 77, 94, .5);
}

.form-field__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

/* Submit */
.qualify-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: .5rem;
}

.btn--lg { padding: 1.05rem 2.75rem; font-size: .875rem; }

.qualify-form__privacy {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: .45;
}

.qualify-form__status {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-align: center;
  min-height: 1rem;
}

.qualify-form__status--ok    { color: var(--color-accent); }
.qualify-form__status--error { color: #ff4d5e; }

@media (max-width: 600px) {
  .form-section { padding-block: 4rem; }
  .qualify-form__grid { grid-template-columns: 1fr; }
  .form-section__header { margin-bottom: 2.5rem; }
}

/* ============================================================
   FORM VALIDATION STATES
   ============================================================ */
.form-field__error {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  color: #ff4d5e;
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, max-height .2s ease;
}

.form-field--invalid .form-field__error {
  max-height: 4rem;
  opacity: 1;
  margin-top: .3rem;
}

.form-field--invalid .form-field__input {
  border-color: rgba(255, 77, 94, .6);
  box-shadow: 0 0 0 3px rgba(255, 77, 94, .07);
}

.form-field--invalid .form-field__input:focus {
  border-color: #ff4d5e;
  box-shadow: 0 0 0 3px rgba(255, 77, 94, .12);
}

.form-field--valid .form-field__input {
  border-color: rgba(108, 99, 255, .35);
}
