:root {
  --ink: #0b2031;
  --navy: #102f48;
  --navy-2: #183f5c;
  --orange: #ed8b1f;
  --orange-dark: #cf6f0b;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --muted: #64727d;
  --line: rgba(16, 47, 72, .14);
  --shadow: 0 24px 70px rgba(11, 32, 49, .12);
  --radius: 22px;
  --font-body: Aptos, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Aptos Display', Aptos, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font-body); line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--orange-dark); font: 700 .78rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.035em; margin: 0; }
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.55rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 720px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .25s, box-shadow .25s; }
.site-header.scrolled, .site-header.open { background: rgba(247, 244, 237, .96); box-shadow: 0 10px 35px rgba(11,32,49,.08); backdrop-filter: blur(14px); }
.nav { height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; align-self: stretch; display: flex; align-items: center; padding: 7px 15px 9px; background: rgba(255,253,248,.98); border-radius: 0 0 18px 18px; box-shadow: 0 12px 32px rgba(8,29,44,.16); text-decoration: none; }
.brand::after { content: ''; position: absolute; height: 4px; inset: auto 15px 0; border-radius: 4px 4px 0 0; background: var(--orange); }
.brand img { width: 184px; height: auto; }
.site-header.scrolled .brand { box-shadow: none; background: transparent; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .94rem; position: relative; }
.site-header:not(.scrolled):not(.open) .nav-links > a:not(.button) { color: #fff; text-shadow: 0 1px 14px rgba(8,29,44,.35); }
.nav-links a:not(.button)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s; }
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { right: 0; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 49px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--orange); color: #fff; text-decoration: none; font-weight: 700; box-shadow: 0 10px 25px rgba(237,139,31,.2); transition: transform .2s, background .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: var(--orange-dark); }
.button.secondary { color: var(--navy); background: transparent; border: 1px solid rgba(16,47,72,.24); box-shadow: none; }
.button.secondary:hover { background: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 760px; display: grid; align-items: end; position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,29,44,.94) 0%, rgba(8,29,44,.74) 48%, rgba(8,29,44,.16) 88%), linear-gradient(0deg, rgba(8,29,44,.65), transparent 50%); }
.hero-inner { position: relative; z-index: 1; padding: 180px 0 92px; }
.hero-copy { width: min(780px, 90%); }
.hero .eyebrow { color: #f8a849; }
.hero h1 { max-width: 850px; }
.hero p { max-width: 650px; margin: 24px 0 34px; color: rgba(255,255,255,.82); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button.secondary { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .button.secondary:hover { background: rgba(255,255,255,.12); }
.hero-stats { position: absolute; z-index: 2; right: max(20px, calc((100vw - 1160px)/2)); bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); color: var(--ink); border-radius: 20px 20px 0 0; box-shadow: var(--shadow); }
.stat { min-width: 160px; padding: 24px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--orange-dark); font: 800 1.65rem/1 var(--font-display); }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .8rem; }

