/* ==========================================================================
   DBP Consulting Portal — shared stylesheet
   --------------------------------------------------------------------------
   PART 1 (lines below, through "END PART 1") is the original portal CSS,
   preserved verbatim from the previous single-file index.html.
   PART 2 adds the components used by the Service Through Connection™ system.
   ========================================================================== */

:root {
  --bg: #071120;
  --bg2: #0b172a;
  --nav: #111f3a;
  --card: #192a4d;
  --card2: #152542;
  --gold: #e7ad12;
  --gold2: #f2c230;
  --text: #f6f8ff;
  --muted: #bdc9e4;
  --muted2: #8d9bb8;
  --line: rgba(255,255,255,.08);
  --teal: #0f6b74;
  --purple: #6f4fe8;
  --brown: #8d4e2f;
  --shadow: 0 22px 80px rgba(0,0,0,.25);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.top-note {
  background: #faf8f4;
  color: #0c1424;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 18px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17,31,58,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-mark {
  color: var(--gold);
  font-weight: 950;
  font-size: 25px;
  letter-spacing: -1px;
}

.brand-divider {
  height: 34px;
  width: 1px;
  background: rgba(255,255,255,.18);
}

.brand-title {
  color: #d7e0f3;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 800;
  color: #c5cce0;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  transition: all .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.hero {
  background:
    radial-gradient(circle at 50% 5%, rgba(29,63,115,.35), transparent 46%),
    linear-gradient(180deg, #091326 0%, #071120 88%);
  min-height: 650px;
  display: grid;
  align-items: center;
}

.hero-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 28px 78px;
}

.accent-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 0 30px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 70px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 950;
}

.gold { color: var(--gold); }

.hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  background: var(--gold);
  color: #091326;
  padding: 17px 30px;
  border-radius: 12px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(231,173,18,.22);
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.primary-btn:hover { transform: translateY(-2px); background: var(--gold2); }

.stats {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 18px;
  max-width: 930px;
}

.stat {
  background: linear-gradient(180deg, rgba(34,56,100,.88), rgba(25,42,77,.88));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  min-height: 108px;
  display: grid;
  place-items: center;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 40px;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 9px;
}

.stat span {
  display: block;
  color: #c5cfe8;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.section {
  padding: 90px 28px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.08;
  font-weight: 950;
}

.section .lead {
  color: var(--muted);
  font-size: 19px;
  margin-top: 18px;
}

.overview-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #c1cae3;
  font-size: 18px;
  text-align: center;
}

.overview-copy p { margin: 0 0 30px; }

.framework-stack {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.framework {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.framework-head {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 34px 34px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 22px;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 31px;
  border: 1px solid rgba(255,255,255,.09);
}

.teal { background: rgba(15,107,116,.35); }
.purple { background: rgba(111,79,232,.28); }
.brown { background: rgba(141,78,47,.35); }

.framework-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
  margin-bottom: 4px;
}

.framework h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.6px;
  line-height: 1.15;
}

.framework-sub {
  color: #c6d0eb;
  margin-top: 6px;
  font-size: 15px;
}

.explore {
  color: #c5cfe8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.framework.open .chevron { transform: rotate(225deg); }

.framework-body {
  display: none;
  padding: 0 34px 34px;
  border-top: 1px solid rgba(255,255,255,.045);
}

.framework.open .framework-body { display: block; }

.subpath-title {
  margin: 30px 0 16px;
  color: #cdd7f1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .12em;
  font-size: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.pill {
  padding: 9px 15px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.09);
}

.pill.teal-pill { background: rgba(15,107,116,.42); }
.pill.purple-pill { background: rgba(111,79,232,.36); }
.pill.brown-pill { background: rgba(141,78,47,.55); }

details.drawer {
  background: #132442;
  border-radius: 10px;
  margin: 14px 0;
  border: 1px solid rgba(255,255,255,.035);
}

details.drawer summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

details.drawer summary::-webkit-details-marker { display: none; }

.count {
  background: #263b67;
  color: #d6e0f6;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 13px;
}

.drawer-list {
  padding: 0 22px 20px 54px;
  color: #d1daf0;
  display: grid;
  gap: 8px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tool-card {
  background: var(--card);
  border-radius: 14px;
  padding: 34px;
  min-height: 210px;
  border: 1px solid rgba(255,255,255,.05);
}

.tool-card .emoji {
  font-size: 34px;
  display: block;
  margin-bottom: 22px;
}

.tool-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.tool-card p {
  margin: 0;
  color: #c1cce7;
  font-size: 16px;
}

.delivery-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 80px;
}

.delivery-line::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(231,173,18,.75), transparent);
  z-index: 0;
}

