/* ─────────────────────────────────────────
   Taqtile Public Sector — Verify page
   Extends public-sector.css + platform.css
   ───────────────────────────────────────── */

/* ── Centered statement band ── */
.vf-band {
  padding: 6rem 0;
  text-align: center;
}

.vf-band__statement {
  font-family: var(--ps-font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ps-text);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.vf-band__statement em {
  font-style: normal;
  color: var(--ps-tan);
}

.vf-band__sub {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1rem;
}

/* ── Questions grid ── */
.vf-questions {
  padding: 6.5rem 0;
  background: var(--ps-bg);
}

.vf-questions__header {
  max-width: 700px;
  margin-bottom: 3rem;
}
.vf-questions__header h2 { margin-bottom: 0.85rem; }

.vf-questions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ps-border);
  border: 1px solid var(--ps-border);
  border-radius: 4px;
  overflow: hidden;
}

.vf-question {
  background: var(--ps-bg-2);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background 200ms ease;
}
.vf-question:hover { background: var(--ps-bg-3); }

.vf-question__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--ps-bg-5);
  border: 1px solid var(--ps-border-2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-sage);
}

.vf-question__text {
  font-family: var(--ps-font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ps-text);
  line-height: 1.45;
}

.vf-questions__footnote {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--ps-text-2);
}

/* ── Readiness chain ── */
.vf-chain {
  padding: 6.5rem 0;
  background: var(--ps-bg-2);
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
  text-align: center;
}

.vf-chain__header h2 {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.vf-chain__sub {
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.vf-chain__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin-inline: auto;
}

.vf-chain__step {
  width: 100%;
  padding: 1.1rem 1.75rem;
  background: var(--ps-bg-3);
  border: 1px solid var(--ps-border-2);
  border-radius: 4px;
  font-family: var(--ps-font-head);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 600;
  color: var(--ps-text);
  line-height: 1.4;
}

.vf-chain__step--result {
  background: rgba(196,175,135,0.08);
  border-color: var(--ps-tan-dark);
  color: var(--ps-tan);
}

.vf-chain__arrow {
  display: flex;
  justify-content: center;
  padding: 0.6rem 0;
  color: var(--ps-olive);
}
.vf-chain__arrow svg { width: 20px; height: 20px; }

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

@media (max-width: 640px) {
  .vf-band,
  .vf-questions,
  .vf-chain { padding: 4.5rem 0; }
  .vf-questions__grid { grid-template-columns: 1fr; }
}
