:root {
  --navy-950: #041326;
  --navy-900: #061a33;
  --navy-800: #0a2a4b;
  --navy-700: #123f68;
  --teal-500: #14b8a6;
  --teal-400: #33d1bf;
  --teal-100: #d8f5f1;
  --teal-50: #edf9f7;
  --amber-500: #f3a712;
  --amber-400: #ffc247;
  --amber-100: #fff0c9;
  --ink: #14223a;
  --muted: #5f6f84;
  --line: #dbe4ec;
  --surface: #ffffff;
  --surface-alt: #f4f8fb;
  --max: 1180px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(6, 26, 51, 0.07);
  --shadow: 0 24px 60px rgba(6, 26, 51, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--navy-900); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
h3 { font-size: 1.2rem; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1000; padding: .75rem 1rem; background: white; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 850px; }
.article-narrow { max-width: 790px; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 34px 0; }
.top-gap { margin-top: 46px; }
.alt-section { background: var(--surface-alt); }
.eyebrow { margin: 0 0 14px; color: #087d72; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--teal-400); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .84rem; }
.button-amber { color: var(--navy-950); background: var(--amber-500); box-shadow: 0 10px 26px rgba(243, 167, 18, .2); }
.button-amber:hover { background: var(--amber-400); box-shadow: 0 16px 32px rgba(243, 167, 18, .28); }
.button-navy { color: white; background: var(--navy-900); }
.button-navy:hover { background: var(--navy-800); box-shadow: var(--shadow-sm); }
.button-ghost { color: white; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-light { color: var(--navy-900); background: white; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #087d72; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.disclosure-bar { position: relative; z-index: 80; padding: 7px 0; color: #b8c8d8; background: var(--navy-950); font-size: .72rem; text-align: center; }
.site-header { position: sticky; top: 0; z-index: 70; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(219,228,236,.82); backdrop-filter: blur(18px); transition: box-shadow .2s ease; }
.site-header.scrolled { box-shadow: 0 12px 30px rgba(6,26,51,.08); }
.header-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-size: 1.25rem; line-height: 1; letter-spacing: -.04em; }
.brand-mark { width: 29px; height: 33px; color: var(--teal-500); }
.brand strong { font-weight: 800; }
.brand b { color: var(--amber-500); font-weight: 800; }
.brand em { color: var(--teal-500); font-style: normal; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { color: #43526a; font-size: .88rem; font-weight: 700; }
.site-nav > a:not(.button):hover { color: var(--navy-900); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 10px; background: var(--surface-alt); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--navy-900); transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 82% 34%, rgba(20,184,166,.19), transparent 27%), radial-gradient(circle at 92% 92%, rgba(243,167,18,.13), transparent 24%), var(--navy-950); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(51,209,191,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(51,209,191,.09) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, transparent 0, black 38%, black 100%); }
.hero-grid { position: relative; display: grid; min-height: 690px; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 56px; padding-top: 70px; padding-bottom: 78px; }
.hero h1 { max-width: 720px; color: white; }
.hero h1 span { display: block; color: var(--teal-400); }
.hero-lede { max-width: 670px; margin: 25px 0 31px; color: #c2d0de; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: #9eb1c4; font-size: .82rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 5px rgba(51,209,191,.12); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -18px 12px 30px -12px; border: 1px solid rgba(51,209,191,.24); border-radius: 30px; transform: rotate(-2deg); }
.hero-media img { position: relative; width: 100%; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; box-shadow: 0 38px 80px rgba(0,0,0,.34); }
.status-card { position: absolute; right: -20px; bottom: -28px; display: flex; align-items: center; gap: 12px; min-width: 260px; padding: 15px 18px; color: var(--ink); background: white; border-radius: 15px; box-shadow: var(--shadow); }
.status-card strong, .status-card span { display: block; }
.status-card strong { font-size: .83rem; }
.status-card span:last-child { color: var(--muted); font-size: .72rem; }
.status-icon { display: grid !important; width: 34px; height: 34px; place-items: center; color: var(--navy-900); background: var(--amber-500); border-radius: 50%; font-weight: 900; }

.trust-principles { position: relative; margin-top: -1px; background: var(--teal-50); }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card { display: flex; gap: 15px; padding: 23px; background: white; border: 1px solid #d9ece9; border-radius: 16px; box-shadow: 0 8px 22px rgba(6,26,51,.035); }
.trust-card h2 { margin-bottom: 7px; font-size: 1rem; letter-spacing: -.015em; }
.trust-card p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.55; }
.line-icon { flex: 0 0 auto; width: 30px; height: 30px; fill: none; stroke: var(--teal-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; margin-bottom: 52px; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.centered-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); }
.issue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.issue-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.issue-card:hover { transform: translateY(-4px); border-color: #b9dcd8; box-shadow: var(--shadow-sm); }
.issue-card .line-icon { width: 36px; height: 36px; margin-bottom: 26px; }
.issue-card h3 { margin-bottom: 11px; font-size: 1.22rem; }
.issue-card p { margin: 0; color: var(--muted); }

.packages-section { background: var(--surface-alt); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(6,26,51,.035); }
.package-card.featured { border-top: 5px solid var(--teal-500); box-shadow: var(--shadow-sm); }
.package-label { position: absolute; top: -14px; right: 24px; padding: 6px 11px; color: var(--navy-950); background: var(--teal-400); border-radius: 999px; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.package-tier { margin: 0 0 8px; color: #087d72; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.package-card h3 { min-height: 52px; font-size: 1.35rem; }
.package-price { margin: 19px 0 14px; color: var(--navy-900); font-size: 2.2rem; font-weight: 900; letter-spacing: -.05em; }
.package-price span { color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: 0; }
.package-card > p:not(.package-tier):not(.package-price) { color: var(--muted); font-size: .9rem; }
.check-list { display: grid; gap: 10px; margin: 19px 0 25px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: #3f4f65; font-size: .86rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #087d72; font-weight: 900; }
.package-card .text-link { margin-top: auto; }
.package-disclaimer { margin-top: 24px; color: var(--muted); font-size: .75rem; text-align: center; }

.process-preview { color: white; background: var(--navy-900); }
.split-heading.inverse h2 { color: white; }
.split-heading.inverse > p { color: #aec0d1; }
.process-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 42px; }
.process-steps::before { content: ""; position: absolute; left: 40px; right: 40px; top: 25px; height: 1px; background: linear-gradient(90deg, var(--teal-500), var(--amber-500)); opacity: .55; }
.process-steps article { position: relative; z-index: 1; }
.process-steps article > span { display: grid; width: 50px; height: 50px; margin-bottom: 20px; place-items: center; color: var(--navy-950); background: var(--teal-400); border: 5px solid var(--navy-900); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.process-steps article:last-child > span { background: var(--amber-500); }
.process-steps h3 { margin-bottom: 9px; color: white; }
.process-steps p { margin: 0; color: #a9bdcf; font-size: .86rem; }
.workflow-frame { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; }
.workflow-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, rgba(6,26,51,.2)); pointer-events: none; }
.workflow-frame img { width: 100%; }
.workflow-frame .button { position: absolute; right: 26px; bottom: 26px; z-index: 2; }

.relationship-grid, .about-grid, .deliverables-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 76px; }
.relationship-visual, .about-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.relationship-visual img, .about-image img { width: 100%; }
.relationship-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.role-list { display: grid; gap: 13px; margin: 28px 0; padding: 0; list-style: none; }
.role-list li { display: grid; grid-template-columns: 132px 1fr; padding-bottom: 13px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .87rem; }
.role-list span { color: var(--navy-900); font-weight: 800; }

.deliverables-section { background: var(--surface-alt); }
.deliverables-grid { align-items: start; }
.deliverables-grid > div:first-child > p:not(.eyebrow) { margin: 22px 0 28px; color: var(--muted); }
.deliverable-list { display: grid; gap: 10px; }
.deliverable-list article { display: grid; grid-template-columns: 52px 1fr; gap: 17px; padding: 21px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.deliverable-list article > span { display: grid; width: 42px; height: 42px; place-items: center; color: #087d72; background: var(--teal-50); border-radius: 11px; font-size: .72rem; font-weight: 900; }
.deliverable-list h3 { margin-bottom: 6px; font-size: 1rem; }
.deliverable-list p { margin: 0; color: var(--muted); font-size: .84rem; }

.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; min-height: 270px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.article-tag { align-self: flex-start; padding: 6px 10px; color: #087d72; background: var(--teal-50); border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin: 19px 0 13px; font-size: 1.25rem; }
.article-card h3 a:hover { color: #087d72; }
.article-card p { color: var(--muted); font-size: .88rem; }
.article-card .text-link { margin-top: auto; font-size: .85rem; }

.faq-section { background: var(--surface-alt); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.faq-grid > div:first-child > p:last-child { margin-top: 20px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--navy-900); background: transparent; border: 0; text-align: left; font-weight: 800; }
.faq-plus { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; left: 3px; top: 10px; width: 16px; height: 2px; background: var(--teal-500); transition: transform .2s; }
.faq-plus::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-plus::after { transform: rotate(0); }
.faq-answer { padding: 0 45px 22px 0; color: var(--muted); font-size: .9rem; }
.faq-answer p { margin: 0; }

.page-hero { position: relative; overflow: hidden; padding: 108px 0; color: white; background: radial-gradient(circle at 82% 20%, rgba(20,184,166,.18), transparent 26%), var(--navy-950); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(51,209,191,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(51,209,191,.09) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, transparent, black); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero p:last-child { max-width: 760px; margin: 24px 0 0; color: #b9c9d8; font-size: 1.12rem; }
.page-hero.compact { padding: 80px 0; }
.page-hero.compact h1 { font-size: clamp(2.4rem, 4vw, 4rem); }

.service-detail-grid { display: grid; gap: 24px; }
.service-detail-grid article { display: grid; grid-template-columns: 72px 1fr; gap: 30px; padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.service-detail-grid article > span, .values article > span { color: var(--teal-500); font-size: 1.6rem; font-weight: 900; }
.service-detail-grid h2 { font-size: 2rem; }
.service-detail-grid p { max-width: 740px; margin-top: 12px; color: var(--muted); }
.service-detail-grid .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.boundary-grid p { margin: 0; padding: 15px 17px; color: var(--muted); background: var(--surface-alt); border-left: 3px solid var(--amber-500); border-radius: 8px; font-size: .85rem; }

.process-page { background: var(--surface-alt); }
.process-detail { position: relative; display: grid; gap: 28px; }
.process-detail::before { content: ""; position: absolute; top: 55px; bottom: 55px; left: 42px; width: 1px; background: linear-gradient(var(--teal-500), var(--amber-500)); }
.process-detail article { position: relative; display: grid; grid-template-columns: 84px 1fr; gap: 35px; padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(6,26,51,.03); }
.process-detail article > span { z-index: 1; display: grid; width: 54px; height: 54px; place-items: center; color: var(--navy-950); background: var(--teal-400); border: 5px solid white; border-radius: 50%; font-size: .76rem; font-weight: 900; box-shadow: 0 0 0 1px var(--line); }
.process-detail article:last-child > span { background: var(--amber-500); }
.process-detail h2 { font-size: 2rem; }
.process-detail p:not(.eyebrow) { color: var(--muted); }
.output-chip { display: inline-flex; margin-top: 8px; padding: 7px 12px; color: #087d72; background: var(--teal-50); border-radius: 999px; font-size: .76rem; font-weight: 800; }
.process-image { background: var(--navy-900); }
.process-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

.about-grid { align-items: center; }
.about-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.credential-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.credential-grid > div { padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.credential-grid h2 { margin-bottom: 16px; font-size: 1.7rem; }
.credential-grid p:last-child { color: var(--muted); }
.values .centered-heading { margin-bottom: 42px; }
.values article { padding: 30px; border-top: 2px solid var(--teal-500); background: var(--surface-alt); border-radius: var(--radius-sm); }
.values article:last-child { border-top-color: var(--amber-500); }
.values h3 { margin: 13px 0 9px; }
.values p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact-section { background: var(--surface-alt); }
.contact-grid { align-items: start; }
.number-list { display: grid; gap: 15px; margin: 28px 0; padding: 0; list-style: none; }
.number-list li { display: flex; align-items: center; gap: 13px; color: #3e4f66; }
.number-list span { display: grid; width: 32px; height: 32px; place-items: center; color: #087d72; background: var(--teal-100); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.safe-box { margin-top: 30px; padding: 22px; background: var(--amber-100); border-left: 4px solid var(--amber-500); border-radius: 10px; }
.safe-box strong { color: var(--navy-900); }
.safe-box p { margin: 6px 0 0; color: #655431; font-size: .84rem; }
.contact-email { margin-top: 26px; color: var(--muted); }
.contact-email a { color: #087d72; font-weight: 800; }
.case-form { display: grid; gap: 18px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.case-form label { display: grid; gap: 7px; color: var(--navy-900); font-size: .82rem; font-weight: 800; }
.case-form label > span { color: var(--muted); font-weight: 500; }
.case-form input, .case-form select, .case-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid #cfd9e3; border-radius: 10px; outline: none; transition: border .2s, box-shadow .2s; }
.case-form textarea { resize: vertical; }
.case-form input:focus, .case-form select:focus, .case-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(20,184,166,.12); }
.case-form [aria-invalid="true"] { border-color: #c8493b; box-shadow: 0 0 0 3px rgba(200,73,59,.1); }
.char-count { justify-self: end; margin-top: -3px; font-size: .7rem !important; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal-500); }
.consent span { color: #46576d !important; font-size: .8rem; font-weight: 600 !important; }
.form-notice { padding: 13px 15px; color: #53637a; background: var(--surface-alt); border-radius: 9px; font-size: .76rem; }
.case-form .button { width: 100%; border: 0; }
.form-status { min-height: 1.4em; margin: 0; color: #087d72; font-size: .8rem; font-weight: 700; }

.featured-guide { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; overflow: hidden; background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.featured-guide > div { padding: 50px; }
.featured-guide h2 { margin: 20px 0 16px; color: white; }
.featured-guide p { margin-bottom: 25px; color: #b8c9d8; }
.featured-guide img { width: 100%; height: 100%; object-fit: cover; }

.article-hero { padding: 100px 0 70px; color: white; background: var(--navy-950); }
.article-hero h1 { color: white; font-size: clamp(2.6rem, 4.8vw, 4.5rem); }
.article-hero .article-narrow > p:not(.eyebrow) { margin-top: 24px; color: #b9c9d8; font-size: 1.12rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #88a0b7; font-size: .76rem; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 790px); align-items: start; gap: 70px; padding-top: 80px; padding-bottom: 100px; }
.article-aside { position: sticky; top: 105px; display: grid; gap: 9px; padding: 20px; background: var(--surface-alt); border-radius: 12px; }
.article-aside strong { margin-bottom: 6px; color: var(--navy-900); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.article-aside a { color: var(--muted); font-size: .8rem; }
.article-aside a:hover { color: #087d72; }
.article-body section { scroll-margin-top: 120px; margin-bottom: 54px; }
.article-body h2 { margin-bottom: 20px; font-size: 2.1rem; }
.article-body h3 { margin: 28px 0 10px; font-size: 1.18rem; }
.article-body p, .article-body li { color: #43536a; }
.article-body ul { display: grid; gap: 8px; padding-left: 22px; }
.article-body a:not(.button) { color: #087d72; text-decoration: underline; text-underline-offset: 3px; }
.article-body .button { margin-top: 14px; color: white; text-decoration: none; }
.article-callout, .article-disclosure { margin: 28px 0; padding: 22px 25px; border-radius: 12px; }
.article-callout { background: var(--teal-50); border-left: 4px solid var(--teal-500); }
.article-disclosure { background: var(--surface-alt); border: 1px solid var(--line); }
.article-callout strong, .article-disclosure strong { color: var(--navy-900); }
.article-callout p, .article-disclosure p { margin: 6px 0 0; font-size: .86rem; }
.responsive-table { overflow-x: auto; margin: 25px 0; }
table { width: 100%; border-collapse: collapse; font-size: .84rem; }
th, td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy-900); background: var(--teal-50); }
td { color: #43536a; }

.legal-page h2 { margin: 38px 0 13px; font-size: 1.65rem; }
.legal-page p { color: #43536a; }
.legal-page > .container > p:first-child { padding: 16px 18px; background: var(--amber-100); border-left: 4px solid var(--amber-500); border-radius: 8px; }

.prefooter { padding: 74px 0; color: white; background: linear-gradient(115deg, var(--navy-900), #0b3659); }
.prefooter-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; }
.prefooter h2 { color: white; }
.prefooter p:not(.eyebrow) { margin: 20px 0 0; color: #b9c9d8; }
.prefooter-action { display: grid; justify-items: start; gap: 13px; }
.prefooter-action span { color: #8fa7bd; font-size: .72rem; }
.site-footer { padding: 70px 0 24px; color: #a6b8c9; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.site-footer .brand { color: white; }
.footer-brand > p { max-width: 340px; margin-top: 20px; font-size: .84rem; }
.footer-brand .legal-identity { color: #718aa2; font-size: .72rem; }
.site-footer h3 { margin-bottom: 18px; color: white; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer .footer-grid > div:not(.footer-brand) a { margin-bottom: 10px; font-size: .8rem; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #6f879e; font-size: .68rem; }
.footer-bottom span:last-child { max-width: 650px; text-align: right; }

.not-found { display: grid; min-height: 650px; place-items: center; text-align: center; color: white; background: var(--navy-950); }
.not-found span { color: var(--teal-400); font-size: 1rem; font-weight: 900; letter-spacing: .18em; }
.not-found h1 { margin: 12px 0 20px; color: white; }
.not-found p { color: #a8bbcc; }
.not-found .button-row { justify-content: center; margin-top: 28px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(3rem, 6vw, 4.6rem); }
  .status-card { right: 8px; }
  .package-card { padding: 27px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 112px; display: none; align-items: stretch; gap: 0; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav > a:not(.button) { padding: 14px 9px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 13px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 58px; padding-top: 82px; padding-bottom: 94px; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 680px; }
  .three-grid, .package-grid, .article-grid { grid-template-columns: 1fr; }
  .trust-principles .three-grid { grid-template-columns: 1fr; }
  .split-heading, .relationship-grid, .about-grid, .deliverables-grid, .contact-grid, .faq-grid, .prefooter-grid { grid-template-columns: 1fr; gap: 40px; }
  .issue-grid { grid-template-columns: 1fr; }
  .package-card h3 { min-height: auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .process-steps::before { display: none; }
  .role-list li { grid-template-columns: 150px 1fr; }
  .section-title-row { align-items: start; flex-direction: column; }
  .featured-guide { grid-template-columns: 1fr; }
  .featured-guide img { max-height: 430px; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; }
  .article-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 66px 0; }
  .disclosure-bar { padding: 7px 10px; font-size: .63rem; line-height: 1.4; }
  .header-inner { min-height: 64px; }
  .site-nav { top: 102px; left: 14px; right: 14px; }
  .hero-grid { padding-top: 66px; padding-bottom: 80px; }
  .hero-lede { font-size: 1rem; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .status-card { position: relative; right: auto; bottom: auto; margin: -16px 10px 0; }
  .trust-card, .issue-card { padding: 23px; }
  .process-steps { grid-template-columns: 1fr; }
  .workflow-frame .button { position: relative; right: auto; bottom: auto; width: calc(100% - 30px); margin: -10px 15px 15px; }
  .role-list li { grid-template-columns: 1fr; gap: 3px; }
  .deliverable-list article { grid-template-columns: 44px 1fr; padding: 18px; }
  .page-hero, .article-hero { padding: 74px 0 58px; }
  .service-detail-grid article, .process-detail article { grid-template-columns: 1fr; gap: 16px; padding: 25px; }
  .service-detail-grid .check-list { grid-template-columns: 1fr; }
  .boundary-grid, .credential-grid, .field-row { grid-template-columns: 1fr; }
  .process-detail::before { display: none; }
  .case-form { padding: 22px; }
  .featured-guide > div { padding: 30px; }
  .article-aside { grid-template-columns: 1fr; }
  .article-meta { display: grid; gap: 5px; }
  .article-body h2 { font-size: 1.75rem; }
  .prefooter-action .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}