.delivery-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 46px;
  background: #101e36;
}

.step-card {
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.05);
}

.step-card .step {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.step-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.22;
}

.step-card p {
  margin: 0;
  color: #c0cae3;
  font-size: 15px;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.license-card {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  padding: 38px 34px;
  border: 1px solid rgba(255,255,255,.07);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.license-card.featured {
  border: 3px solid var(--gold);
  transform: translateY(-14px);
  box-shadow: 0 0 0 1px rgba(231,173,18,.22), var(--shadow);
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #071120;
  padding: 8px 24px;
  font-weight: 950;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
}

.license-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #1b3764;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.license-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.license-card .subtitle {
  margin: 6px 0 28px;
  color: #b6c2dd;
  font-size: 16px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  color: #c8d3ed;
}

.checklist li {
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 950;
}

.quote-btn {
  display: block;
  margin-top: 32px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  color: var(--gold);
  font-weight: 950;
}

.license-card.featured .quote-btn {
  background: var(--gold);
  color: #071120;
}

.licensing-note {
  text-align: center;
  margin-top: 34px;
  color: #c4cfe8;
}

.contact-line {
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}

footer {
  border-top: 1px solid var(--line);
  padding: 58px 28px;
  color: #c1cae3;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer-brand {
  color: var(--gold);
  font-size: 25px;
  font-weight: 950;
}

.footer-small {
  color: var(--muted2);
  font-size: 14px;
  text-align: right;
}

@media (max-width: 920px) {
  .nav-inner { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 16px 22px; font-size: 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tool-grid, .license-grid { grid-template-columns: 1fr; }
  .license-card.featured { transform: none; }
  .delivery-line { grid-template-columns: 1fr; gap: 30px; margin-top: 45px; }
  .delivery-line::before { display: none; }
  .circle { margin-bottom: 18px; }
  .framework-head { grid-template-columns: 58px 1fr; }
  .explore { grid-column: 1 / -1; padding-left: 80px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-small { text-align: left; }
}

@media (max-width: 560px) {
  .top-note { font-size: 12px; }
  .hero-inner, .section, footer { padding-left: 18px; padding-right: 18px; }
  .hero { min-height: auto; }
  .hero h1 { letter-spacing: -1.8px; }
  .stats { grid-template-columns: 1fr; margin-top: 58px; }
  .framework-head { padding: 24px 20px; gap: 14px; }
  .framework-body { padding: 0 20px 24px; }
  .explore { padding-left: 72px; }
  .brand { min-width: 0; }
  .brand-title { font-size: 12px; }
  .nav-links { width: 100%; justify-content: space-between; gap: 8px; }
}

/* =========================== END PART 1 =================================== */


/* ==========================================================================
   PART 2 — Service Through Connection™ system components
   Same palette family, card architecture, radii and type scale as Part 1.
   ========================================================================== */

:root {
  /* System / pathway accents. Each is checked for contrast on --bg. */
  --stc: #3d94d9;        /* Service Through Connection™ system accent */
  --ece: #35b39d;        /* Early Childhood Education pathway */
  --hosp: #c98a3f;       /* Hospitality and Guest Services pathway */
  --front: #93a3c4;      /* General Frontline Service pathway (intentionally quieter) */
  --accent: var(--gold); /* per-page override */
}

.theme-stc   { --accent: var(--stc); }
.theme-ece   { --accent: var(--ece); }
.theme-hosp  { --accent: var(--hosp); }
.theme-front { --accent: var(--front); }

/* ---------- Hero action row (primary + secondary system entry) ---------- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.hero-actions .primary-btn { margin-top: 0; }

.hero-actions .btn {
  padding: 16px 26px;
  border-color: rgba(255,255,255,.24);
  color: #e4ebfa;
}

/* ---------- Navigation: expanded link set + mobile disclosure ---------- */

.nav-inner { flex-wrap: wrap; }

.nav-links { gap: 22px; }

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  appearance: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: #e7edfb;
  font-weight: 900;
  font-size: 14px;
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
  align-items: center;
  gap: 10px;
}

.nav-toggle:hover { background: rgba(255,255,255,.1); }

.nav-toggle .bars {
  width: 16px;
  display: grid;
  gap: 3px;
}

.nav-toggle .bars i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #071120;
  font-weight: 900;
  padding: 12px 18px;
  z-index: 60;
}

.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: 3px;
}

