/* ═══════════════════════════════════════════════════
   SECTION: cta-form — source #cta-f (CONV-05-CTA-F)
   Qualifier list on the left, an elevated form card on the right.

   cta-forms.css also carries the #cta-g horizontal intake variant;
   only the .cta-f-* rules are ported. The form primitives themselves
   (.form-input and friends) live in components.css.
═══════════════════════════════════════════════════ */

#cta-f {
  background: var(--c-bg-2);
  padding: var(--sp-section) 0;
  position: relative;
  overflow: hidden;
}
#cta-f::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--c-accent-rgb), .06) 0%, transparent 65%);
}

.cta-f-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  position: relative;
}

/* ── Left: qualifier list ── */
.cta-f-h2 {
  margin: 0 0 var(--sp-5);
}

.cta-f-checks { display: flex; flex-direction: column }
.cta-f-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
  transition: padding-left var(--dur-base);
}
.cta-f-check:first-child { border-top: 1px solid var(--c-border) }
.cta-f-check:hover { padding-left: 6px }

.cta-f-check-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(var(--c-success-rgb), .1);
  border: 1px solid rgba(var(--c-success-rgb), .25);
  display: grid;
  place-items: center;
  font-size: var(--fs-300);
  font-weight: var(--fw-bold);
  color: var(--c-success);
}
.cta-f-check-title {
  font-family: var(--f-display);
  font-size: var(--fs-500);
  font-weight: var(--fw-black);
  letter-spacing: -.03em;
  color: var(--c-text-1);
  line-height: 1.5;
  margin-bottom: 3px;
}
.cta-f-check-sub { font-size: var(--fs-200); color: var(--c-text-3); line-height: 1.7 }

/* ── Right: form card ── */
/* No drop shadow. The card sits on --c-bg at --c-bg-2, so it is lighter than
   its ground; a black blur under it darkens an already dark background instead
   of lifting the card, and at 80px it only softens the edge into a smudge.
   The lighter surface and the border are what carry the elevation here — the
   same pair every other card in the theme uses. .svc-c-row is the only other
   black shadow and it appears on hover, never at rest. */
.cta-f-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 44px var(--sp-10);
}
.cta-f-card-eyebrow {
  font-size: var(--fs-100);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}
.cta-f-card-h3 {
  font-family: var(--f-display);
  font-size: var(--fs-500);
  font-weight: var(--fw-black);
  letter-spacing: -.03em;
  color: var(--c-text-1);
  line-height: 1.5;
  margin-bottom: 6px;
}
.cta-f-card-sub {
  font-size: var(--fs-200);
  color: var(--c-text-3);
  line-height: 1.7;
  margin-bottom: 28px;
}
/* The section moved from --c-bg to --c-bg-2, so every surface above it moves a
   step too or the stack collapses: the card was --c-bg-2 and would now be the
   same colour as the section it sits on, and the inputs were --c-bg-3 and would
   match the card. Three surfaces, three steps: 1A / 21 / 26. Scoped here rather
   than changed in components.css — .form-input is a generic primitive and the
   next form to use it will not be on this background. */
.cta-f-card .form-input {
  background: var(--c-bg-4);
}

.cta-f-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cta-f-inner { grid-template-columns: 1fr; gap: var(--sp-12) }
}

@media (max-width: 640px) {
  .cta-f-inner,
  .cta-f-card { padding-left: var(--sp-6); padding-right: var(--sp-6) }
}
