/* ==========================================================================
   Healthcare Intelligence Partners — Design System
   Tokens: Navy / White / Light Blue / Soft Gray / Gold accent
   Type: Libre Franklin (display/headings) + Source Sans 3 (body)
   Signature element: The Pathway — Opportunity → Proposal → Funding →
   Implementation → Reporting → Impact, rendered as a connected node line.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0a2036;
  --navy-800: #0f2a4a;
  --navy-700: #16385e;
  --navy-600: #204a78;
  --blue-light: #e8f1f9;
  --blue-line: #cfe0ef;
  --gray-50: #f6f7f9;
  --gray-100: #eceef1;
  --gray-300: #cfd4da;
  --gray-500: #6b7480;
  --ink: #17212e;
  --white: #ffffff;
  --gold: #b8873b;
  --gold-light: #e9d3a4;
  --success: #2f6f52;

  /* Type */
  --font-display: "Libre Franklin", "Segoe UI", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 32, 54, 0.06), 0 1px 1px rgba(10, 32, 54, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 32, 54, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 32, 54, 0.16);
  --header-h: 76px;
}

/* ------------------------- Reset & base ------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html, body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray-500); }
p.lead { font-size: 1.15rem; color: #3c4653; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--navy-800); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: #c7d5e5; }
.section--light { background: var(--blue-light); }
.section--gray { background: var(--gray-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold-light); }

.section-head { max-width: 740px; margin: 0 0 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-900); }
.btn-primary:hover { background: #c99a4f; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy-700); color: var(--navy-800); }
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------- Header / Nav ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--navy-800); font-weight: 700; }
.brand-text span { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gray-500); text-transform: uppercase; }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.18s ease;
}
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { right: 0; }
.nav-desktop a[aria-current="page"] { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: inline-flex; }

/* Services dropdown (desktop) */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 6px 0;
}
.nav-item-dropdown > button svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.nav-item-dropdown.open > button svg { transform: rotate(180deg); }
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
}
.nav-item-dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
}
.dropdown-panel a:hover { background: var(--blue-light); }
.dropdown-panel a strong { font-size: 0.92rem; color: var(--navy-800); }
.dropdown-panel a span { font-size: 0.78rem; color: var(--gray-500); font-weight: 400; font-family: var(--font-body); }
.dropdown-panel a[aria-current="page"] strong { color: var(--gold); }

/* Mobile services group */
.mobile-nav .nav-group-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 18px 4px 6px;
}
.mobile-nav .sub-link { padding-left: 16px; font-size: 0.98rem; font-weight: 500; }

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 49;
  overflow-y: auto;
  padding: 12px 24px 32px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: 18px; }

/* ------------------------- Hero ------------------------- */
.hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 76px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,135,59,0.20), transparent 65%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead { color: #d7e3f0; font-size: 1.18rem; max-width: 620px; margin-bottom: 32px; }
.hero .btn-row { margin-bottom: 8px; }
.hero-page {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.hero-page h1 { color: var(--white); margin-bottom: 14px; }
.hero-page p.lead { color: #d7e3f0; max-width: 700px; }
.breadcrumb { font-size: 0.85rem; color: var(--gold-light); margin-bottom: 16px; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.03em; }

/* ------------------------- Trust bar ------------------------- */
.trust-bar { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.08); }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 22px 0;
  justify-content: center;
}
.trust-list li {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: #cfe0ef;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ------------------------- Pathway signature ------------------------- */
.pathway {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 8px 2px 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pathway::-webkit-scrollbar { display: none; }
.pathway-step {
  flex: 1 0 150px;
  min-width: 150px;
  position: relative;
  padding: 0 14px 0 0;
  text-align: left;
}
.pathway-step .node {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pathway-step:last-child .node { background: var(--gold); color: var(--navy-900); }
.pathway-step::after {
  content: "";
  position: absolute;
  top: 17px; left: 34px; right: -14px;
  height: 2px;
  background: var(--blue-line);
}
.pathway-step:last-child::after { display: none; }
.pathway-step h4 { font-size: 0.98rem; margin-bottom: 4px; }
.pathway-step p { font-size: 0.87rem; margin: 0; }
.section--navy .pathway-step p { color: #aebfd2; }
.section--navy .pathway-step::after { background: rgba(255,255,255,0.18); }

/* Compact pathway used in footer */
.pathway-mini { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pathway-mini span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #aebfd2;
}
.pathway-mini .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ------------------------- Cards ------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-700);
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; margin-bottom: 14px; }
.card ul { margin-top: 8px; }
.card ul li {
  font-size: 0.9rem;
  color: #3c4653;
  padding: 6px 0 6px 20px;
  position: relative;
  border-top: 1px solid var(--gray-100);
}
.card ul li:first-child { border-top: none; }
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
}
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy-700); margin-top: 6px; }
.card-link svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

