/* ─── Page header (inner pages: about, services, contact) ─── */
.page-header {
  padding-top: 140px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* ─── Section background modifier ─── */
.bg-surface { background: var(--surface); }

/* ─── Full-width block button ─── */
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ─── Service icon: amber/AI variant ─── */
.service-icon-amber { background: rgba(251, 191, 36, 0.1); }

/* ─── Body text (muted paragraphs) ─── */
.body-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ─── Bright emphasis ─── */
.text-bright { color: var(--text); }

/* ─── Spacing utilities ─── */
.mb-lg  { margin-bottom: 80px; }
.mt-md  { margin-top: 32px; }

/* ─── Content section divider (about page) ─── */
.content-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.content-section p + p { margin-top: 16px; }

/* ─── Subsection heading ─── */
.subsection-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ─── FAQ layout ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Contact timeline widget ─── */
.timeline-card {
  margin-top: 48px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.timeline-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 12px;
}

.timeline-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.timeline-key   { color: var(--text-muted); }
.timeline-value { font-weight: 500; }