/* ---------- Section navigation (in-page tab row) ---------- */

.section-nav {
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(11,23,42,.72);
}

.section-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-nav a {
  font-size: 13.5px;
  font-weight: 900;
  color: #c3cde6;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 8px 16px;
  transition: all .18s ease;
}

.section-nav a:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(255,255,255,.07);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(61,148,217,.20), transparent 52%),
    linear-gradient(180deg, #091326 0%, #071120 92%);
  padding: 74px 28px 68px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero .accent-line {
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 26px;
}

.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 950;
}

.page-hero .subtitle {
  margin: 20px 0 0;
  max-width: 780px;
  color: #d3ddf3;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.page-hero .positioning {
  margin: 22px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.accented { color: var(--accent); }

.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted2);
  letter-spacing: .02em;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .55; padding: 0 8px; }

/* ---------- Labels / chips ---------- */

.sys-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #eaf1ff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 22px;
}

.sys-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.path-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
  border-radius: 6px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #e9f0ff;
  white-space: nowrap;
}

.path-badge.wirf  { border-color: rgba(231,173,18,.5);  background: rgba(231,173,18,.14); }
.path-badge.stc   { border-color: rgba(61,148,217,.5);  background: rgba(61,148,217,.16); }
.path-badge.ece   { border-color: rgba(53,179,157,.5);  background: rgba(53,179,157,.16); }
.path-badge.hosp  { border-color: rgba(201,138,63,.55); background: rgba(201,138,63,.18); }
.path-badge.front { border-color: rgba(147,163,196,.5); background: rgba(147,163,196,.14); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ---------- Generic content blocks ---------- */

.prose {
  max-width: 820px;
  color: #c6cfe6;
  font-size: 18px;
}

.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }

.left-head {
  max-width: 820px;
  margin: 0 0 48px;
}

.left-head .lead { margin-top: 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 14px;
}

.callout {
  background: linear-gradient(180deg, rgba(34,56,100,.6), rgba(21,37,66,.6));
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 26px 28px;
  color: #cfd8ef;
  font-size: 17px;
  margin: 34px 0 0;
}

.callout strong { color: #fff; }

.flag {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(231,173,18,.08);
  border: 1px dashed rgba(231,173,18,.45);
  border-radius: 12px;
  padding: 18px 22px;
  color: #e4dcc4;
  font-size: 15px;
  margin-top: 30px;
}

.flag strong {
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  white-space: nowrap;
  padding-top: 2px;
}

/* ---------- Pillar cards (six core pillars) ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .18s ease, border-color .18s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
}

.pillar-num {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 17px;
  color: #071120;
  background: var(--accent);
}

.pillar-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.4px;
}

.pillar-card p {
  margin: 0;
  color: #c1cce7;
  font-size: 16px;
}

/* ---------- CARE Method™ ---------- */

.care-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 56px;
}

.care-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(61,148,217,.7), rgba(61,148,217,.7), transparent);
  z-index: 0;
}

.care-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.care-letter {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: #101e36;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 950;
  color: var(--accent);
  letter-spacing: -1px;
}

.care-body {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 26px 24px;
  text-align: left;
  min-height: 200px;
}

.care-body .step {
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11.5px;
}

.care-body h3 {
  margin: 9px 0 11px;
  font-size: 20px;
  line-height: 1.2;
}

.care-body p {
  margin: 0;
  color: #c0cae3;
  font-size: 15px;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.usecase {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 800;
  font-size: 15px;
  color: #dbe4f7;
  display: flex;
  align-items: center;
  gap: 11px;
}

.usecase::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* ---------- Pathway cards (Choose Your Path) ---------- */

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.path-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 4px solid var(--accent);
}

.path-card.secondary {
  grid-column: 1 / -1;
  background: var(--card2);
  padding: 30px 34px;
}

.path-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -.7px;
}

.path-card .path-sub {
  color: #c6d0eb;
  font-size: 15.5px;
  font-weight: 700;
  margin: 0;
}

.path-card p.path-desc {
  margin: 0;
  color: #bfc9e4;
  font-size: 16px;
}

.path-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.meta-chip {
  font-size: 12.5px;
  font-weight: 900;
  color: #d5deF2;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 6px 13px;
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 9px;
  padding: 13px 22px;
  font-weight: 950;
  font-size: 15px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all .16s ease;
}

.btn:hover { background: rgba(255,255,255,.07); }

.btn.solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #071120;
}

.btn.solid:hover { filter: brightness(1.08); }

