/* ────────────────────────────────────────────────────────────── *
 * STRATEGIC REVIEW PAGE — sr-page.css                          *
 * Namespace: sr-  (no admin bleed)                             *
 * ──────────────────────────────────────────────────────────── */

/* ── Shared tokens ── */
.sr-hdr,.sr-hero,.sr-timeline-sec,.sr-outcomes-sec,.sr-body,.sr-ftr {
  --sr-navy: #0B1628;
  --sr-mid:  #184684;
  --sr-blue: #3b82f6;
  --sr-amber:#f59e0b;
  --sr-red:  #ef4444;
  --sr-green:#22c55e;
  --sr-light:#f5f6f8;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ══════════════════════════════════════════════════════════════
   MINIMAL CONVERSION HEADER
═══════════════════════════════════════════════════════════════ */
.sr-hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,22,40,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 60px;
  display: flex;
  align-items: center;
}
.sr-hdr-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.sr-hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sr-hdr-logo img { height: 28px; width: auto; }
.sr-hdr-nav { display: flex; align-items: center; gap: 20px; }
.sr-hdr-lang {
  font-size: 12px; font-weight: 500; letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 4px 11px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color .15s, border-color .15s;
}
.sr-hdr-lang:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.sr-hdr-back {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .15s;
}
.sr-hdr-back:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.sr-hero {
  background: var(--sr-navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.sr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 0% 110%, rgba(24,70,132,.55) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%,  rgba(24,70,132,.2)  0%, transparent 55%);
  pointer-events: none;
}
.sr-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.sr-hero .container { position: relative; z-index: 1; }

.sr-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.sr-hero-copy { max-width: 560px; }

