/* Conversion form module — shared across all new landing/SEO pages.
   Single-input address-only capture. Hands off to intake.html for the rest.
   Relies on the page's existing :root tokens: --ink, --paper, --white, --hairline,
   --gray-500, --gray-700, --cobalt, --cobalt-hover, --navy, --emerald. */

.conv-section { margin-bottom: 40px; scroll-margin-top: 24px; }

.conv-card {
  background: var(--white);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 16px;
  padding: 30px 32px 26px;
  box-shadow: 0 16px 38px rgba(15,23,42,0.08), 0 4px 14px rgba(37,99,235,0.06);
}
.conv-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 10px;
}
.conv-h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25;
  color: var(--ink); margin-bottom: 8px;
}
.conv-sub {
  font-size: 14.5px; color: var(--gray-700); line-height: 1.6; margin-bottom: 18px;
}

/* Single-input address row: input + button side-by-side on desktop, stacked on mobile */
.conv-quick-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.conv-quick-input {
  padding: 15px 18px;
  font-size: 16px; font-family: inherit; color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--hairline); border-radius: 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}
.conv-quick-input::placeholder { color: var(--gray-500); }
.conv-quick-input:focus { border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.conv-quick-input[data-state="success"] { border-color: rgba(16,185,129,0.7); background: rgba(16,185,129,0.03); }

.conv-quick-btn {
  padding: 14px 22px; border: 0; border-radius: 12px;
  background: var(--cobalt); color: var(--white);
  font-family: inherit; font-size: 15.5px; font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
  white-space: nowrap;
}
.conv-quick-btn:hover { background: var(--cobalt-hover); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,99,235,0.32); }
.conv-quick-btn:disabled { opacity: 0.65; cursor: wait; transform: none; box-shadow: none; }

.conv-trust { font-size: 12.5px; color: var(--gray-500); line-height: 1.55; margin-top: 12px; }
.conv-error { display: none; font-size: 13.5px; color: #B91C1C; padding: 10px 14px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 8px; margin-top: 10px; }
.conv-error.show { display: block; }

/* Repeat CTA block (lower on the page) */
.conv-repeat {
  margin-top: 48px;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(37,99,235,0.06), rgba(37,99,235,0.02));
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 14px;
  text-align: center;
}
.conv-repeat-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 10px;
}
.conv-repeat-h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 8px;
}
.conv-repeat-sub {
  font-size: 14.5px; color: var(--gray-700); line-height: 1.6;
  max-width: 560px; margin: 0 auto 18px;
}
.conv-repeat-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  background: var(--cobalt); color: var(--white) !important;
  font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
  transition: background 0.18s, transform 0.18s;
}
.conv-repeat-btn:hover { background: var(--cobalt-hover); transform: translateY(-1px); text-decoration: none; }

@media (max-width: 540px) {
  .conv-card { padding: 24px 22px; }
  .conv-h2 { font-size: 19px; }
  .conv-quick-row { grid-template-columns: 1fr; }
  .conv-quick-btn { padding: 14px 18px; }
  .conv-repeat { padding: 26px 22px; }
  .conv-repeat-h2 { font-size: 19px; }
}