.btn.ghost {
  border-color: rgba(255,255,255,.22);
  color: #dbe4f7;
}

.btn.small { padding: 10px 16px; font-size: 13.5px; }

/* ---------- Two-column split (audience / outcomes) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.panel {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 32px 30px;
}

.panel h3 {
  margin: 0 0 20px;
  font-size: 20px;
  letter-spacing: -.3px;
}

.panel .panel-note {
  color: var(--muted2);
  font-size: 14px;
  margin: 18px 0 0;
}

.tick-list,
.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #c8d3ed;
  font-size: 16px;
}

.tick-list li,
.dot-list li {
  position: relative;
  padding-left: 26px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 950;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Workshop collections (preserved core module areas) ---------- */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.collection-card {
  background: linear-gradient(180deg, rgba(34,56,100,.7), rgba(21,37,66,.85));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px 30px;
}

.collection-card .kicker {
  font-size: 11.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
}

.collection-card h3 {
  margin: 10px 0 18px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.4px;
}

/* ---------- Module cards (expandable, 12-part architecture) ---------- */

.module-list {
  display: grid;
  gap: 16px;
}

details.module {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  overflow: hidden;
}

details.module[open] { border-color: rgba(255,255,255,.14); }

details.module > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 18px;
  align-items: center;
}

details.module > summary::-webkit-details-marker { display: none; }

.module-num {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 15px;
  color: #eaf1ff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
}

details.module[open] .module-num {
  background: var(--accent);
  color: #071120;
  border-color: transparent;
}

.module-title {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.module-hint {
  color: #b7c2de;
  font-size: 14.5px;
  font-weight: 600;
  margin-top: 4px;
}

.module-open {
  color: #b9c4e0;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

details.module[open] .module-open .chevron { transform: rotate(225deg); }

.module-body {
  padding: 4px 26px 30px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.mblock {
  padding: 22px 0 0;
}

.mblock + .mblock {
  border-top: 1px solid rgba(255,255,255,.045);
  margin-top: 22px;
}

.mlabel {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 9px;
}

.mblock p {
  margin: 0;
  color: #c7d1e9;
  font-size: 16px;
}

.mblock p + p { margin-top: 12px; }

.mblock .scenario {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px 20px;
  color: #d3dcf1;
  font-size: 15.5px;
}

.mgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.045);
  margin-top: 22px;
}

.mgrid .mblock { padding-top: 0; }
.mgrid .mblock + .mblock { border-top: 0; margin-top: 0; }

.kc-list {
  margin: 0;
  padding-left: 22px;
  color: #c7d1e9;
  font-size: 15.5px;
  display: grid;
  gap: 14px;
}

.kc-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #b3bed9;
  list-style: none;
  display: grid;
  gap: 5px;
}

details.answer-key {
  margin-top: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
}

details.answer-key summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 13.5px;
  color: #d6dff4;
}

details.answer-key summary::-webkit-details-marker { display: none; }

details.answer-key .key {
  padding: 0 16px 14px;
  color: #bfc9e4;
  font-size: 14.5px;
}

.commit {
  background: rgba(61,148,217,.09);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid var(--accent);
  border-radius: 9px;
  padding: 16px 18px;
  color: #d3dcf1;
  font-size: 15.5px;
  font-style: italic;
}

/* ---------- Microlearning + scenario lists ---------- */