.sr-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 20px;
}
.sr-h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400; color: #fff;
  line-height: 1.06; letter-spacing: -.025em;
  margin: 0 0 20px;
}
.sr-hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 10px;
}
.sr-hero-qual {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.32);
  line-height: 1.6;
  margin: 0 0 32px;
  font-style: italic;
}
.sr-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.sr-chip {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 99px;
  padding: 6px 16px; white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.sr-chip.sr-vis { opacity: 1; transform: none; }

/* ── Diagnostic visual ── */
.sr-diag-wrap {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease .3s, transform .6s ease .3s;
}
.sr-diag-wrap.sr-vis { opacity: 1; transform: none; }

.sr-diag {
  background: rgba(255,255,255,.042);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.sr-diag-labelbar {
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sr-diag-labeltext {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.sr-diag-labelbadge {
  font-size: 9px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.055);
  border-radius: 4px;
  padding: 2px 8px;
}
.sr-diag-body {
  padding: 18px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
/* Each indicator row */
.sr-ind { display: flex; align-items: center; gap: 11px; }
.sr-ind-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  transition: background .55s ease;
}
.sr-ind-name {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.58);
  flex: 1;
}
.sr-ind-status {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: transparent;
  background: transparent;
  border-radius: 4px;
  padding: 2px 8px;
  transition: color .55s ease, background .55s ease;
}
/* State: amber */
.sr-ind[data-state="amber"] .sr-ind-dot  { background: #f59e0b; }
.sr-ind[data-state="amber"] .sr-ind-status { color: #f59e0b; background: rgba(245,158,11,.14); }
/* State: red */
.sr-ind[data-state="red"]  .sr-ind-dot   { background: #ef4444; }
.sr-ind[data-state="red"]  .sr-ind-status { color: #ef4444; background: rgba(239,68,68,.13); }
/* State: green */
.sr-ind[data-state="green"] .sr-ind-dot  { background: #22c55e; }
.sr-ind[data-state="green"] .sr-ind-status { color: #22c55e; background: rgba(34,197,94,.13); }

/* Priority panel */
.sr-diag-priority {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transition: opacity .55s ease;
}
.sr-diag-priority.sr-vis { opacity: 1; }
.sr-priority-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 10px;
}
.sr-priority-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.sr-priority-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; color: rgba(255,255,255,.52);
  font-family: 'Inter', sans-serif;
}
.sr-priority-item::before {
  content: attr(data-n);
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.28);
  width: 14px; flex-shrink: 0;
}
.sr-priority-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════════════════════════════ */
.sr-timeline-sec {
  background: #fff;
  padding: 80px 0 88px;
}
.sr-sec-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
}
.sr-sec-h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: #111827;
  margin: 0 0 48px;
  letter-spacing: -.02em; line-height: 1.15;
}

/* Desktop timeline */
.sr-tl-desktop { position: relative; }
.sr-tl-track   { position: relative; padding-top: 44px; }

.sr-tl-timelabels {
  display: grid;
  grid-template-columns: 33.33fr 44.44fr 22.23fr;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.sr-tl-tl {
  font-size: 10px; font-weight: 600;
  color: #9ca3af; letter-spacing: .05em;
}

.sr-tl-linewrap {
  position: relative;
  height: 2px;
  background: #e8ecf0;
  border-radius: 2px;
  overflow: hidden;
}
.sr-tl-linefill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--sr-mid), #3b82f6);
  width: 0%;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}

/* Marker dots on the line */
.sr-tl-markers {
  display: grid;
  grid-template-columns: 0fr 33.33fr 44.44fr 22.23fr;
  position: absolute;
  top: -6px; left: 0; right: 0;
  pointer-events: none;
}
.sr-tl-mk { display: flex; justify-content: flex-start; }
.sr-tl-mkdot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #e8ecf0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e8ecf0;
  transition: background .4s ease, box-shadow .4s ease;
}
.sr-tl-mkdot.sr-active {
  background: var(--sr-mid);
  box-shadow: 0 0 0 3px rgba(24,70,132,.2);
}

/* Phase content below line */
.sr-tl-phases {
  display: grid;
  grid-template-columns: 33.33fr 44.44fr 22.23fr;
  margin-top: 20px;
}
.sr-tl-phase {
  padding: 0 24px 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-tl-phase.sr-vis  { opacity: 1; transform: none; }
.sr-tl-phase:last-child { padding-right: 0; }
.sr-tl-dur {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sr-mid);
  margin-bottom: 6px;
}
.sr-tl-pname {
  font-size: 15px; font-weight: 500;
  color: #111827;
  margin-bottom: 6px;
}
.sr-tl-pbody {
  font-size: 13px; font-weight: 300;
  color: #6b7280; line-height: 1.65;
  margin: 0;
}

/* Mobile vertical timeline */
.sr-tl-mobile {
  display: none;
  flex-direction: column;
}
.sr-tl-mp {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-tl-mp.sr-vis { opacity: 1; transform: none; }
.sr-tl-mleft {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sr-tl-mdot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #e8ecf0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e8ecf0;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background .4s ease;
}
.sr-tl-mdot.sr-active {
  background: var(--sr-mid);
  box-shadow: 0 0 0 3px rgba(24,70,132,.2);
}
.sr-tl-mline {
  flex: 1;
  width: 2px;
  background: #e8ecf0;
  margin-top: 8px;
  border-radius: 2px;
  overflow: hidden;
}
.sr-tl-mlinefill {
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--sr-mid), #3b82f6);
  transition: height .8s ease;
  border-radius: 2px;
}
.sr-tl-mp:last-child .sr-tl-mline { display: none; }
.sr-tl-mdur {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sr-mid); margin-bottom: 4px;
}
.sr-tl-mname { font-size: 15px; font-weight: 500; color: #111827; margin: 0 0 4px; }
.sr-tl-mbody {
  font-size: 13px; font-weight: 300;
  color: #6b7280; line-height: 1.65; margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   OUTCOMES — WHAT YOU LEAVE WITH
═══════════════════════════════════════════════════════════════ */
.sr-outcomes-sec {
  background: var(--sr-light);
  padding: 80px 0;
}
.sr-outcome-seq {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.sr-outcome {
  flex: 1;
  padding: 28px 28px 32px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8ecf0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.sr-outcome.sr-vis { opacity: 1; transform: none; }
.sr-out-num {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 400;
  color: #e8ecf0;
  line-height: 1;
  margin-bottom: 14px;
}
.sr-out-title {
  font-size: 16px; font-weight: 500;
  color: #111827;
  margin: 0 0 8px; line-height: 1.3;
}
.sr-out-body {
  font-size: 13px; font-weight: 300;
  color: #6b7280; line-height: 1.65; margin: 0;
}
.sr-out-arrow {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #d1d5db;
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.sr-out-arrow.sr-vis { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   BODY GRID — scenarios + form
═══════════════════════════════════════════════════════════════ */
.sr-body {
  background: var(--sr-light);
  padding: 0 0 80px;
}
.sr-body-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: start;
}
/* Divider between outcomes and body */
.sr-body-divider {
  height: 1px;
  background: #e8ecf0;
  margin-bottom: 56px;
}

/* Who This Is For */
.sr-who { margin-bottom: 52px; }
.sr-who-h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400; color: #111827;
  margin: 0 0 24px;
  letter-spacing: -.02em; line-height: 1.2;
}
.sr-scenarios { display: flex; flex-direction: column; }
.sr-scenario {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e8ecf0;
}
.sr-scenario:first-child { border-top: 1px solid #e8ecf0; }
.sr-sc-num {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--sr-mid);
  text-transform: uppercase;
  padding-top: 3px;
}
.sr-sc-body h3 {
  font-size: 14px; font-weight: 500;
  color: #111827; margin: 0 0 5px;
}
.sr-sc-body p {
  font-size: 13px; font-weight: 300;
  color: #6b7280; line-height: 1.65; margin: 0;
}

/* Editorial quote */
.sr-quote {
  border-left: 2px solid var(--sr-mid);
  padding: 0 0 0 22px;
  margin: 0;
}
.sr-quote p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400; color: #111827;
  line-height: 1.55; margin: 0 0 12px;
  font-style: italic;
}
.sr-quote cite {
  font-size: 11px; font-weight: 600;
  color: #9ca3af;
  letter-spacing: .07em; text-transform: uppercase;
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   FORM CARD
═══════════════════════════════════════════════════════════════ */
@media (min-width: 961px) and (min-height: 800px) {
  .sr-form-wrap { position: sticky; top: 72px; }
}
.sr-form-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 28px rgba(11,22,40,.08);
}
.sr-form-hdr {
  background: var(--sr-navy);
  padding: 24px 26px;
}
.sr-form-hdr h2 {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 400;
  color: #fff; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.sr-form-hdr p {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.42);
  margin: 0; line-height: 1.6;
}

/* Form-level error live region */
.sr-form-err-region {
  background: rgba(239,68,68,.06);
  border-bottom: 1px solid rgba(239,68,68,.18);
  padding: 12px 26px;
  font-size: 13px; color: #dc2626;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* Form body */
.sr-form-body {
  padding: 22px 26px;
  position: relative;
}
.sr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sr-field { margin-bottom: 15px; }
.sr-label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  color: #374151; margin-bottom: 6px;
}
.sr-label .req { color: #ef4444; margin-left: 2px; }
.sr-input, .sr-textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  padding: 11px 13px;
  font-size: 14px; font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fafafa;
  transition: border-color .18s, box-shadow .18s, background .18s;
  outline: none;
  min-height: 46px;
}
.sr-input:focus, .sr-textarea:focus {
  border-color: var(--sr-mid);
  box-shadow: 0 0 0 3px rgba(24,70,132,.1);
  background: #fff;
}
.sr-input[aria-invalid="true"],
.sr-textarea[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}
/* Autofill fix */
.sr-input:-webkit-autofill,
.sr-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px #fff inset;
  -webkit-text-fill-color: #111827;
}
.sr-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.sr-field-error {
  font-size: 11px; color: #ef4444;
  margin-top: 4px;
  min-height: 15px;
  line-height: 1.4;
}
.sr-field-hint {
  font-size: 11px; color: #9ca3af;
  margin-top: 5px; line-height: 1.5;
}
.sr-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 14px 0;
}

/* Captcha */
.sr-captcha-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 10px;
  align-items: end;
}
.sr-captcha-q {
  padding: 11px 13px;
  background: #f0f4f8;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  font-size: 15px; font-weight: 500;
  color: var(--sr-mid);
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  user-select: none;
  min-height: 46px;
  display: flex; align-items: center;
}
/* Remove number input spinners */
.sr-captcha-ans::-webkit-outer-spin-button,
.sr-captcha-ans::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sr-captcha-ans[type=number] { -moz-appearance: textfield; }

