/* ── Data services page - extends style.css ──────────────────────────── */

/* Plain hero (no decorative quote mark) */
.hero--plain { padding: 6rem 0 4rem; }
.hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

/* ── Stats band ── */
.stats {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(79,70,229,0.04), rgba(124,58,237,0.04));
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Info cards (capabilities & sectors) ── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}
.card-grid--three { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: #a5b4fc;
  box-shadow: 0 2px 12px rgba(79,70,229,0.08);
}
.info-card-title {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.info-card p { font-size: 0.9rem; line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1rem; }
.faq-item { padding-left: 1rem; border-left: 3px solid var(--border); }
.faq-q { font-weight: 600; color: var(--text) !important; margin-bottom: 0.2rem; }
.faq-a { font-size: 0.95rem; }

/* ── Contact ── */
.contact {
  padding: 4rem 0 4.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(79,70,229,0.03), rgba(124,58,237,0.03));
}
.contact-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.next-steps {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.next-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  flex: 1 1 170px;
  min-width: 160px;
}
.next-step-num {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.next-step-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.contact-trust {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ── Collapsible contact form ── */
.contact-panel {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact-panel .field:last-of-type { margin-bottom: 1.25rem; }
.contact-panel .btn-primary { width: 100%; }

/* ── Mobile ── */
@media (max-width: 600px) {
  .card-grid, .card-grid--three { grid-template-columns: 1fr; }
  .stats-grid { gap: 2rem; }
  .hero--plain { padding: 3.5rem 0 2.5rem; }
}