.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.micro-item {
  background: var(--card2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 700;
  color: #d5deF2;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.micro-item .play {
  color: var(--accent);
  font-weight: 950;
  flex: 0 0 auto;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scenario-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  color: #cfd8ef;
  font-size: 15.5px;
}

/* ---------- Tool library ---------- */

.tool-lib {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tool-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-item h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -.3px;
}

.tool-item p.purpose {
  margin: 0;
  color: #bfc9e4;
  font-size: 15.5px;
}

.status-chip {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #dfe7f8;
}

.status-chip.avail   { border-color: rgba(53,179,157,.55);  background: rgba(53,179,157,.14); }
.status-chip.planned { border-color: rgba(231,173,18,.5);   background: rgba(231,173,18,.12); }
.status-chip.custom  { border-color: rgba(61,148,217,.55);  background: rgba(61,148,217,.14); }

.tool-item .tool-actions {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

details.preview {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
}

details.preview summary {
  list-style: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 950;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 9px;
}

details.preview summary::-webkit-details-marker { display: none; }

details.preview .preview-body {
  padding-top: 14px;
}

details.preview ul {
  margin: 0;
  padding-left: 20px;
  color: #bfc9e4;
  font-size: 14.5px;
  display: grid;
  gap: 7px;
}

/* ---------- Delivery options A–F ---------- */

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.option-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-letter {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: var(--accent);
  color: #071120;
}

.option-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.4px;
}

.duration {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.option-card p {
  margin: 0;
  color: #c1cce7;
  font-size: 15.5px;
}

/* ---------- Leadership / outcomes grids ---------- */

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lead-card {
  background: var(--card2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  padding: 28px 26px;
}

.lead-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.22;
}

.lead-card p {
  margin: 0;
  color: #c1cce7;
  font-size: 15.5px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.outcome {
  background: linear-gradient(180deg, rgba(34,56,100,.7), rgba(21,37,66,.8));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 22px 20px;
  min-height: 128px;
}

.outcome .oi {
  font-size: 22px;
  display: block;
  margin-bottom: 12px;
}

.outcome strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.outcome span {
  display: block;
  margin-top: 8px;
  color: #b4bfda;
  font-size: 13.5px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 34px 32px;
}

.contact-card h3 { margin: 0 0 14px; font-size: 21px; }

.contact-card p { margin: 0 0 18px; color: #c1cce7; font-size: 16px; }

.mail-link {
  color: var(--accent);
  font-weight: 900;
  word-break: break-word;
}

.mail-link:hover { text-decoration: underline; }

/* ---------- Cross-links between systems ---------- */

.crosslink {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  background: linear-gradient(120deg, rgba(61,148,217,.14), rgba(25,42,77,.7));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 34px 34px;
}

.crosslink h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.5px;
  line-height: 1.18;
}

.crosslink p {
  margin: 0;
  color: #c6cfe6;
  font-size: 16.5px;
  max-width: 720px;
}

/* ---------- Footer expansion ---------- */

.footer-ip {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted2);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-ip strong { color: #cdd7ee; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
  font-size: 13.5px;
  font-weight: 800;
  color: #b7c2de;
}

.footer-nav a:hover { color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .pillar-grid,
  .collection-grid,
  .micro-grid,
  .tool-lib,
  .option-grid,
  .lead-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: repeat(3, 1fr); }
  .care-flow { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .care-flow::before { display: none; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,.09);
    padding-top: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    border-left: 3px solid transparent;
    padding-left: 12px;
  }
  .nav-links a:hover,
  .nav-links a.active,
  .nav-links a[aria-current="page"] {
    border-bottom-color: rgba(255,255,255,.05);
    border-left-color: var(--accent);
    background: rgba(255,255,255,.04);
  }
  .path-grid,
  .split,
  .scenario-grid,
  .mgrid,
  .contact-grid { grid-template-columns: 1fr; }
  .crosslink { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .pillar-grid,
  .collection-grid,
  .micro-grid,
  .tool-lib,
  .option-grid,
  .lead-grid,
  .care-flow,
  .usecase-grid,
  .outcome-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 18px 48px; }
  .breadcrumb,
  .section-nav-inner { padding-left: 18px; padding-right: 18px; }
  details.module > summary { grid-template-columns: 40px 1fr; padding: 20px; }
  .module-open { grid-column: 1 / -1; padding-left: 58px; }
  .module-body { padding: 4px 20px 26px; }
  .path-card { padding: 28px 22px; }
  .care-letter { margin-bottom: 18px; }
  .flag { flex-direction: column; gap: 8px; }
}

/* =========================== PART 3 ========================================
   Additions for the pathway pages, module index and licensing suites.
   Everything here is additive — no PART 1 or PART 2 rule is modified.
   ========================================================================== */

/* --- Compact page hero (used on quieter pages: frontline, about, contact) -- */
.page-hero.compact { padding: 56px 28px 48px; }
.page-hero.compact h1 { font-size: clamp(30px, 4vw, 44px); }

/* --- Small prose blocks inside panels ------------------------------------- */
.prose-sm {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.panel .prose-sm:last-child { margin-bottom: 0; }
.panel > .path-badge { margin-bottom: 14px; }
.left-head > .path-badge { margin-bottom: 18px; }

/* --- Ordered list used for the twelve-part architecture -------------------- */
.num-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.num-list li { margin-bottom: 11px; }
.num-list li:last-child { margin-bottom: 0; }
.num-list strong { color: #fff; }

/* --- Module index blocks --------------------------------------------------- */
.index-block {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 30px 32px;
  margin-bottom: 24px;
}
.index-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.index-head h3 {
  margin: 0;
  flex: 1 1 260px;
  font-size: 20px;
  letter-spacing: -.3px;
}
.index-list {
  columns: 2;
  column-gap: 40px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.95;
}
.index-list li { break-inside: avoid; }
.index-list a {
  color: #dbe4f6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.index-list a:hover,
.index-list a:focus-visible { color: #fff; border-bottom-color: var(--accent); }
.index-block .panel-note {
  color: var(--muted2);
  font-size: 14px;
  margin: 20px 0 0;
}
.index-block .prose-sm { margin-bottom: 0; }

/* --- Service Through Connection licensing cards ---------------------------- */
.license-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.license-new {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 32px 30px;
}
.license-new h3 {
  margin: 16px 0 6px;
  font-size: 22px;
  letter-spacing: -.4px;
  line-height: 1.2;
}
.license-new .subtitle {
  margin: 0 0 22px;
  color: var(--muted2);
  font-size: 14.5px;
  font-weight: 600;
}
.license-new h4 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted2);
}
.license-new .checklist { margin-bottom: 26px; }
.license-new .path-actions { margin-top: auto; }

/* --- Delivery option grid on wider pages ---------------------------------- */
.option-grid.wide { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1100px) {
  .license-grid-new { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .index-list { columns: 1; }
  .index-block { padding: 26px 24px; }
}

@media (max-width: 620px) {
  .page-hero.compact { padding: 44px 18px 40px; }
  .license-new { padding: 26px 22px; }
}

/* ==========================================================================
   PART 4 — Revision pass: five-stat hero, emphasized callout, workshop
   sub-heads, CTA rows and the contact-page interest indicator.
   ========================================================================== */

/* --- Five homepage statistics (was four) ---------------------------------- */
.stats.stats-5 {
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  max-width: 1140px;
}

/* --- Emphasized framework-relationship statement -------------------------- */
.callout.emphasis {
  background: linear-gradient(180deg, rgba(45,74,132,.72), rgba(28,49,88,.72));
  border-color: rgba(255,255,255,.14);
  border-left-width: 6px;
  font-size: 18px;
  line-height: 1.7;
  padding: 30px 32px;
  color: #dbe3f5;
}

/* --- Sub-heading inside a section (delivery options, etc.) ----------------- */
.sub-head {
  margin: 52px 0 22px;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}

/* --- Standalone call-to-action row ---------------------------------------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 38px;
}

/* --- Contact page: identified interest ------------------------------------ */
.interest-banner {
  display: none;
  background: linear-gradient(180deg, rgba(45,74,132,.72), rgba(28,49,88,.72));
  border: 1px solid rgba(255,255,255,.14);
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  padding: 26px 28px;
  margin: 0 0 34px;
  color: #dbe3f5;
  font-size: 17px;
}

.interest-banner.is-visible { display: block; }

.interest-banner strong { color: #fff; }

.interest-banner .interest-name {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  font-weight: 950;
  color: var(--accent);
  letter-spacing: -.3px;
}

.interest-banner .interest-detail {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #c1cce7;
}

.contact-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 18px 40px rgba(0,0,0,.28);
}

.contact-card.is-selected::before {
  content: "Selected";
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #0d1b33;
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 1100px) {
  .stats.stats-5 {
    grid-template-columns: repeat(6, 1fr);
    max-width: 760px;
  }
  .stats.stats-5 .stat { grid-column: span 2; }
  .stats.stats-5 .stat:nth-child(4),
  .stats.stats-5 .stat:nth-child(5) { grid-column: span 3; }
}

@media (max-width: 620px) {
  .stats.stats-5 {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  .stats.stats-5 .stat,
  .stats.stats-5 .stat:nth-child(4) { grid-column: auto; }
  .stats.stats-5 .stat:nth-child(5) { grid-column: span 2; }
  .stats.stats-5 .stat span { font-size: 11px; }
  .callout.emphasis { padding: 24px 22px; font-size: 16.5px; }
  .interest-banner { padding: 22px 20px; }
}

@media (max-width: 420px) {
  .stats.stats-5 { grid-template-columns: 1fr; }
  .stats.stats-5 .stat:nth-child(5) { grid-column: auto; }
}

/* --- Keep the three-across delivery grid responsive ------------------------
   .option-grid.wide outranks the plain .option-grid breakpoints on
   specificity, so it needs its own responsive steps.                        */
@media (max-width: 1100px) {
  .option-grid.wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .option-grid.wide { grid-template-columns: 1fr; }
}
