:root {
  --ink: #141c25;
  --navy: #003e51;
  --teal: #075a70;
  --orange: #f6861f;
  --paper: #f7f9ff;
  --mist: #e7eefa;
  --line: #bdc9cf;
  --muted: #526169;
  --white: #fff;
  --shadow: 0 18px 50px rgba(0, 62, 81, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 16px/1.6 Inter, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, blockquote { margin-top: 0; font-family: "Hanken Grotesk", sans-serif; line-height: 1.1; }
h1 { max-width: 760px; margin-bottom: 24px; color: var(--navy); font-size: clamp(2.7rem, 6vw, 4.7rem); letter-spacing: -.035em; }
h2 { margin-bottom: 24px; color: var(--navy); font-size: clamp(2.15rem, 4vw, 3.35rem); letter-spacing: -.025em; }
h3 { font-size: 1.45rem; }
p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: 112px 0; }
.lead { max-width: 680px; color: var(--muted); font-size: 1.12rem; }
.section-label, .eyebrow { color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.center { text-align: center; }
.hidden, .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -50px; left: 20px; z-index: 100; padding: 10px 14px; color: white; background: var(--navy); }
.skip-link:focus { top: 10px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid rgba(189,201,207,.8); background: rgba(247,249,255,.94); backdrop-filter: blur(14px); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(0,62,81,.1); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--navy); font: 800 1.65rem/1 "Hanken Grotesk", sans-serif; text-decoration: none; letter-spacing: -.04em; }
.brand span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.button) { color: #344850; font-size: .84rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; }
.nav-links > a:hover { color: var(--orange); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.button { display: inline-flex; min-height: 52px; padding: 14px 25px; align-items: center; justify-content: center; border: 2px solid var(--orange); border-radius: 2px; color: white; background: var(--orange); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { background: #dd7211; border-color: #dd7211; transform: translateY(-2px); }
.button-outline { color: var(--navy); background: transparent; border-color: var(--navy); }
.button-outline:hover { color: white; background: var(--navy); border-color: var(--navy); }
.button-light { color: white; background: transparent; border-color: white; }
.button-light:hover { color: var(--navy); background: white; border-color: white; }
.button-small { min-height: 42px; padding: 9px 17px; }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero { padding-top: 150px; background: radial-gradient(circle at 85% 20%, #dbeaf0 0, transparent 32%), var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; }
.eyebrow { display: inline-flex; gap: 8px; padding: 8px 11px; color: var(--navy); background: var(--mist); }
.hero-image { position: relative; }
.hero-image::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; z-index: -1; border: 1px solid var(--teal); }
.hero-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.image-badge { position: absolute; right: -18px; bottom: 25px; display: flex; padding: 16px 20px; color: white; background: var(--navy); flex-direction: column; }
.image-badge span { font-size: .8rem; color: #bce9ff; text-transform: uppercase; letter-spacing: .08em; }
.trust-line { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 42px; color: #69777d; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.dark-section { color: white; background: var(--teal); }
.dark-section h2 { max-width: 820px; color: white; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 55px; }
.dark-card { min-height: 245px; padding: 28px; border: 1px solid #8fc9d8; background: rgba(0,62,81,.25); }
.dark-card h3 { margin-top: 46px; }
.dark-card p { color: #bce9ff; }
.card-number { color: #8ccbe7; font-size: .78rem; font-weight: 700; letter-spacing: .12em; }

.audience-section { padding: 0; background: white; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; width: min(100%, var(--max)); }
.audience-grid article { padding: 85px 64px; }
.audience-grid article + article { border-left: 1px solid var(--line); background: var(--mist); }
.check-list { margin: 28px 0 38px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 16px 0; padding-left: 27px; }
.check-list li::before { content: ""; position: absolute; top: .55em; left: 0; width: 10px; height: 10px; background: var(--teal); }

.story-section { background: white; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.story-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
blockquote { margin: 35px 0 0; padding-left: 22px; border-left: 4px solid var(--orange); color: var(--navy); font-size: 1.4rem; }
.expertise-section { background: var(--mist); }
.section-heading { display: flex; gap: 50px; align-items: end; justify-content: space-between; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 430px; color: var(--muted); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 50px 0 36px; }
.light-card { padding: 30px; border: 1px solid var(--line); background: white; }
.light-card h3 { color: var(--navy); }
.light-card p { color: var(--muted); }
.wide-image { width: 100%; height: 470px; object-fit: cover; }

.process-section { background: white; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 60px 0 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 35px; right: 10%; left: 10%; height: 1px; background: var(--line); }
.process-grid li { position: relative; text-align: center; }
.process-grid li > span { display: grid; width: 72px; height: 72px; margin: 0 auto 25px; place-items: center; border: 2px solid var(--teal); color: var(--navy); background: white; font: 700 1.25rem "Hanken Grotesk"; }
.process-grid p { color: var(--muted); }

.options-section { color: white; background: var(--navy); }
.options-section h2 { max-width: 760px; color: white; }
.options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.options-grid article { padding: 28px; border: 1px solid #397689; background: var(--teal); }
.options-grid span { color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.options-grid h3 { margin-top: 18px; }
.options-grid p { color: #bce9ff; }
.credentials-section { padding: 80px 0; background: white; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 38px; }
.credentials-grid article { padding-left: 20px; border-left: 3px solid var(--orange); }
.credentials-grid strong { color: var(--navy); font: 700 1.2rem "Hanken Grotesk"; }
.credentials-grid p { margin: 8px 0 0; color: var(--muted); }

.faq-section { background: var(--paper); }
.faq-list { margin-top: 45px; }
.faq-list details { margin-bottom: 12px; border: 1px solid var(--line); background: white; }
.faq-list summary { display: flex; padding: 24px; align-items: center; justify-content: space-between; color: var(--navy); font: 700 1.15rem "Hanken Grotesk"; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 1.5rem; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }

.form-section { background: white; }
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.info-box { margin-top: 35px; padding: 24px; border: 1px solid var(--line); background: var(--mist); }
.info-box strong { color: var(--navy); }
.info-box p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }
.claim-form { padding: 35px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.claim-form label { display: block; margin-bottom: 19px; color: var(--navy); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.claim-form input:not([type=checkbox]):not([type=file]), .claim-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: white; outline: none; resize: vertical; }
.claim-form input:focus, .claim-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(7,90,112,.1); }
.claim-form small { color: var(--muted); font-weight: 400; text-transform: none; }
.file-field { display: flex !important; min-height: 125px; padding: 22px; align-items: center; justify-content: center; border: 2px dashed var(--line); text-align: center; cursor: pointer; }
.file-field input { position: absolute; opacity: 0; pointer-events: none; }
.file-field span { display: flex; flex-direction: column; }
.file-field:hover { border-color: var(--teal); background: var(--paper); }
.consent { display: flex !important; gap: 10px; align-items: flex-start; color: var(--muted) !important; font-size: .78rem !important; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
.consent input { margin-top: 4px; accent-color: var(--teal); }

.final-cta { padding: 105px 0; color: white; background: var(--teal); text-align: center; }
.final-cta h2 { max-width: 900px; margin-inline: auto; color: white; }
.final-cta > .container > p:not(.section-label) { max-width: 680px; margin-inline: auto; color: #bce9ff; }
.center-row { justify-content: center; }
.site-footer { color: white; background: #002c3a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 45px; padding-top: 65px; padding-bottom: 55px; }
.brand-light { display: inline-block; margin-bottom: 20px; color: white; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 8px; }
.footer-grid strong { margin-bottom: 10px; color: #8ccbe7; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid p, .footer-grid span, .footer-grid a { color: #c2d3da; font-size: .88rem; }
.footer-bottom { display: flex; padding-top: 22px; padding-bottom: 22px; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom p { margin: 0; color: #9db5be; font-size: .75rem; }

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 76px; right: 0; left: 0; display: none; padding: 24px 20px; align-items: stretch; border-bottom: 1px solid var(--line); background: var(--paper); flex-direction: column; gap: 18px; }
  .nav-links.open { display: flex; }
  .hero-grid, .story-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 55px; }
  .problem-grid, .options-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { padding: 65px 35px; }
  .audience-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .story-grid { gap: 45px; }
  .story-image { max-width: 520px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 24px; }
  .process-grid::before { display: none; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.15rem; }
  .section { padding: 68px 0; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .image-badge { right: 0; bottom: 0; }
  .problem-grid, .expertise-grid, .process-grid, .options-grid, .credentials-grid, .footer-grid { grid-template-columns: 1fr; }
  .dark-card { min-height: 210px; }
  .audience-grid article { padding: 55px 20px; }
  .wide-image { height: 330px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .claim-form { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