.card--audience { text-align: left; padding: 26px 22px; }
.card--audience h4 { margin-bottom: 6px; }
.card--audience p { font-size: 0.88rem; margin: 0; }

/* Problem/solution list */
.check-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
}
.check-item .mark {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}
.check-item.problem .mark { background: #f3e3d6; color: #9a5b1e; }
.check-item.solution .mark { background: var(--blue-light); color: var(--navy-700); }
.check-item p { margin: 0; color: #2d3543; font-size: 0.98rem; }
.check-item strong { color: var(--navy-800); }

/* Featured offer */
.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.offer-copy { padding: 46px 44px; }
.offer-copy .eyebrow { margin-bottom: 12px; }
.offer-copy p.lead { color: #2d3543; margin-bottom: 24px; }
.offer-deliverables {
  background: var(--navy-800);
  color: var(--white);
  padding: 46px 40px;
}
.offer-deliverables h4 { color: var(--gold-light); font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.offer-deliverables ul li {
  font-size: 0.94rem;
  padding: 10px 0 10px 26px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #dbe6f1;
}
.offer-deliverables ul li:first-child { border-top: none; }
.offer-deliverables ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  color: var(--gold);
  font-weight: 700;
}

/* Process steps (Discover -> Align -> Build -> Implement -> Measure) */
.process-strip { display: flex; flex-wrap: wrap; gap: 18px; }
.process-step {
  flex: 1 1 170px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
}
.process-step .num { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 10px; }
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: #cfe0ef; max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-row { justify-content: center; }

/* Stat / notice bars */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: #3c4653;
}
.notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.5;
}

/* Two column content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col > * { min-width: 0; }
.side-panel {
  background: var(--blue-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.side-panel h4 { margin-bottom: 14px; }
.side-panel ul li { font-size: 0.92rem; padding: 8px 0; border-top: 1px solid var(--blue-line); color: #2d3543; }
.side-panel ul li:first-child { border-top: none; }

/* Values grid (about page) */
.value-item { display: flex; gap: 14px; }
.value-item .mark {
  flex: 0 0 40px; width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-800);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.value-item h4 { margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; margin: 0; }

/* ------------------------- Forms ------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22,56,94,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.required-mark { color: var(--gold); }
.form-status { font-size: 0.92rem; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); display: none; }
.form-status.success { display: block; background: #e7f3ec; color: var(--success); border: 1px solid #bfe0cd; }
.contact-help { margin: 12px 0 0; color: var(--slate-600); font-size: 0.88rem; }

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 14px; }
.contact-info-card p { color: #c7d5e5; font-size: 0.94rem; }
.contact-info-card .info-row { display: flex; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-info-card .info-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-card .info-row strong { display: block; font-family: var(--font-display); font-size: 0.86rem; color: var(--gold-light); margin-bottom: 3px; }
.contact-info-card .info-row span { font-size: 0.9rem; }
.contact-info-card .info-row a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-info-card .info-row a:hover { color: var(--gold-light); }

/* ------------------------- Footer ------------------------- */
.site-footer { background: var(--navy-900); color: #b9c8da; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text span { color: #8fa3ba; }
.footer-brand p { color: #93a6bd; font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; font-size: 0.9rem; color: #b9c8da; padding: 6px 0; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.83rem;
  color: #7f93ab;
}

/* ------------------------- Utilities ------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 16px;
  z-index: 999;
  font-family: var(--font-display);
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------- Responsive ------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offer { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-desktop, .nav-actions .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .btn { max-width: 100%; white-space: normal; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .offer-copy, .offer-deliverables { padding: 32px 26px; }
  .cta-banner { padding: 40px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .pathway-step { flex: 1 0 130px; }
}

@media (max-width: 420px) {
  html, body { font-size: 16px; }
  .container { padding: 0 18px; }
}
