/* ── SERVICE SUB-PAGE SHARED STYLES ──────────────────────────── */
:root {
  --radius: 6px;
  --ff-serif: Georgia, 'Times New Roman', serif;
}

/* ── HERO LAYOUT ─────────────────────────────────────────────── */
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse at center, rgba(212,60,11,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-inner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── STATS PANEL ─────────────────────────────────────────────── */
.stats-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hero-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-row {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--hero-border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hero-muted);
  line-height: 1.4;
}
.stat-right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-val {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--hero-text);
  line-height: 1;
}
.stat-note {
  font-size: .7rem;
  color: var(--hero-muted);
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── SECTION TITLES ──────────────────────────────────────────── */
.section-title em { font-style: italic; color: var(--accent); }
.section.alt { background: var(--bg-alt); }

/* ── FEATURE GRID ────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: background .2s, border-color .2s;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--accent-fade);
}
.feature-icon {
  width: 36px; height: 36px;
  background: var(--accent-fade);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.feature-card h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .55rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── PROCESS LIST ────────────────────────────────────────────── */
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 640px) {
  .process-list { grid-template-columns: 1fr; }
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  letter-spacing: -.04em;
}
.step-body h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}
.step-body p {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.65;
}
