/* ============================================================
   /admissions/verify-insurance/ — Page Styles
   ============================================================ */

/* ── S1: Hero ─────────────────────────────────────────────── */

.verify-hero {
  background: var(--brand-aqua);
  text-align: center;
}

.verify-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.verify-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.verify-hero .lead {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--text-primary);
}

.verify-hero .eyebrow {
  justify-content: center;
}

.verify-hero .actions {
  justify-content: center;
}

/* Aqua hero — buttons must become white/ink, same as .final */
.verify-hero .btn             { background: #fff; color: var(--ink); }
.verify-hero .btn:hover       { background: #EEF2F1; transform: translateY(-1px); }
.verify-hero .btn.ghost       { background: transparent; color: var(--ink); border-color: rgba(22, 32, 31, .44); }
.verify-hero .btn.ghost:hover { background: rgba(22, 32, 31, .07); transform: none; }

/* ── S1b: Form Section ────────────────────────────────────── */

.verify-form-section {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.verify-form-header {
  text-align: center;
  margin-bottom: 36px;
}

.verify-form-heading {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}

.verify-form-note {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto;
}

/* Wide, centered container for the form */
.verify-form-body {
  max-width: 960px;
  margin: 0 auto;
}

/* Two-column field grid — targets the Fluent Forms fieldset */
.verify-form-body fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  padding: 0;
  border: none;
  margin: 0;
}

/* Name wrapper (first + last) spans both columns */
.verify-form-body .ff-name-field-wrapper {
  grid-column: 1 / -1;
}

/* Submit button row spans both columns and centers its content */
.verify-form-body .ff-el-group.ff-text-center {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

/* Constrain button width so it centers rather than stretching full-width */
.verify-form-body .ff-el-group.ff-text-center .ff-btn-submit {
  width: auto;
  min-width: 280px;
  max-width: 440px;
}

/* Strip the card's visual shell while keeping its field/button rules */
.verify-form-body.form-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Trust badges row */
.verify-form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.verify-form-privacy {
  font-size: .8rem;
  color: var(--text-tertiary);
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

/* ── S2: Process Steps ────────────────────────────────────── */

.verify-process {
  background: var(--surface-soft-blue);
  text-align: center;
}

.verify-process h2 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.verify-process .lead {
  max-width: 58ch;
  margin: 0 auto 48px;
}

.verify-process .eyebrow {
  justify-content: center;
}

/* Three-column card grid */
.verify-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.verify-step-card {
  background: #fff;
  border: 1px solid rgba(14, 95, 122, .14);
  border-top: 3px solid var(--brand-aqua);
  border-radius: var(--r-sm);
  padding: clamp(24px, 3vw, 36px);
}

.vstep-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand-aqua-hover);
  line-height: 1;
  margin-bottom: 14px;
}

.verify-step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.verify-step-card p {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── S3: Privacy ──────────────────────────────────────────── */

.verify-privacy {
  background: #7f4e20;
  text-align: center;
}

/* Center and widen the .measure container; override its default left-align */
.verify-privacy .measure {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.verify-privacy .eyebrow {
  color: rgba(255, 255, 255, .75);
  justify-content: center;
}

.verify-privacy .eyebrow::before {
  background: var(--accent-trans-pink);
}

.verify-privacy h2 {
  color: #fff;
  max-width: none;
}

.verify-privacy .lead {
  max-width: 100%;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  text-align: center;
}

/* ── S4: Bridge ───────────────────────────────────────────── */

.verify-bridge {
  background: #fff;
  border-top: 1px solid var(--border-light);
}

.verify-bridge-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.vbridge-heading {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 14px;
}

.verify-bridge-inner p {
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0 auto 22px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 860px) {
  /* Form collapses to single column */
  .verify-form-body fieldset {
    grid-template-columns: 1fr;
  }

  .verify-form-body .ff-name-field-wrapper {
    grid-column: 1;
  }

  .verify-form-body .ff-el-group.ff-text-center {
    grid-column: 1;
  }

  /* Step cards stack */
  .verify-steps-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
