:root {
  --navy: #071a3a;
  --blue: #315f8d;
  --slate: #7f99b5;
  --mist: #edf4fa;
  --line: #dce6ef;
  --ink: #10213a;
  --body: #58708d;
  --white: #ffffff;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(7, 26, 58, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 82px 0 auto;
  height: 720px;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(49, 95, 141, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 95, 141, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #7db7ed; outline-offset: 4px; }
.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; top: 10px; left: 10px; z-index: 100; transform: translateY(-150%); padding: 10px 16px; background: var(--navy); color: #fff; border-radius: 8px; }
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { position: relative; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand img { width: 38px; height: 38px; }
.brand-copy { line-height: .86; font-weight: 800; font-size: 1.25rem; letter-spacing: -.045em; }
.brand-copy small { display: block; margin-top: 8px; font-size: .53rem; letter-spacing: .36em; font-weight: 700; color: var(--blue); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { color: var(--body); font-size: .91rem; text-decoration: none; font-weight: 600; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.nav .button, .nav a.button[aria-current="page"] { color: white; }
.menu-button { display: none; border: 0; background: transparent; color: var(--navy); width: 44px; height: 44px; border-radius: 9px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid var(--navy); border-radius: 10px; background: var(--navy); color: #fff; text-decoration: none; font-weight: 600; font-size: .92rem; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7, 26, 58, .17); }
.button.secondary { background: white; color: var(--navy); border-color: var(--line); }
.button.compact { min-height: 46px; padding: 0 20px; }
.arrow { font-size: 1.15em; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: var(--blue); text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--slate); }
.hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); gap: clamp(44px, 7vw, 92px); align-items: center; min-height: 690px; padding-block: 68px; }
.hero-copy h1, .page-hero h1 { margin: 24px 0 22px; max-width: 680px; color: var(--navy); font-size: clamp(3.35rem, 6vw, 5.75rem); line-height: .92; letter-spacing: -.068em; font-weight: 620; }
.hero-copy h1 span, .page-hero h1 span { color: var(--slate); }
.hero-copy > p, .page-hero > p { max-width: 580px; margin: 0; color: #405a77; font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.58; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-media { position: relative; min-height: 515px; border-radius: var(--radius); overflow: visible; }
.hero-media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: rgba(49, 95, 141, .15); mix-blend-mode: multiply; pointer-events: none; }
.hero-media > img { height: 515px; object-fit: cover; object-position: center 53%; border-radius: inherit; }
.status-card { position: absolute; left: -28px; bottom: 24px; z-index: 2; display: flex; align-items: center; gap: 15px; max-width: 290px; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow); }
.status-icon { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 50%; background: var(--navy); color: white; font-weight: 800; }
.status-card strong { display: block; font-size: .92rem; color: var(--navy); }
.status-card span { display: block; margin-top: 3px; color: var(--body); font-size: .76rem; line-height: 1.4; }
.trust-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { padding: 26px 4vw 26px 0; }
.trust-item + .trust-item { padding-left: 4vw; border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy); font-size: 1.45rem; letter-spacing: -.03em; }
.trust-item span { display: block; margin-top: 4px; color: var(--slate); font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; }
.section { padding-block: clamp(84px, 10vw, 140px); }
.section-tight { padding-block: 72px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading h2, .split-copy h2, .request-copy h1, .request-intro h1 { margin: 18px 0 0; color: var(--navy); font-size: clamp(2.65rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.06em; font-weight: 620; }
.section-heading h2 span, .split-copy h2 span { color: var(--slate); }
.section-heading p, .split-copy p { margin: 0; color: var(--body); font-size: 1.05rem; line-height: 1.65; }
.section-heading .text-link { justify-self: end; }
.text-link { color: var(--navy); text-decoration: none; font-weight: 750; border-bottom: 1px solid var(--slate); padding-bottom: 5px; }
.service-grid { display: grid; grid-template-columns: 1.1fr .85fr .85fr; gap: 18px; }
.service-card { position: relative; min-height: 420px; overflow: hidden; border-radius: 14px; color: white; background: var(--navy); }
.service-card:first-child { grid-row: span 2; min-height: 858px; }
.service-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-card:hover img { transform: scale(1.035); }
.service-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7,26,58,.92)); }
.service-card-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: 28px; }
.service-card small { display: block; margin-bottom: 12px; color: #d7e7f7; font-weight: 800; letter-spacing: .13em; }
.service-card h3 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -.035em; font-weight: 620; }
.service-card p { margin: 9px 0 0; max-width: 38ch; color: #d5e0ec; line-height: 1.5; font-size: .91rem; }
.service-card .round-arrow { position: absolute; z-index: 3; top: 18px; right: 18px; display: grid; place-items: center; width: 42px; height: 42px; background: rgba(255,255,255,.92); color: var(--navy); border-radius: 50%; text-decoration: none; }
.soft-section { background: var(--mist); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.split-media { min-height: 560px; overflow: hidden; border-radius: var(--radius); }
.split-media img { height: 560px; object-fit: cover; }
.split-copy p { margin-top: 24px; max-width: 56ch; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 650; }
.check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; background: white; color: var(--blue); font-size: .75rem; box-shadow: 0 0 0 1px var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; padding: 34px 28px 12px 0; }
.process-step + .process-step { padding-left: 28px; border-left: 1px solid var(--line); }
.process-step span { color: var(--slate); font-size: .73rem; letter-spacing: .14em; font-weight: 800; }
.process-step h3 { margin: 44px 0 10px; color: var(--navy); font-size: 1.35rem; }
.process-step p { margin: 0; color: var(--body); line-height: 1.55; font-size: .92rem; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(38px, 6vw, 72px); border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 24px 70px rgba(7,26,58,.07); }
.cta h2 { margin: 0; max-width: 700px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; font-weight: 620; }
.cta p { margin: 14px 0 0; color: var(--body); }
.page-hero { padding-block: clamp(80px, 11vw, 150px) 70px; }
.page-hero h1 { max-width: 900px; }
.page-hero > p { max-width: 680px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.service-detail:nth-child(3) { grid-template-columns: 1.05fr .95fr; }
.service-detail img { height: 100%; min-height: 440px; object-fit: cover; }
.service-detail-copy { display: flex; flex-direction: column; padding: 36px; }
.service-detail-copy small { color: var(--slate); font-weight: 800; letter-spacing: .13em; }
.service-detail-copy h2 { margin: auto 0 14px; color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 2.45rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 620; }
.service-detail-copy p { margin: 0; color: var(--body); line-height: 1.6; }
.lab-service-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(56px, 8vw, 110px); align-items: center; }
.lab-service-copy h2 { margin: 20px 0 24px; max-width: 760px; color: var(--navy); font-size: clamp(2.65rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.06em; font-weight: 620; }
.lab-service-copy > p { max-width: 67ch; margin: 0; color: var(--body); font-size: 1rem; line-height: 1.7; }
.lab-service-copy > p + p { margin-top: 18px; }
.lab-service-copy .lab-service-links { margin-top: 28px; color: var(--ink); font-weight: 600; }
.lab-service-links a { color: var(--blue); text-underline-offset: 4px; }
.lab-service-media { min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.lab-service-media img { height: 520px; object-fit: cover; object-position: center; }
.lab-service-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 8px 0 0; padding: 0; list-style: none; border-top: 1px solid #cddce9; border-bottom: 1px solid #cddce9; }
.lab-service-points li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 26px 24px 26px 0; color: var(--navy); font-size: .94rem; line-height: 1.48; font-weight: 650; }
.lab-service-points li + li { padding-left: 24px; border-left: 1px solid #cddce9; }
.lab-service-points span { color: var(--blue); font-size: .72rem; letter-spacing: .12em; }
.medical-assurance-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid #cddce9; border-bottom: 1px solid #cddce9; }
.medical-assurance-grid article { padding: 30px 34px 30px 0; }
.medical-assurance-grid article + article { padding-left: 34px; border-left: 1px solid #cddce9; }
.medical-assurance-grid span { color: var(--slate); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.medical-assurance-grid h3 { margin: 12px 0 9px; color: var(--navy); font-size: 1.15rem; }
.medical-assurance-grid p { margin: 0; color: var(--body); font-size: .9rem; line-height: 1.58; }
.request-layout { display: grid; grid-template-columns: .88fr 1.12fr; grid-template-areas: "media intro" "media form"; column-gap: clamp(48px, 7vw, 92px); row-gap: 0; padding-block: 64px 110px; align-items: start; }
.request-intro { grid-area: intro; }
.request-layout > .form-grid { grid-area: form; }
.request-media { position: sticky; top: 28px; grid-area: media; min-height: 760px; overflow: hidden; border-radius: var(--radius); }
.request-media img { height: 760px; object-fit: cover; }
.request-media::after { content: ""; position: absolute; inset: 0; background: rgba(42,82,122,.12); mix-blend-mode: multiply; }
.request-media .status-card { left: 22px; right: 22px; bottom: 22px; max-width: 330px; }
.request-copy h1, .request-intro h1 { margin-top: 16px; }
.request-copy > p, .request-intro > p { color: var(--body); line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; border: 1px solid #cbd9e6; border-radius: 9px; background: white; color: var(--ink); padding: 13px 15px; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,95,141,.12); }
.privacy-note { grid-column: 1 / -1; display: flex; gap: 12px; padding: 15px 17px; border-radius: 9px; background: var(--mist); color: #45617e; font-size: .82rem; line-height: 1.45; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 11px; color: var(--body); font-size: .82rem; line-height: 1.45; cursor: pointer; }
.form-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--navy); }
.form-security { grid-column: 1 / -1; min-height: 1px; }
.form-grid .button { grid-column: 1 / -1; width: 100%; border: 0; }
.form-grid .button:disabled { cursor: wait; opacity: .68; }
.form-success { grid-column: 1 / -1; margin-top: 0; padding: 18px; border: 1px solid #abc6de; background: var(--mist); border-radius: 10px; color: var(--navy); line-height: 1.5; }
.form-error { grid-column: 1 / -1; margin-top: 0; padding: 18px; border: 1px solid #d8a9a9; background: #fff6f6; border-radius: 10px; color: #7d2020; line-height: 1.5; }
.legal { max-width: 800px; padding-block: 80px 120px; }
.legal h1 { color: var(--navy); font-size: clamp(2.8rem, 5vw, 4.8rem); letter-spacing: -.06em; }
.legal h2 { margin-top: 44px; color: var(--navy); font-size: 1.45rem; }
.legal p, .legal li { color: var(--body); line-height: 1.72; }
.faq-hero { padding-bottom: 52px; }
.faq-hero h1 { max-width: 1050px; }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); gap: clamp(52px, 8vw, 110px); align-items: start; }
.faq-aside { position: sticky; top: 40px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: rgba(237,244,250,.72); }
.faq-kicker { margin: 0 0 18px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.faq-aside h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.02; letter-spacing: -.05em; font-weight: 620; }
.faq-aside p:not(.faq-kicker) { margin: 20px 0 0; color: var(--body); line-height: 1.62; }
.faq-aside .button { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 27px 58px 27px 0; color: var(--navy); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.35; font-weight: 650; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 20px; right: 0; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: 1.3rem; font-weight: 400; transition: transform .25s ease, color .25s ease, border-color .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--navy); border-color: #abc6de; }
.faq-answer { padding: 0 64px 28px 0; }
.faq-answer p { margin: 0; color: var(--body); font-size: 1rem; line-height: 1.72; }
.faq-privacy-note { max-width: 850px; margin: 22px auto 0; color: var(--body); font-size: .82rem; line-height: 1.55; text-align: center; }
.about-hero { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); gap: clamp(48px, 7vw, 92px); align-items: center; padding-block: 68px 0; }
.about-hero-copy h1 { margin: 24px 0 22px; max-width: 760px; color: var(--navy); font-size: clamp(3.35rem, 6vw, 5.75rem); line-height: .92; letter-spacing: -.068em; font-weight: 620; }
.about-hero-copy h1 span { color: var(--slate); }
.about-hero-copy > p { max-width: 620px; margin: 0; color: #405a77; font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.6; }
.about-hero-media { min-height: 610px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.about-hero-media img { height: 610px; object-fit: cover; object-position: center 34%; }
.about-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-proof div { padding: 26px 4vw 26px 0; }
.about-proof div + div { padding-left: 4vw; border-left: 1px solid var(--line); }
.about-proof strong { display: block; color: var(--navy); font-size: 1.45rem; letter-spacing: -.03em; }
.about-proof span { display: block; margin-top: 4px; color: var(--slate); font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; }
.about-story { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.about-story-copy h2 { margin: 20px 0 24px; color: var(--navy); font-size: clamp(2.65rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.06em; font-weight: 620; }
.about-story-copy p { margin: 0; color: var(--body); font-size: 1rem; line-height: 1.72; }
.about-story-copy p + p { margin-top: 18px; }
.about-story-media { min-height: 500px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.about-story-media img { height: 500px; object-fit: cover; object-position: center; }
.industry-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.industry-list div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; min-height: 92px; border-bottom: 1px solid var(--line); }
.industry-list div:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.industry-list span { color: var(--slate); font-size: .71rem; font-weight: 800; letter-spacing: .14em; }
.industry-list strong { color: var(--navy); font-size: 1.08rem; }
.process-page-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: clamp(48px, 7vw, 92px); align-items: center; padding-block: 68px 84px; }
.process-page-hero-copy h1 { margin: 24px 0 22px; max-width: 760px; color: var(--navy); font-size: clamp(3.35rem, 6vw, 5.75rem); line-height: .92; letter-spacing: -.068em; font-weight: 620; }
.process-page-hero-copy h1 span { color: var(--slate); }
.process-page-hero-copy > p { max-width: 610px; margin: 0; color: #405a77; font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.6; }
.process-page-hero-media { min-height: 570px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--mist); }
.process-page-hero-media img { height: 570px; object-fit: cover; object-position: center 20%; }
.process-visual-section { padding-bottom: clamp(84px, 10vw, 140px); }
.section-intro-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: clamp(40px, 7vw, 90px); align-items: end; margin-bottom: 34px; }
.section-intro-row span { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.section-intro-row h2 { margin: 14px 0 0; color: var(--navy); font-size: clamp(2.4rem, 4.8vw, 4.35rem); line-height: .98; letter-spacing: -.06em; font-weight: 620; }
.section-intro-row p { margin: 0; color: var(--body); font-size: 1.02rem; line-height: 1.65; }
.tracking-asset-frame { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 22px 65px rgba(7,26,58,.07); }
.tracking-asset-frame img { width: 100%; height: auto; }
.tracking-swipe-cue { display: none; }
.order-process { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cddce9; border-bottom: 1px solid #cddce9; }
.order-process article { min-height: 250px; padding: 30px 32px 30px 0; }
.order-process article:nth-child(3n + 2), .order-process article:nth-child(3n + 3) { padding-left: 32px; border-left: 1px solid #cddce9; }
.order-process article:nth-child(n + 4) { border-top: 1px solid #cddce9; }
.order-process span { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.order-process h3 { margin: 44px 0 10px; color: var(--navy); font-size: 1.24rem; line-height: 1.25; }
.order-process p { margin: 0; color: var(--body); font-size: .92rem; line-height: 1.58; }
.visibility-section .tracking-asset-frame { border-color: rgba(220,230,239,.75); }
.route-detail { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(48px, 7vw, 90px); align-items: center; }
.route-detail > *, .section-intro-row > * { min-width: 0; }
.route-detail-copy h2 { margin: 20px 0 24px; color: var(--navy); font-size: clamp(2.4rem, 4.8vw, 4.35rem); line-height: .98; letter-spacing: -.06em; font-weight: 620; }
.route-detail-copy > p { margin: 0; color: var(--body); line-height: 1.7; }
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .7fr); gap: 36px; }
.footer-grid h3 { margin: 0 0 16px; color: var(--navy); font-size: .88rem; }
.footer-grid p, .footer-grid a { color: var(--body); font-size: .87rem; line-height: 1.7; }
.footer-grid a { display: block; text-decoration: none; }
.footer-grid a:hover { color: var(--navy); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--slate); font-size: .76rem; }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.mobile-service-cue, .mobile-action-bar { display: none; }
@media (min-width: 981px) {
  .home-page .hero { column-gap: clamp(44px, 7vw, 92px); row-gap: 38px; padding-bottom: 52px; }
  .home-page #services { padding-top: 96px; padding-bottom: 108px; }
  .home-page #coverage { padding-block: 108px 96px; }
  .home-page #process { padding-block: 96px; }
  .home-page #about { padding-block: 96px; }
}
@media (max-width: 980px) {
  .menu-button { display: grid; place-items: center; }
  .nav { position: absolute; top: 82px; left: 0; right: 0; display: none; padding: 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav[data-open="true"] { display: grid; gap: 18px; }
  .nav .button { width: 100%; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-media { min-height: 480px; }
  .hero-media > img { height: 480px; }
  .status-card { left: 18px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:first-child { grid-row: auto; min-height: 420px; }
  .split, .request-layout { grid-template-columns: 1fr; }
  .request-layout { grid-template-areas: "intro" "media" "form"; }
  .request-media { position: relative; top: 0; min-height: 520px; }
  .request-media img { height: 520px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 0; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .lab-service-feature { grid-template-columns: 1fr; }
  .lab-service-points { grid-template-columns: repeat(2, 1fr); }
  .lab-service-points li:nth-child(3) { padding-left: 0; border-top: 1px solid #cddce9; border-left: 0; }
  .lab-service-points li:nth-child(4) { border-top: 1px solid #cddce9; }
  .medical-assurance-grid { grid-template-columns: 1fr; }
  .medical-assurance-grid article, .medical-assurance-grid article + article { padding: 24px 0; border-left: 0; border-top: 1px solid #cddce9; }
  .medical-assurance-grid article:first-child { border-top: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: relative; top: 0; }
  .about-hero, .about-story { grid-template-columns: 1fr; }
  .about-hero-media { min-height: 540px; }
  .about-hero-media img { height: 540px; }
  .process-page-hero { grid-template-columns: 1fr; }
  .process-page-hero-media { min-height: 520px; }
  .process-page-hero-media img { height: 520px; }
  .section-intro-row, .route-detail { grid-template-columns: 1fr; }
  .order-process { grid-template-columns: repeat(2, 1fr); }
  .order-process article:nth-child(3n + 2), .order-process article:nth-child(3n + 3) { padding-left: 0; border-left: 0; }
  .order-process article:nth-child(even) { padding-left: 30px; border-left: 1px solid #cddce9; }
  .order-process article:nth-child(n + 3) { border-top: 1px solid #cddce9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 0; padding-block: 44px 70px; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .actions { align-items: stretch; }
  .actions .button { flex: 1 1 100%; }
  .hero-media, .hero-media > img { min-height: 420px; height: 420px; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item, .trust-item + .trust-item { padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading .text-link { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child { min-height: 420px; }
  .split-media, .split-media img { min-height: 460px; height: 460px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-step h3 { margin-top: 20px; }
  .cta { align-items: flex-start; flex-direction: column; }
  .service-detail, .service-detail:nth-child(3) { grid-template-columns: 1fr; }
  .service-detail img { min-height: 300px; height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .privacy-note, .form-consent, .form-security, .form-grid .button { grid-column: auto; }
  .request-copy { order: 1; }
  .request-media { order: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 680px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  body.nav-open { overflow: hidden; }
  body.request-page { padding-bottom: 0; }
  body::before { position: absolute; inset: 64px 0 auto; height: 500px; background-size: 40px 40px; }
  .site-header { position: sticky; top: 0; }
  .header-inner { min-height: 64px; }
  .brand img { width: 34px; height: 34px; }
  .brand-copy { font-size: 1.08rem; }
  .menu-button { position: relative; z-index: 32; font-size: 0; }
  .menu-button::before, .menu-button::after { content: ""; position: absolute; left: 11px; width: 22px; height: 1.5px; background: currentColor; transition: transform .25s ease, top .25s ease; }
  .menu-button::before { top: 17px; }
  .menu-button::after { top: 26px; }
  .menu-button[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
  .nav { position: fixed; z-index: 31; inset: 0; top: 0; align-content: start; gap: 0; padding: 104px 28px calc(28px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.985); border: 0; box-shadow: none; }
  .nav[data-open="true"] { display: grid; }
  .nav a { padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 1.25rem; font-weight: 600; }
  .nav .button { margin-top: 26px; border-bottom: 0; font-size: 1rem; }
  .hero { display: flex; flex-direction: column; gap: 26px; padding-block: 28px 52px; }
  .hero > *, .request-layout > *, .form-grid, .field { min-width: 0; }
  .hero-copy h1, .page-hero h1, .request-intro h1 { max-width: 11ch; margin: 18px 0; font-size: clamp(2.65rem, 11.5vw, 3.35rem); line-height: .98; letter-spacing: -.055em; font-weight: 620; overflow-wrap: break-word; }
  .section-heading h2, .split-copy h2, .request-copy h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.02; font-weight: 620; }
  .cta h2 { font-size: clamp(1.9rem, 7.5vw, 2.4rem); line-height: 1.04; font-weight: 620; }
  .hero-copy > p, .page-hero > p, .section-heading p, .split-copy p { font-size: 1rem; line-height: 1.58; }
  .hero-copy .actions { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 10px; margin-top: 24px; }
  .hero-copy .actions .button { width: 100%; min-width: 0; padding-inline: 12px; font-size: .82rem; }
  .hero-media { width: 100%; min-height: 0; margin-top: 4px; overflow: visible; }
  .hero-media > img { min-height: 0; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; }
  .status-card { position: relative; left: auto; bottom: auto; max-width: none; margin: -30px 12px 0; padding: 14px 16px; }
  .status-card > span:last-child { min-width: 0; }
  .trust-row { width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-item, .trust-item + .trust-item { min-width: 0; padding: 16px 10px; border-top: 0; border-left: 1px solid var(--line); }
  .trust-item:first-child { border-left: 0; }
  .trust-item strong { font-size: 1rem; line-height: 1.15; }
  .trust-item span { font-size: .6rem; line-height: 1.35; letter-spacing: .06em; }
  .section { padding-block: 64px; }
  .section-heading { gap: 18px; margin-bottom: 28px; }
  .service-grid { width: calc(100vw - 14px); grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(82vw, 340px); gap: 12px; margin-right: -14px; padding-right: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card, .service-card:first-child { grid-row: auto; min-height: 0; aspect-ratio: .78; scroll-snap-align: start; }
  .service-card-copy { padding: 22px; }
  .service-card .round-arrow { width: 48px; height: 48px; }
  .mobile-service-cue { display: block; margin: 14px 0 0; color: var(--slate); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
  .split { gap: 30px; }
  .split-media, .split-media img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  #coverage .split-copy { order: 1; }
  #coverage .split-media { order: 2; }
  .process-grid { position: relative; }
  .process-grid::before { content: ""; position: absolute; top: 0; bottom: 0; left: 7px; width: 1px; background: var(--line); }
  .process-step, .process-step + .process-step { margin-left: 7px; padding: 0 0 30px 30px; border: 0; }
  .process-step:last-child { padding-bottom: 0; }
  .process-step::before { content: ""; position: absolute; top: 3px; left: -5px; width: 9px; height: 9px; border: 3px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--line); }
  .process-step h3 { margin: 14px 0 8px; }
  .page-hero { padding-block: 38px 30px; }
  .service-detail { min-height: 0; }
  .service-detail img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .service-detail-copy { min-height: 270px; padding: 24px; }
  .lab-service-feature { gap: 34px; }
  .lab-service-copy h2 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.02; }
  .lab-service-media, .lab-service-media img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .lab-service-points { grid-template-columns: 1fr; margin-top: 0; }
  .lab-service-points li, .lab-service-points li + li, .lab-service-points li:nth-child(3), .lab-service-points li:nth-child(4) { padding: 20px 0; border-top: 1px solid #cddce9; border-left: 0; }
  .lab-service-points li:first-child { border-top: 0; }
  .faq-hero h1 { max-width: none; }
  .faq-layout { gap: 34px; padding-top: 30px; }
  .faq-aside { padding: 24px; }
  .faq-aside h2 { font-size: 2rem; }
  .faq-item summary { padding: 22px 50px 22px 0; font-size: 1.05rem; }
  .faq-item summary::after { top: 16px; width: 34px; height: 34px; }
  .faq-answer { padding: 0 8px 24px 0; }
  .about-hero { gap: 28px; padding-top: 34px; }
  .about-hero-copy h1 { max-width: 11ch; margin: 18px 0; font-size: clamp(2.65rem, 11.5vw, 3.35rem); line-height: .98; letter-spacing: -.055em; }
  .about-hero-copy > p { font-size: 1rem; line-height: 1.58; }
  .about-hero-media, .about-hero-media img { min-height: 0; height: auto; aspect-ratio: 4 / 5; }
  .about-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 0; }
  .about-proof div, .about-proof div + div { min-width: 0; padding: 16px 10px; }
  .about-proof strong { font-size: 1rem; line-height: 1.15; }
  .about-proof span { font-size: .6rem; line-height: 1.35; letter-spacing: .06em; }
  .about-story { gap: 30px; }
  .about-story-copy h2 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.02; }
  .about-story-media, .about-story-media img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .industry-list { grid-template-columns: 1fr; }
  .industry-list div, .industry-list div:nth-child(even) { min-height: 78px; padding-left: 0; border-left: 0; }
  .process-page-hero { gap: 28px; padding-block: 34px 56px; }
  .process-page-hero-copy h1 { max-width: 11ch; margin: 18px 0; font-size: clamp(2.65rem, 11.5vw, 3.35rem); line-height: .98; letter-spacing: -.055em; }
  .process-page-hero-copy > p { font-size: 1rem; line-height: 1.58; }
  .process-page-hero-media, .process-page-hero-media img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .process-page-hero-media img { object-fit: cover; object-position: center 14%; }
  .process-visual-section { padding-bottom: 64px; }
  .section-intro-row { gap: 18px; margin-bottom: 24px; }
  .section-intro-row h2, .route-detail-copy h2 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .tracking-asset-frame { width: 100%; overflow-x: auto; border-radius: 14px; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .tracking-asset-frame img { width: 760px; max-width: none; scroll-snap-align: start; }
  .tracking-asset-frame.wide img { width: 880px; }
  .tracking-asset-frame.route img { width: 760px; }
  .tracking-swipe-cue { display: block; margin: 12px 0 0; color: var(--slate); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
  .order-process { grid-template-columns: 1fr; }
  .order-process article, .order-process article:nth-child(even), .order-process article:nth-child(3n + 2), .order-process article:nth-child(3n + 3) { min-height: 0; padding: 24px 0; border-left: 0; border-top: 1px solid #cddce9; }
  .order-process article:first-child { border-top: 0; }
  .order-process h3 { margin-top: 16px; }
  .route-detail { gap: 30px; }
  .request-layout { grid-template-areas: "intro" "media" "form"; gap: 24px; padding-block: 30px 72px; }
  .request-media { position: relative; top: 0; grid-area: media; margin: 0; min-height: 0; }
  .request-media img { min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .request-media .status-card { left: auto; right: auto; bottom: auto; max-width: none; }
  .request-intro { grid-area: intro; }
  .request-layout > .form-grid { grid-area: form; margin-top: 4px; }
  .field input, .field select, .field textarea { font-size: 1rem; }
  .mobile-action-bar { position: fixed; z-index: 30; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; padding: 8px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
  .mobile-action-bar a { display: grid; place-items: center; min-height: 48px; border: 1px solid var(--line); border-radius: 10px; color: var(--navy); text-decoration: none; font-weight: 600; }
  .mobile-action-bar .primary { border-color: var(--navy); background: var(--navy); color: white; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