.section { padding: 110px 0; }
.section.white { background: var(--paper); }
.section.dark { background: var(--navy); color: #fff; }
.section.dark .lead, .section.dark p { color: rgba(255,255,255,.72); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading > * { max-width: 680px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.card-number { display: flex; align-items: center; justify-content: space-between; color: var(--orange-dark); font: 700 .78rem var(--font-body); letter-spacing: .12em; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: rgba(237,139,31,.12); font-size: 1.3rem; }
.service-card h3 { margin: 32px 0 13px; font-size: 1.35rem; }
.service-card p { color: var(--muted); }
.text-link { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.split-image { min-height: 570px; position: relative; }
.split-image > img { width: 88%; height: 100%; min-height: 570px; object-fit: cover; border-radius: 4px 70px 4px 4px; }
.image-note { position: absolute; right: 0; bottom: 42px; width: 230px; padding: 26px; color: #fff; background: var(--orange); border-radius: 18px 18px 4px 18px; box-shadow: var(--shadow); }
.image-note strong { font: 800 2.3rem/1 var(--font-display); }
.check-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange-dark); font-weight: 800; }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.sector { min-height: 205px; display: flex; flex-direction: column; justify-content: end; padding: 28px; background: var(--navy); }
.sector span { color: #f8a849; font: 700 .78rem var(--font-body); letter-spacing: .13em; }
.sector h3 { margin-top: 10px; font-size: 1.35rem; }
.cta-band { padding: 72px 0; background: var(--orange); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { max-width: 700px; }
.cta-band .button { background: var(--navy); box-shadow: none; white-space: nowrap; }

.page-hero { padding: 190px 0 92px; color: #fff; background: var(--navy); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 540px; height: 540px; right: -120px; bottom: -280px; border: 90px solid rgba(237,139,31,.13); border-radius: 50%; }
.page-hero .eyebrow { color: #f8a849; }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); max-width: 850px; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 680px; margin-top: 20px; font-size: 1.18rem; }
.page-hero .container { position: relative; z-index: 1; }
.prose { max-width: 820px; }
.prose h2 { margin: 58px 0 18px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 38px 0 12px; }
.prose p, .prose li { color: #4d5d68; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--orange-dark); }
.feature { border-left: 3px solid var(--orange); padding-left: 22px; }
.badge-row { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.badge-row img { width: 112px; height: 112px; object-fit: contain; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-card { padding: 38px; background: var(--navy); color: #fff; border-radius: var(--radius); }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-detail { display: block; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); text-decoration: none; }
.contact-detail small { display: block; color: #f8a849; text-transform: uppercase; letter-spacing: .12em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); padding: 14px 16px; color: var(--ink); outline: 0; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,139,31,.12); }
textarea { resize: vertical; min-height: 150px; }
.form-status { min-height: 25px; margin: 12px 0 0; }

.footer { padding: 70px 0 28px; color: rgba(255,255,255,.7); background: #081d2c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding-bottom: 55px; }
.footer img { width: 222px; padding: 14px 16px; background: var(--paper); border-radius: 16px; box-shadow: inset 0 -3px 0 var(--orange); }
.footer p { max-width: 410px; margin-top: 22px; }
.footer h3 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.footer a { display: block; margin: 8px 0; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; height: calc(100dvh - 94px); padding: 28px max(24px, calc((100vw - 1160px) / 2)); flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; overscroll-behavior: contain; background: var(--cream); border-top: 1px solid var(--line); box-shadow: 0 22px 50px rgba(8,29,44,.2); z-index: 101; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 17px 4px; font-size: 1.15rem; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links a:not(.button)::after { display: none; }
  .nav-links .button { width: 100%; margin-top: 22px; padding: 0 22px; color: #fff; border: 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .site-header:not(.scrolled):not(.open) .menu-toggle { background: rgba(255,255,255,.9); }
  .hero-stats { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { height: 80px; }
  .brand { padding: 6px 11px 8px; border-radius: 0 0 14px 14px; }
  .brand::after { inset-inline: 11px; height: 3px; }
  .brand img { width: 146px; }
  .nav-links { height: calc(100dvh - 80px); padding-inline: 22px; }
  .hero { min-height: 700px; }
  .hero-inner { padding: 145px 0 70px; }
  .hero-copy { width: 100%; }
  .section { padding: 78px 0; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 18px; }
  .grid-2, .grid-3, .sector-grid, .form-grid { grid-template-columns: 1fr; }
  .split-image, .split-image > img { min-height: 420px; }
  .split-image > img { width: 100%; }
  .image-note { width: 190px; right: -4px; bottom: 20px; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { padding: 145px 0 72px; }
  .contact-card { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* Enterprise refinement */
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.skip-link { position: fixed; left: 18px; top: -70px; z-index: 1000; padding: 12px 18px; border-radius: 8px; background: var(--orange); color: #fff; font-weight: 700; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid rgba(237,139,31,.55); outline-offset: 4px; }
.utility-bar { height: 32px; background: rgba(8,29,44,.92); color: rgba(255,255,255,.76); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 26px; font-weight: 700; }
.utility-inner span { display: inline-flex; align-items: center; gap: 8px; }
.utility-inner span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.site-header.scrolled .utility-bar { background: var(--navy); }
.site-header .nav { transition: height .25s; }
.hero-inner { padding-top: 212px; }
.page-hero { padding-top: 222px; }
.hero-copy { position: relative; padding-left: 28px; }
.hero-copy::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 7px; width: 3px; border-radius: 3px; background: linear-gradient(var(--orange), rgba(237,139,31,.12)); }
.hero h1 { font-weight: 700; letter-spacing: -.055em; }
.hero-actions .button { min-width: 190px; }
.proof-rail { background: #fff; border-bottom: 1px solid var(--line); }
.proof-inner { min-height: 94px; display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); align-items: center; gap: 22px; }
.proof-label { color: var(--muted); font-size: .75rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }
.proof-item { padding-left: 20px; border-left: 1px solid var(--line); color: var(--navy); font: 700 .84rem/1.3 var(--font-display); letter-spacing: .035em; }
.service-card { position: relative; overflow: hidden; }
.service-card::before { display: none; }
.service-card:has(.text-link) { transition: transform .25s, box-shadow .25s; }
.service-card:has(.text-link):hover, .service-card:has(.text-link):focus-within { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:has(.text-link)::before { content: ''; display: block; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--orange); transform: scaleY(0); transform-origin: bottom; transition: transform .28s ease; }
.service-card:has(.text-link):hover::before, .service-card:has(.text-link):focus-within::before { transform: scaleY(1); }
.card-icon { display: none; }
.service-card h3 { font-size: 1.4rem; }
.service-card p { font-size: .96rem; }
.case-study { padding: 0; background: #fff; }
.case-panel { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 590px; }
.case-image { position: relative; min-height: 520px; overflow: hidden; }
.case-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(8,29,44,.25)); }
.case-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 100px); color: #fff; background: var(--navy); }
.case-content .eyebrow { color: #f8a849; }
.case-content h2 { max-width: 570px; }
.case-content > p { color: rgba(255,255,255,.72); margin-top: 22px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-block: 1px solid rgba(255,255,255,.16); }
.case-metric { padding: 22px 16px 22px 0; }
.case-metric strong { display: block; color: #fff; font: 700 1.45rem/1 var(--font-display); }
.case-metric span { display: block; margin-top: 8px; color: rgba(255,255,255,.58); font-size: .75rem; line-height: 1.3; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: process; border-top: 1px solid var(--line); }
.process-step { position: relative; padding: 34px 30px 8px 0; counter-increment: process; border-right: 1px solid var(--line); }
.process-step:not(:first-child) { padding-left: 30px; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: '0' counter(process); display: block; margin-bottom: 38px; color: var(--orange-dark); font: 700 .78rem var(--font-body); letter-spacing: .12em; }
.process-step h3 { font-size: 1.2rem; }
.process-step p { margin-top: 12px; color: var(--muted); font-size: .92rem; }
.credential-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 20px 60px rgba(11,32,49,.06); }
.cta-band { position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; width: 340px; height: 340px; right: -90px; top: -170px; border: 55px solid rgba(255,255,255,.13); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; }
.footer { border-top: 4px solid var(--orange); }
.footer-bottom { letter-spacing: .015em; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journey-card { display: flex; flex-direction: column; min-height: 310px; padding: 34px; color: #fff; background: var(--navy); border-radius: var(--radius); text-decoration: none; transition: transform .25s, background .25s; }
.journey-card:nth-child(2) { background: var(--navy-2); }
.journey-card:nth-child(3) { background: #254d66; }
.journey-card:hover { transform: translateY(-6px); background: var(--orange-dark); }
.journey-card small { color: rgba(255,255,255,.58); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.journey-card h3 { margin-top: auto; font-size: 1.55rem; }
.journey-card p { color: rgba(255,255,255,.7); margin: 14px 0 0; }
.service-detail { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 70px; align-items: start; }
.service-nav { position: sticky; top: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.service-nav strong { display: block; margin-bottom: 14px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.service-nav a { display: block; padding: 9px 0; color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.service-nav a:hover { color: var(--orange-dark); }
.detail-section { padding: 0 0 58px; margin-bottom: 58px; border-bottom: 1px solid var(--line); scroll-margin-top: 150px; }
.detail-section:last-child { border: 0; margin-bottom: 0; }
.detail-section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 20px; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.deliverable { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.deliverable strong { display: block; margin-bottom: 7px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 20px 36px 20px 0; font-weight: 700; position: relative; }
summary::after { content: '+'; position: absolute; right: 4px; color: var(--orange-dark); font-size: 1.35rem; }
details[open] summary::after { content: '−'; }
details p { padding: 0 30px 18px 0; color: var(--muted); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { display: flex; flex-direction: column; min-height: 350px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.insight-card .tag { color: var(--orange-dark); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insight-card h2, .insight-card h3 { margin: 28px 0 14px; font-size: 1.45rem; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; justify-content: space-between; gap: 70px; }
.article-body h2 { margin: 52px 0 18px; font-size: 2rem; }
.article-body h3 { margin: 34px 0 12px; }
.article-body p, .article-body li { color: #425563; }
.article-body li { margin-bottom: 10px; }
.article-note, .editorial-note { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--orange); background: rgba(237,139,31,.08); }
.article-note strong, .editorial-note strong { color: var(--navy); }
.editorial-note p { margin: 6px 0 0; color: var(--muted); }
.source-list { padding-left: 22px; }
.source-list a { color: var(--navy); font-weight: 700; text-decoration-color: rgba(237,139,31,.65); text-underline-offset: 3px; }
.source-list a:hover { color: var(--orange-dark); }
.source-caveat { padding-top: 14px; border-top: 1px solid var(--line); font-size: .9rem; }
.experience-grid { align-items: stretch; }
.experience-grid .service-card { height: 100%; }
.experience-list { margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.experience-list li { position: relative; margin: 0 0 12px; padding-left: 22px; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.experience-list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.article-aside { position: sticky; top: 150px; padding: 26px; border-radius: 16px; color: #fff; background: var(--navy); }
.article-aside p { color: rgba(255,255,255,.68); }
.health-shell { max-width: 860px; margin-inline: auto; }
.health-progress { height: 8px; margin: 24px 0 42px; overflow: hidden; border-radius: 99px; background: rgba(16,47,72,.1); }
.health-progress span { display: block; width: 12.5%; height: 100%; background: var(--orange); transition: width .3s; }
.check-question { display: none; border: 0; padding: 0; margin: 0; }
.check-question.active { display: block; }
.check-question legend { max-width: 720px; margin-bottom: 28px; font: 700 clamp(1.7rem, 4vw, 2.6rem)/1.15 var(--font-display); letter-spacing: -.035em; }
.check-option { display: flex; align-items: flex-start; gap: 14px; margin: 12px 0; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; }
.check-option:has(input:checked) { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,139,31,.1); }
.check-option input { width: auto; margin-top: 5px; }
.health-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.health-result { display: none; padding: 40px; border-radius: var(--radius); background: var(--navy); color: #fff; }
.health-result.visible { display: block; }
.health-result p { color: rgba(255,255,255,.75); }
.risk-badge { display: inline-block; padding: 8px 13px; margin-bottom: 20px; border-radius: 99px; color: #fff; background: var(--orange-dark); font-weight: 700; }
.phone-link { white-space: nowrap; }
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 570px; margin-top: 28px; }
.newsletter input { background: #fff; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 900px) {
  .utility-bar { display: none; }
  .hero-inner { padding-top: 180px; }
  .page-hero { padding-top: 180px; }
  .proof-inner { grid-template-columns: repeat(3, 1fr); padding-block: 22px; }
  .proof-label { grid-column: 1 / -1; }
  .proof-item { min-height: 38px; }
  .case-panel { grid-template-columns: 1fr; }
  .case-image { min-height: 420px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid, .insight-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 250px; }
  .service-detail, .article-layout { grid-template-columns: 1fr; }
  .service-nav, .article-aside { position: static; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .hero-inner { padding-top: 145px; }
  .page-hero { padding-top: 145px; }
  .hero-copy { padding-left: 18px; }
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .proof-item { padding-left: 14px; }
  .case-image { min-height: 320px; }
  .case-content { padding: 56px 24px; }
  .case-metrics { grid-template-columns: 1fr; }
  .case-metric { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .case-metric:last-child { border: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:not(:first-child) { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-step::before { margin-bottom: 18px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .health-result { padding: 28px 22px; }
}