/* Submit button */
.sr-submit-btn {
  width: 100%;
  background: var(--sr-navy); color: #fff;
  border: none; border-radius: 7px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif; letter-spacing: .02em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .18s, transform .18s, opacity .18s;
}
.sr-submit-btn:hover:not(:disabled) { background: var(--sr-mid); transform: translateY(-1px); }
.sr-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.sr-submit-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Spinner */
.sr-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: sr-spin .7s linear infinite;
  flex-shrink: 0;
}
.sr-submit-btn.sr-loading .sr-spinner { display: block; }
@keyframes sr-spin { to { transform: rotate(360deg); } }

.sr-no-commit {
  margin-top: 13px;
  font-size: 11px; font-weight: 300;
  color: #9ca3af; line-height: 1.55;
  text-align: center;
}

/* ── Success state ── */
.sr-success {
  padding: 36px 26px;
  text-align: center;
}
.sr-check-svg {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: block;
}
.sr-check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset .5s ease .15s;
}
.sr-check-path.sr-drawn { stroke-dashoffset: 0; }
.sr-success h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: #111827; margin: 0 0 10px;
}
.sr-request-badge {
  display: inline-block;
  background: #f0f4f8;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--sr-mid);
  margin-bottom: 16px;
}
.sr-success p {
  font-size: 13px; font-weight: 300;
  color: #6b7280; line-height: 1.7;
  margin: 0 0 20px;
}
.sr-success-link {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  color: var(--sr-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(24,70,132,.3);
  padding-bottom: 2px;
  transition: border-color .18s;
}
.sr-success-link:hover { border-color: var(--sr-mid); }
.sr-success h3:focus { outline: none; }

/* ── Mobile sticky CTA ── */
.sr-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 150;
  background: var(--sr-navy);
  color: #fff;
  border: none; border-radius: 99px;
  padding: 13px 28px;
  font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif; letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(11,22,40,.35);
  opacity: 1;
  transition: opacity .3s ease;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   MINIMAL FOOTER
═══════════════════════════════════════════════════════════════ */
.sr-ftr {
  background: var(--sr-navy);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sr-ftr-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  box-sizing: border-box;
}
.sr-ftr-copy {
  font-size: 12px; color: rgba(255,255,255,.28);
  font-family: 'Inter', sans-serif;
}
.sr-ftr-links { display: flex; gap: 20px; }
.sr-ftr-links a {
  font-size: 12px; color: rgba(255,255,255,.28);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color .15s;
}
.sr-ftr-links a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sr-hero-grid  { grid-template-columns: 1fr 360px; gap: 48px; }
  .sr-body-grid  { grid-template-columns: 1fr 360px; }
}
@media (max-width: 960px) {
  .sr-hero { padding: 90px 0 60px; }
  .sr-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sr-hero-copy { max-width: 100%; }
  .sr-diag-wrap { max-width: 480px; }

  /* Swap: form above scenarios on mobile */
  .sr-body-grid  { grid-template-columns: 1fr; }
  .sr-body-left  { order: 2; }
  .sr-body-right { order: 1; }

  /* Use vertical timeline on tablet/mobile */
  .sr-tl-desktop { display: none; }
  .sr-tl-mobile  { display: flex; }

  /* Outcomes: stack */
  .sr-outcome-seq { flex-direction: column; gap: 14px; }
  .sr-out-arrow   { display: none; }

  /* Mobile CTA */
  .sr-mobile-cta { display: block; }
}
@media (max-width: 768px) {
  .sr-hdr-inner { padding: 0 20px; }
  .sr-hero { padding: 80px 0 48px; }
  .sr-timeline-sec, .sr-outcomes-sec { padding: 60px 0; }
  .sr-body { padding: 0 0 60px; }
  .sr-row { grid-template-columns: 1fr; gap: 0; }
  .sr-row > div { margin-bottom: 0; }
  .sr-ftr-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .sr-hdr-back  { display: none; }
  .sr-h1        { font-size: 30px; }
  .sr-diag-wrap { max-width: 100%; }
  .sr-hero-sub  { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .sr-diag-wrap,
  .sr-chip,
  .sr-tl-phase,
  .sr-tl-mp,
  .sr-outcome,
  .sr-out-arrow,
  .sr-scenario,
  .sr-ind-dot,
  .sr-ind-status,
  .sr-diag-priority {
    transition: none !important;
    animation: none !important;
  }
  .sr-spinner       { animation: none !important; }
  .sr-check-path    { transition: none !important; }
  .sr-tl-linefill   { transition: none !important; }
  .sr-tl-mlinefill  { transition: none !important; }
  .sr-tl-mkdot,
  .sr-tl-mdot       { transition: none !important; }
}
