/* ══════════════════════════════════════
   SHARED SECTION & LAYOUT STYLES
══════════════════════════════════════ */
section { padding: clamp(64px,9vw,110px) clamp(20px,5%,80px); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
