:root {
  --navy-950: #06385a;
  --navy-900: #07527a;
  --navy-800: #0876a8;
  --graphite: #27323a;
  --slate: #5a6974;
  --mist: #edf8fc;
  --line: #cbe6ef;
  --white: #ffffff;
  --green: #18bde0;
  --green-dark: #0079a8;
  --sky: #1499cc;
  --warning: #ffd45a;
  --danger: #b42318;
  --shadow: 0 22px 60px rgba(0, 90, 132, .15);
  --radius: 26px;
  --content: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--graphite);
  background: linear-gradient(180deg, #fff 0%, #fbfdfe 42%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--navy-800); text-underline-offset: .18em; }
a:hover { color: var(--green-dark); }

button, input, select, textarea { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .7rem 1rem;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.5rem), 800px); margin-inline: auto; }
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section--soft { background: linear-gradient(145deg, #f2f7f8, #eaf2f5); }
.section--navy { position: relative; color: var(--white); background: radial-gradient(circle at 85% 15%, rgba(47,168,207,.13), transparent 30%), var(--navy-950); }
.section--tight { padding: 2.5rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--green); }
.section--navy .eyebrow, .hero .eyebrow { color: #c3ec84; }

h1, h2, h3 {
  margin: 0 0 .9rem;
  color: var(--navy-950);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 { max-width: 18ch; font-size: clamp(2.7rem, 6.2vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.section--navy h2, .section--navy h3, .hero h1 { color: var(--white); }
p { margin: 0 0 1.15rem; }
.lead { max-width: 760px; color: #40515c; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.section--navy .lead, .hero .lead { color: #ccdae2; }
.conclusion-content { width: 100%; margin: 0; text-align: left; }
.conclusion-content .lead { max-width: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(7, 24, 39, .1);
  backdrop-filter: none;
  box-shadow: 0 8px 30px rgba(7, 24, 39, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 1.4rem;
}

.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 142px; height: auto; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  color: var(--navy-950);
  background: var(--mist);
  border: 0;
  border-radius: 10px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.site-nav { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: .25rem; }
.site-nav > a, .nav-group > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .45rem .7rem;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav > a:hover, .nav-group > button:hover, .site-nav > a[aria-current="page"] { background: linear-gradient(135deg, var(--mist), #f8fbfc); box-shadow: inset 0 -2px 0 var(--green); }
.nav-group { position: relative; }
.nav-group > button::after { content: ""; width: 7px; height: 7px; margin: 0 0 4px 8px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); }
.nav-panel {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: none;
  width: min(640px, 90vw);
  padding: .8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
}
.nav-group.is-open .nav-panel { display: grid; }
.nav-panel a { padding: .75rem; color: var(--graphite); border-radius: 8px; font-size: .9rem; font-weight: 650; line-height: 1.3; text-decoration: none; }
.nav-panel a:hover { color: var(--navy-950); background: var(--mist); }
.header-cta { margin-left: .45rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.15rem;
  color: var(--navy-950);
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  font-weight: 820;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); box-shadow: 0 10px 24px rgba(8, 118, 168, .22); transform: translateY(-2px); }
.button--outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.5); }
.button--outline:hover { color: var(--white); background: rgba(255,255,255,.1); border-color: var(--white); }
.button--dark { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.button--dark:hover { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 80px));
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
}
.hero picture, .hero picture img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4,17,28,.97) 0%, rgba(4,17,28,.85) 38%, rgba(4,17,28,.24) 72%, rgba(4,17,28,.08) 100%); }
.hero::before { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 9px; background: linear-gradient(90deg, var(--green) 0 24%, var(--sky) 24% 42%, transparent 42%); }
.hero__inner { display: flex; align-items: center; padding-block: 5.5rem; }
.hero__copy { max-width: 720px; }
.hero__copy h1 { font-size: clamp(2.65rem, 5.1vw, 4.75rem); }
.hero__copy .lead { max-width: 620px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: .75rem 1.3rem; margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.22); color: #dce8ed; font-size: .9rem; font-weight: 700; }
.trust-strip span::before { content: "✓"; margin-right: .45rem; color: var(--green); }

.page-hero { position: relative; padding: 4.75rem 0 4.25rem; color: var(--white); background: linear-gradient(125deg, #061624 0%, var(--navy-950) 55%, #0b2c43 100%); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -40%; right: -10%; width: 52vw; height: 52vw; border: 1px solid rgba(47,168,207,.22); border-radius: 50%; box-shadow: 0 0 0 90px rgba(47,168,207,.05), 0 0 0 180px rgba(47,168,207,.035); }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--green), var(--sky) 32%, transparent 70%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.9rem); }
.hira-page-hero h1 span { display: block; }
.hira-page-hero .hero-title-main { white-space: nowrap; }
.page-hero .lead { color: #ccdae2; }
.service-page-hero { min-height: 340px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 2rem; padding: 0; color: #b9c9d2; font-size: .85rem; list-style: none; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: var(--green); }
.breadcrumb a { color: #dce8ed; }

.section-heading { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: 2.8rem; }
.section-heading p { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

.service-list { border-top: 0; }
.service-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin-top: .55rem;
  padding: 1.25rem 1rem;
  color: var(--graphite);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
}
.service-link:hover { color: var(--navy-950); background: linear-gradient(100deg, #fff, #f2f8fa); border-color: rgba(47,168,207,.55); box-shadow: 0 12px 30px rgba(7,24,39,.09); transform: translateX(5px); }
.service-link__number { color: var(--sky); font-family: monospace; font-size: .82rem; font-weight: 800; }
.service-link h3 { margin: 0 0 .2rem; }
.service-link p { margin: 0; color: var(--slate); font-size: .95rem; }
.service-link__arrow { display: grid; width: 38px; height: 38px; place-items: center; color: var(--navy-950); background: var(--green); border-radius: 50%; }
.section--navy .service-link { color: var(--white); background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.18); }
.section--navy .service-link p { color: #c9d6de; }
.section--navy .service-link:hover { color: var(--white); background: rgba(255,255,255,.05); }

.process { counter-reset: steps; border-top: 1px solid rgba(255,255,255,.2); }
.process-step { counter-increment: steps; display: grid; grid-template-columns: 72px 1fr; gap: 1.2rem; padding: 1.55rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.process-step::before { content: "0" counter(steps); color: var(--green); font: 800 .86rem/1.2 monospace; }
.process-step h3 { margin-bottom: .4rem; }
.process-step p { margin: 0; color: #c9d6de; }

.visual { position: relative; }
.visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.visual::after { content: ""; position: absolute; z-index: -1; right: -16px; bottom: -16px; width: 45%; height: 45%; background: var(--green); border-radius: var(--radius); }
.service-detail .lead { margin-bottom: 0; }
.service-detail .visual img { height: clamp(300px, 32vw, 440px); aspect-ratio: auto; }
.about-detail { align-items: stretch; }
.about-detail > div:first-child { align-self: start; padding-top: 0; }
.about-detail .visual { align-self: stretch; height: calc(100% - 54px); margin-top: 54px; }
.about-detail .visual picture { height: 100%; }
.about-detail .visual img { height: 100%; min-height: 520px; aspect-ratio: auto; object-position: center; }
.service-detail { position: relative; align-items: start; padding: clamp(1.4rem, 3vw, 2.2rem); background: linear-gradient(135deg, #fff, #f5f9fa); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 24px 70px rgba(7,24,39,.08); }
.hira-detail { align-items: stretch; }
.hira-detail .visual, .hira-detail .visual picture { height: 100%; }
.hira-detail .visual img { height: 100%; min-height: 560px; }

.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.outcomes li { position: relative; padding: 1rem 1rem 1rem 2.6rem; background: linear-gradient(135deg, var(--mist), #f8fbfc); border: 1px solid #e1eaed; border-radius: 12px; font-weight: 650; box-shadow: 0 5px 15px rgba(7,24,39,.035); }
.outcomes li::before { content: "✓"; position: absolute; left: 1rem; color: var(--green-dark); font-weight: 900; }

.callout { padding: 1.5rem; background: #f5f9e9; border-left: 5px solid var(--green); border-radius: 0 12px 12px 0; }
.callout p:last-child { margin-bottom: 0; }
.callout--review { background: #fff8de; border-color: var(--warning); }

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.audience article { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.audience article::before { content: ""; display: block; width: 34px; height: 4px; margin-bottom: 1.1rem; background: var(--green); }

.feature-band { position: relative; padding: 2.4rem; background: radial-gradient(circle at 100% 0, rgba(47,168,207,.25), transparent 42%), linear-gradient(135deg, var(--navy-900), var(--navy-950)); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.feature-band h2 { color: var(--white); }
.feature-band p { color: #cbd9e1; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: grid; grid-template-columns: 1fr auto; width: 100%; padding: 1.35rem 0; color: var(--navy-950); background: transparent; border: 0; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button::after { content: "+"; display: grid; width: 30px; height: 30px; place-items: center; margin-left: 1rem; color: var(--navy-950); background: var(--green); border-radius: 50%; font-size: 1.2rem; }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; max-width: 820px; padding: 0 3rem 1.5rem 0; }
.faq-answer.is-open { display: block; }

.guide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.guide { padding: 1.5rem; color: var(--graphite); background: var(--white); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; }
.guide:hover { color: var(--graphite); border-color: var(--sky); box-shadow: var(--shadow); }
.guide__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .8rem; color: var(--slate); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.guide p { margin-bottom: 0; color: var(--slate); }

.preserved-copy {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.copy-columns { columns: 2 300px; column-gap: 2.5rem; }
.copy-columns p { break-inside: avoid; }
.preserved-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.preserved-service-grid article { position: relative; padding: clamp(1.5rem, 3vw, 2.35rem); background: linear-gradient(145deg, #fff, #f8fbfc); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 12px 30px rgba(7,24,39,.055); overflow: hidden; }
.preserved-service-grid article::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--sky)); transform: scaleX(.22); transform-origin: left; transition: transform .25s ease; }
.preserved-service-grid article:hover::after { transform: scaleX(1); }
.preserved-service-grid article > span { display: inline-block; margin-bottom: 1.6rem; color: var(--sky); font-family: monospace; font-size: .78rem; font-weight: 800; }
.preserved-service-grid article p:last-child { margin-bottom: 0; }
.preserved-service-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.preserved-service-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.preserved-service-grid--three article h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.preserved-service-grid--two article h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.preserved-service-grid--three .outcomes { grid-template-columns: 1fr; }
.preserved-service-grid--two .outcomes { grid-template-columns: 1fr; }

.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 4rem; align-items: start; }
.article-body h2 { margin-top: 2.6rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.article-body h3 { margin-top: 2rem; }
.article-body li { margin-bottom: .55rem; }
.article-meta { position: sticky; top: 110px; padding: 1.35rem; background: var(--mist); border-radius: 12px; }
.article-meta dt { margin-top: .8rem; color: var(--slate); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-meta dd { margin: .2rem 0 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-card { padding: 2rem; color: var(--white); background: radial-gradient(circle at 100% 0, rgba(47,168,207,.22), transparent 38%), var(--navy-950); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; box-shadow: var(--shadow); }
.contact-grid form { padding: clamp(1.5rem, 3vw, 2.4rem); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 55px rgba(7,24,39,.08); }
.contact-card h2 { color: var(--white); }
.contact-card a { color: #c3ec84; }
.contact-card .visual img { height: clamp(190px, 18vw, 250px); aspect-ratio: auto; object-position: center; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; color: var(--graphite); background: #fbfdfe; border: 1px solid #aab8c0; border-radius: 10px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(47,168,207,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border: 2px solid var(--danger); }
.field-error { min-height: 1.2em; color: var(--danger); font-size: .8rem; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: center; }
.consent input { width: 20px; height: 20px; min-height: 0; margin: 0; padding: 0; accent-color: var(--green-dark); }
.form-note, .form-status { font-size: .88rem; }
.form-status { min-height: 1.5em; margin-top: .8rem; font-weight: 750; }
.form-status.is-error { color: var(--danger); }
.honeypot { position: absolute !important; left: -9999px !important; }

.cta-band { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); color: var(--white); background: radial-gradient(circle at 85% 0, rgba(47,168,207,.28), transparent 34%), linear-gradient(120deg, var(--navy-950), var(--navy-800)); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; box-shadow: 0 24px 64px rgba(7,24,39,.16); overflow: hidden; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 680px; margin-bottom: 0; color: #cbd9e1; }

.site-footer { position: relative; color: #c6d4dc; background: radial-gradient(circle at 15% 0, rgba(47,168,207,.12), transparent 28%), #04111c; }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 3rem; padding: 4rem 0; }
.footer-brand img { width: 175px; height: auto; object-fit: contain; padding: 8px; background: var(--white); border-radius: 8px; }
.footer-brand p { max-width: 480px; margin-top: 1.2rem; }
.footer-main h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: .45rem 0; }
.footer-links a { color: #c6d4dc; text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.cookie-panel { position: fixed; z-index: 200; right: 1rem; bottom: 1rem; display: none; width: min(430px, calc(100% - 2rem)); padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.cookie-panel.is-visible { display: block; }
.cookie-panel h2 { font-size: 1.2rem; }
.cookie-panel p { margin-bottom: .8rem; font-size: .85rem; }
.cookie-panel .button-row { margin-top: .8rem; }

.reveal { opacity: 1; transform: translateY(18px); transition: transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Logo-led 2026 template */
body { background: #f8fcfe; }
.site-header { background: #fff; border-bottom-color: rgba(0,121,168,.14); box-shadow: 0 10px 35px rgba(0,75,112,.08); }
.header-inner { min-height: 72px; }
.brand img { width: 142px; }
.site-nav { gap: .55rem; }
.site-nav > a, .nav-group > button { padding: .62rem .9rem; border-radius: 999px; }
.site-nav > a:hover, .nav-group > button:hover, .site-nav > a[aria-current="page"] { color: #fff; background: var(--navy-800); box-shadow: 0 8px 20px rgba(20,153,204,.2); }
.header-cta { color: #fff !important; background: var(--navy-800) !important; border-color: var(--navy-800) !important; border-radius: 999px; }

.hero { min-height: 720px; color: var(--navy-950); background: linear-gradient(135deg, #fff 0 42%, #e9f8fc 100%); }
.hero picture { inset: 0 0 0 46%; width: 54%; height: 100%; clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
.hero picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero::after { background: linear-gradient(90deg, #fff 0 42%, rgba(255,255,255,.8) 50%, transparent 66%); }
.hero::before { height: 7px; background: linear-gradient(90deg, var(--navy-800), var(--sky), var(--green)); }
.hero__inner { position: relative; z-index: 1; }
.hero__copy { max-width: 650px; }
.hero h1, .hero__copy h1 { color: var(--navy-950); }
.hero .lead { color: var(--graphite); }
.hero .eyebrow { color: var(--navy-800); }
.button--outline { color: var(--navy-900); border-color: var(--navy-800); }
.button--outline:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); }

.page-hero { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.page-hero::before { top: -110%; right: -4%; width: 58vw; height: 58vw; border-color: rgba(255,255,255,.18); box-shadow: 0 0 0 70px rgba(24,189,224,.11), 0 0 0 140px rgba(255,255,255,.04); }
.page-hero::after { height: 7px; background: linear-gradient(90deg, var(--sky), var(--green), #8fe6f5); }
.page-hero h1 { max-width: 15ch; }

.section { position: relative; }
.section--soft { background: linear-gradient(135deg, #eaf8fc, #f5fbfd 55%, #e5f5fa); }
.section--navy { background: linear-gradient(135deg, var(--navy-950), #075d87 72%, #0879a8); }
.section-heading { align-items: start; }

.service-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.service-list--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-link { grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; min-height: 175px; margin: 0; padding: 1.5rem; background: #fff; border-color: rgba(20,153,204,.2); border-radius: 22px; box-shadow: 0 14px 38px rgba(0,82,122,.08); }
.service-link__number { grid-column: 1 / -1; align-self: start; }
.service-link__arrow { align-self: end; background: var(--green); }
.service-link:hover { transform: translateY(-7px); background: #fff; border-color: var(--sky); box-shadow: 0 22px 50px rgba(0,99,145,.16); }
.section--navy .service-list { grid-template-columns: 1fr; }
.section--navy .service-link { min-height: auto; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); box-shadow: none; }

.preserved-service-grid { gap: 1.25rem; }
.preserved-service-grid article { border: 0; border-top: 5px solid var(--sky); border-radius: 22px; box-shadow: 0 18px 45px rgba(0,88,130,.1); }
.preserved-service-grid article:nth-child(3n+2) { border-top-color: var(--green); }
.preserved-service-grid article:nth-child(3n+3) { border-top-color: var(--navy-800); }
.preserved-service-grid article::after { display: none; }

.feature-band, .cta-band, .contact-card { background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 75%, var(--sky)); }
.service-detail { background: #fff; border: 0; border-left: 8px solid var(--sky); border-radius: 4px 28px 28px 4px; box-shadow: 0 25px 70px rgba(0,82,122,.12); }
.visual img { border-radius: 24px 4px 24px 4px; }
.visual::after { right: -12px; bottom: -12px; background: linear-gradient(135deg, var(--green), var(--sky)); border-radius: 4px 20px 4px 20px; }
.outcomes li { background: #fff; border-color: rgba(20,153,204,.2); box-shadow: 0 10px 28px rgba(0,82,122,.07); }
.contact-grid form { border: 0; border-top: 6px solid var(--sky); box-shadow: 0 25px 70px rgba(0,82,122,.12); }
.site-footer { background: linear-gradient(135deg, #032b45, var(--navy-950)); }

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

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .header-cta { display: inline-flex; margin-top: .4rem; }
  .site-nav { position: absolute; top: 72px; left: 0; display: none; width: 100%; max-height: calc(100vh - 72px); padding: 1rem 1.25rem 1.5rem; background: var(--white); border-bottom: 1px solid var(--line); overflow-y: auto; }
  .site-nav.is-open { display: block; }
  .site-nav > a, .nav-group > button { width: 100%; justify-content: space-between; padding: .75rem; }
  .nav-group > button::after { margin-right: .2rem; }
  .nav-panel { position: static; width: 100%; margin: .3rem 0 .8rem; padding: .4rem; border: 0; box-shadow: none; grid-template-columns: 1fr; }
  .nav-panel a { padding: .7rem 1rem; }
  .hero { min-height: 680px; }
  .hero::after { background: linear-gradient(90deg, #fff 0 40%, rgba(255,255,255,.78) 58%, transparent 78%); }
  .section-heading, .article-shell, .preserved-copy { grid-template-columns: 1fr; }
  .article-meta { position: static; }
  .audience, .preserved-service-grid--three, .preserved-service-grid--two { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section--navy .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 1.5rem), var(--content)); }
  .brand img { width: 118px; }
  .hero { min-height: 790px; align-items: start; }
  .hero picture { inset: auto 0 0; width: 100%; height: 44%; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .hero picture img { object-position: 58% center; }
  .hero::after { background: linear-gradient(180deg, #fff 0 54%, rgba(255,255,255,.88) 61%, transparent 76%); }
  .hero__inner { align-items: flex-start; padding-block: 4rem 20rem; }
  .hero__copy h1 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .page-hero { padding: 4rem 0 3.5rem; }
  .page-hero h1 { font-size: clamp(2.05rem, 10vw, 3.05rem); }
  .hira-page-hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.7rem); }
  .service-page-hero { min-height: 300px; }
  .conclusion-content { width: 100%; }
  .grid-2, .grid-3, .audience, .guide-list, .contact-grid, .form-grid, .outcomes, .footer-main, .preserved-service-grid, .preserved-service-grid--three, .preserved-service-grid--two { grid-template-columns: 1fr; }
  .field--full, .footer-brand { grid-column: auto; }
  .service-list { grid-template-columns: 1fr; }
  .service-link { grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; min-height: 145px; gap: .65rem; }
  .service-detail { padding: 1rem; }
  .service-link p { display: block; }
  .visual { margin-right: 10px; }
  .service-detail .visual img { height: 260px; }
  .hira-detail .visual, .hira-detail .visual picture { height: auto; }
  .hira-detail .visual img { height: 280px; min-height: 0; }
  .contact-card .visual img { height: 210px; }
  .about-detail .visual { height: auto; margin-top: 0; }
  .about-detail .visual picture { height: auto; }
  .about-detail .visual img { height: 300px; min-height: 0; aspect-ratio: auto; }
  .cta-band { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 44px 1fr; }
  .footer-main { gap: 2rem; }
  .footer-bottom { display: block; }
}

@media print {
  .site-header, .site-footer, .cta-band, .cookie-panel, .button-row { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .page-hero, .section--navy { color: #000; background: #fff; }
  .page-hero h1, .section--navy h2, .section--navy h3 { color: #000; }
}
