@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family:'Newsreader';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/fonts/newsreader-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Newsreader';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/fonts/newsreader-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family:'Inter Fallback';
  src:local('Arial');
  ascent-override:90.44%;
  descent-override:22.52%;
  line-gap-override:0%;
  size-adjust:107.12%;
}
@font-face{
  font-family:'Newsreader Fallback';
  src:local('Georgia');
  ascent-override:88.4%;
  descent-override:24.7%;
  line-gap-override:0%;
  size-adjust:101.3%;
}

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

:root{
  --ink:#1B4771;
  --ink-deep:#16315F;
  --text:#22384A;
  --slate:#46617A;
  --teal:#2C6CB0;
  --teal-dark:#215489;
  --gold:#C99A2E;
  --mist:#E4ECF5;
  --mist-soft:#F2F6FA;
  --line:#D8E1EB;
  --paper:#FFFFFF;
  --ok-green:#1E7A3C;
  --closed-red:#B3261E;
  --radius:14px;
  --maxw:1140px;
  --font-display:'Newsreader','Newsreader Fallback',Georgia,serif;
  --font-body:'Inter','Inter Fallback',system-ui,sans-serif;
}

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--paper);
  -webkit-text-size-adjust:100%;
}

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

a{ color:var(--teal); }
a:hover{ color:var(--teal-dark); }

:focus-visible{
  outline:3px solid var(--ink);
  outline-offset:2px;
  border-radius:3px;
}
.on-dark :focus-visible, .topbar :focus-visible, .site-footer :focus-visible, .hero :focus-visible{
  outline-color:#FFD98A;
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:#fff; padding:12px 18px; border-radius:0 0 8px 0;
  font-weight:600; text-decoration:none;
}
.skip-link:focus{ left:0; color:#fff; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 20px; }

h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); line-height:1.2; margin:0 0 14px; font-weight:600; }
h1{ font-size:clamp(30px,5vw,46px); }
h2{ font-size:clamp(26px,4vw,36px); }
h3{ font-size:clamp(19px,2.5vw,23px); }
p{ margin:0 0 16px; }
.lead{ font-size:18px; color:var(--slate); }
.kicker{
  display:inline-block; font-family:var(--font-body); font-size:13px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--teal); margin-bottom:10px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:44px; padding:10px 22px; border-radius:10px;
  font-family:var(--font-body); font-size:16px; font-weight:600; text-decoration:none;
  border:2px solid transparent; cursor:pointer; touch-action:manipulation;
  transition:background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn-primary{ background:var(--teal); color:#fff; }
.btn-primary:hover{ background:var(--teal-dark); color:#fff; }
.btn-secondary{ background:#fff; color:var(--ink); border-color:var(--ink); }
.btn-secondary:hover{ background:var(--mist); color:var(--ink-deep); }
.btn-gold{ background:var(--gold); color:#231A05; }
.btn-gold:hover{ background:#B3881F; color:#231A05; }
.btn-outline-light{ background:transparent; color:#fff; border-color:#fff; }
.btn-outline-light:hover{ background:rgba(255,255,255,.14); color:#fff; }
.btn svg{ flex:none; }

/* Top bar */
.topbar{
  background:var(--ink-deep); color:#DCE8F5; font-size:14px;
}
.topbar .wrap{
  display:flex; flex-wrap:wrap; gap:6px 22px; align-items:center; justify-content:space-between;
  padding-top:7px; padding-bottom:7px;
}
.topbar a{ color:#fff; text-decoration:none; }
.topbar a:hover{ text-decoration:underline; color:#fff; }
.topbar-info{ display:flex; flex-wrap:wrap; gap:6px 22px; align-items:center; }
.topbar-links{ display:flex; flex-wrap:wrap; gap:6px 18px; align-items:center; }
.topbar-links a{ font-weight:600; letter-spacing:.01em; }
.topbar-links a[aria-current="page"]{ text-decoration:underline; text-underline-offset:3px; }
.topbar-item{ display:inline-flex; align-items:center; gap:7px; min-height:30px; }
.topbar-item svg{ flex:none; opacity:.85; }
.open-dot{
  width:10px; height:10px; border-radius:50%; background:#9AA9BC; display:inline-block; flex:none;
}
.open-dot.is-open{ background:#4CC46E; }
.open-dot.is-closed{ background:#F28B82; }
.open-label{ font-weight:600; }
@media (max-width:767px){
  .topbar .hide-sm{ display:none; }
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:100; background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:0 1px 0 rgba(27,71,113,.04);
}
.site-header .wrap{
  display:flex; align-items:center; gap:18px;
  min-height:74px;
}
.brand{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; margin-right:auto; }
.brand img{ height:44px; width:auto; }
.primary-nav{ display:none; }
.header-ctas{ display:none; }
.header-call{ display:inline-flex; }
@media (min-width:1024px){
  .primary-nav{ display:flex; align-items:center; gap:4px; }
  .header-ctas{ display:flex; align-items:center; gap:10px; }
  .header-call{ display:none; }
  .menu-btn{ display:none; }
}
.header-ctas .btn{
  white-space:nowrap; min-height:42px; padding:8px 18px;
  font-size:15px; border-radius:999px;
}
.header-ctas .btn-secondary{ border-width:1.5px; }
.primary-nav > ul{ display:flex; list-style:none; margin:0; padding:0; gap:4px; }
.primary-nav a, .navlink{
  display:inline-flex; align-items:center; gap:6px; padding:10px 14px; min-height:44px;
  color:var(--ink); font-weight:600; text-decoration:none; border-radius:8px; font-size:15.5px;
  white-space:nowrap;
}
.primary-nav a:hover, .navlink:hover{ background:var(--mist-soft); color:var(--ink-deep); }
.primary-nav a[aria-current="page"]{ color:var(--teal); }
@media (min-width:1024px){
  .site-header .wrap{ gap:10px; }
  .site-header .brand img{ height:38px !important; }
  .primary-nav > ul{ gap:0; }
  .primary-nav a{ padding:10px 7px; font-size:13.5px; }
  .header-ctas{ gap:8px; }
  .header-ctas .btn{ padding:7px 12px; font-size:13px; min-height:38px; }
}

.nav-dd{ position:relative; }
.nav-dd-btn{
  display:inline-flex; align-items:center; gap:6px; padding:10px 14px; min-height:44px;
  background:none; border:0; color:var(--ink); font:inherit; font-weight:600; border-radius:8px;
  cursor:pointer; font-size:15.5px;
}
.nav-dd-btn:hover{ background:var(--mist-soft); }
.nav-dd-menu{
  position:absolute; top:calc(100% + 4px); left:0; min-width:280px;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  box-shadow:0 12px 34px rgba(22,49,95,.14); padding:8px; margin:0; list-style:none;
  display:none;
}
.nav-dd.open .nav-dd-menu{ display:block; }
.nav-dd-menu a{
  display:flex; align-items:center; gap:10px; padding:11px 12px; border-radius:8px;
  color:var(--ink); text-decoration:none; font-weight:500; font-size:15px; min-height:44px;
}
.nav-dd-menu a:hover{ background:var(--mist-soft); }
.nav-dd-menu a svg{ color:var(--teal); flex:none; }
.dd-caret{ transition:transform .15s ease; }
.nav-dd.open .dd-caret{ transform:rotate(180deg); }

.menu-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:10px; background:none; border:1px solid var(--line);
  cursor:pointer; color:var(--ink);
}
@media (min-width:1024px){ .menu-btn{ display:none; } }

/* Drawer */
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(17,32,48,.5); z-index:140; opacity:0;
  pointer-events:none; transition:opacity .15s ease;
}
.drawer-backdrop.show{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; bottom:0; z-index:150; width:100%;
  background:#fff; transform:translateX(100%); transition:transform .2s ease-out;
  overflow-y:auto; padding:18px 20px 32px; visibility:hidden;
}
.drawer.show{ transform:translateX(0); visibility:visible; }
@media (min-width:640px){ .drawer{ width:400px; } }
@media (prefers-reduced-motion: reduce){
  .drawer{ transition:none; } .drawer-backdrop{ transition:none; }
}
.drawer-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.drawer-close{
  width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center;
  background:none; border:1px solid var(--line); border-radius:10px; cursor:pointer; color:var(--ink);
}
.drawer-brand img{ height:38px; width:auto; }
.drawer nav ul{ list-style:none; margin:0; padding:0; }
.drawer nav a{
  display:flex; align-items:center; min-height:48px; padding:12px 8px;
  color:var(--ink); font-weight:600; text-decoration:none; font-size:17px;
  border-bottom:1px solid var(--mist);
}
.drawer-sub-btn{
  display:flex; width:100%; align-items:center; justify-content:space-between;
  min-height:48px; padding:12px 8px; background:none; border:0; border-bottom:1px solid var(--mist);
  font:inherit; font-weight:600; font-size:17px; color:var(--ink); cursor:pointer;
}
.drawer-sub{ display:none; padding-left:10px; }
.drawer-sub.open{ display:block; }
.drawer .drawer-utility{ border-top:1px solid var(--line); margin-top:10px; padding-top:10px; }
.drawer-ctas{ display:flex; flex-direction:column; gap:10px; margin:18px 0; }
.drawer-ctas .btn{ width:100%; }
.drawer-hours{
  background:var(--mist-soft); border-radius:12px; padding:14px 16px; font-size:15px;
}
.drawer-hours strong{ color:var(--ink); }

/* Sticky bottom bar (mobile) */
.bottombar{
  position:fixed; left:0; right:0; bottom:0; z-index:120;
  display:none; gap:10px; padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.96); backdrop-filter:blur(8px);
  border-top:1px solid var(--line);
  transform:translateY(110%); transition:transform .2s ease;
}
.bottombar.show{ transform:translateY(0); }
@media (max-width:1023px){ .bottombar{ display:flex; } }
.bottombar .btn{ flex:1; min-height:48px; }

/* Hero */
.hero{
  background:linear-gradient(180deg,var(--mist-soft) 0%,#FFFFFF 100%);
  color:var(--text); position:relative; overflow:hidden;
}
.hero .wrap{
  display:grid; gap:40px; padding-top:48px; padding-bottom:56px;
}
@media (min-width:900px){
  .hero .wrap{ grid-template-columns:1.05fr .95fr; align-items:center; padding-top:72px; padding-bottom:80px; }
}
.hero h1{ color:var(--ink); margin-bottom:18px; }
.hero h1 em{ font-style:normal; color:var(--teal); border-bottom:3px solid var(--mist); }
.hero p{ color:var(--slate); font-size:18px; max-width:56ch; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:12px; margin:24px 0 20px; }
.hero-proof{ display:flex; flex-wrap:wrap; gap:8px 18px; font-size:14.5px; color:var(--slate); }
.hero-proof span{ display:inline-flex; align-items:center; gap:7px; }
.hero-proof a{ color:var(--teal-dark); }
.hero-proof svg{ color:var(--teal); flex:none; }

/* Hero dashboard card (matches operator mockup) */
.hero-dash{
  background:#fff; border:1px solid var(--line); border-radius:18px;
  box-shadow:0 24px 55px -26px rgba(27,71,113,.32); padding:22px;
}
.dash-top{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:16px; border-bottom:1px solid var(--line); margin-bottom:16px;
}
.dash-top .who{ display:flex; align-items:center; gap:11px; }
.dash-top .who strong{ font-size:14.5px; color:var(--ink); }
.dash-top .who small{ display:block; color:var(--slate); font-size:12px; font-weight:500; }
.avatar{
  width:40px; height:40px; border-radius:10px; background:var(--ink); color:#fff;
  display:grid; place-items:center; font-weight:600; font-size:15px;
}
.tag{
  font-size:11px; font-weight:600; color:var(--teal); background:var(--mist);
  padding:5px 10px; border-radius:20px; letter-spacing:.02em; flex:none;
}
.dash-label{
  font-size:10.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--slate); margin:4px 0 10px;
}
.dash-row{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-bottom:16px; }
.dash-row:last-child{ margin-bottom:0; }
.dcard{
  background:#F4F7FB; border:1px solid var(--line); border-radius:11px;
  padding:12px 12px 13px; position:relative;
}
.dcheck{
  position:absolute; top:10px; right:10px; width:18px; height:18px; border-radius:50%;
  background:var(--ink); color:#fff; display:grid; place-items:center; font-size:10px;
}
.dc-t{ font-size:12.5px; font-weight:700; color:var(--ink); line-height:1.2; padding-right:20px; }
.dc-s{ font-size:11px; color:var(--slate); margin-top:4px; line-height:1.3; }
.dc-readings{ margin-top:7px; display:flex; flex-direction:column; gap:3px; }
.dc-readings span{ font-size:11px; color:var(--slate); }
.dc-readings b{ color:var(--ink); font-family:var(--font-display); font-size:14px; margin-left:3px; }
.dstat{ background:#fff; border:1px solid var(--line); border-radius:11px; padding:12px; }
.ds-l{ font-size:11px; font-weight:600; letter-spacing:.02em; text-transform:uppercase; color:var(--slate); }
.ds-badge{ display:inline-block; font-size:12px; font-weight:700; padding:3px 10px; border-radius:20px; margin:7px 0 5px; }
.ds-badge.ok{ background:var(--ink); color:#fff; }
.ds-badge.improving{ background:var(--mist); color:var(--teal-dark); }
.ds-sub{ font-size:10.5px; color:var(--slate); line-height:1.3; }
.ds-flags{ display:flex; flex-wrap:wrap; gap:4px; margin:8px 0 6px; }
.ds-flags span{
  font-size:9.5px; font-weight:600; color:var(--text); background:#EEF2F7;
  border:1px solid var(--line); border-radius:5px; padding:2px 5px;
}
@media (max-width:420px){
  .dash-row{ grid-template-columns:1fr 1fr; }
}

/* Sections */
.section{ padding:60px 0; }
.section-mist{ background:var(--mist-soft); }
.section-ink{ background:var(--ink-deep); color:#D9E5F2; }
.section-ink h2, .section-ink h3{ color:#fff; }
.section-ink p{ color:#C9D9EA; }
.section-head{ max-width:760px; margin-bottom:34px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.grid{ display:grid; gap:20px; }
@media (min-width:640px){ .grid-2{ grid-template-columns:repeat(2,1fr);} .grid-3sm{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:900px){ .grid-3{ grid-template-columns:repeat(3,1fr);} .grid-3sm{ grid-template-columns:repeat(3,1fr);} .grid-4{ grid-template-columns:repeat(4,1fr);} }
@media (min-width:640px) and (max-width:899px){ .grid-3{ grid-template-columns:repeat(2,1fr);} .grid-4{ grid-template-columns:repeat(2,1fr);} }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; box-shadow:0 2px 10px rgba(22,49,95,.05);
}
.card h3{ margin-top:14px; }
.card .icon-chip{
  width:46px; height:46px; border-radius:12px; background:var(--mist);
  display:inline-flex; align-items:center; justify-content:center; color:var(--teal);
}
.card-link{
  display:inline-flex; align-items:center; gap:6px; font-weight:600; color:var(--teal);
  text-decoration:none; margin-top:6px;
}
.card-link:hover{ text-decoration:underline; }

.chip-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:9px 16px; font-weight:600; color:var(--ink); font-size:15px;
}
.chip svg{ color:var(--teal); flex:none; }
.section-ink .chip{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22); color:#fff; }
.section-ink .chip svg{ color:#F5CE74; }

/* Steps */
.step-card{
  background:linear-gradient(160deg,var(--teal) 0%,var(--teal-dark) 100%);
  color:#fff; border-radius:var(--radius); padding:26px;
}
.step-card .step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.18);
  font-weight:700; font-size:19px; font-family:var(--font-body);
}
.step-card h3{ color:#fff; margin-top:14px; }
.step-card p{ color:#E2ECF7; margin:0; }

/* Hours table */
.hours-table{ width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.hours-table caption{ text-align:left; padding:0 0 12px; font-weight:600; color:var(--ink); font-family:var(--font-display); font-size:20px; }
.hours-table th, .hours-table td{ text-align:left; padding:11px 16px; border-bottom:1px solid var(--mist); font-size:15.5px; }
.hours-table tr:last-child th, .hours-table tr:last-child td{ border-bottom:0; }
.hours-table th{ color:var(--ink); font-weight:600; width:50%; }
.hours-table tr.today th, .hours-table tr.today td{ background:var(--mist-soft); }

/* Insurance / partner logo rows */
.logo-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media (min-width:640px){ .logo-grid{ grid-template-columns:repeat(3,1fr);} }
@media (min-width:900px){ .logo-grid{ grid-template-columns:repeat(5,1fr);} }
.logo-tile{
  background:#fff; border:0; border-radius:12px; padding:18px 14px; box-shadow:none;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; min-height:110px;
}
.logo-tile img{ max-height:78px; max-width:100%; width:auto; }
.logo-tile .ins-name{ font-size:13.5px; font-weight:600; color:var(--ink); text-align:center; line-height:1.3; }
.partner-row{ display:flex; flex-wrap:wrap; align-items:center; gap:26px 44px; }
.partner-row img{ max-height:56px; width:auto; }

/* Team */
.team-card{ text-align:center; }
.team-card img{ border-radius:14px; width:100%; aspect-ratio:1/1; object-fit:cover; object-position:top; background:var(--mist); }
.team-card h3{ margin:14px 0 2px; font-size:19px; }
.team-card p{ color:var(--slate); font-size:15px; margin:0; }

/* FAQ accordion */
.faq{ max-width:820px; }
.faq details{
  background:#fff; border:1px solid var(--line); border-radius:12px; margin-bottom:12px;
  overflow:hidden;
}
.faq summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px 20px; font-weight:600; color:var(--ink); font-size:16.5px; min-height:44px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .faq-caret{ flex:none; transition:transform .15s ease; color:var(--teal); }
.faq details[open] summary .faq-caret{ transform:rotate(180deg); }
.faq .faq-a{ padding:0 20px 18px; color:var(--text); }
.faq .faq-a p{ margin:0 0 10px; }
.faq .faq-a p:last-child{ margin:0; }

/* CTA band */
.cta-band{
  background:linear-gradient(140deg,var(--teal) 0%,var(--ink) 90%);
  border-radius:var(--radius); color:#fff; padding:38px 30px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
}
.cta-band h2{ color:#fff; margin:0 0 6px; font-size:clamp(23px,3vw,30px); }
.cta-band p{ color:#DCE8F5; margin:0; }
.cta-band .btn-secondary{ border-color:#fff; }

/* Page hero (interior pages) */
.page-hero{ background:var(--mist-soft); border-bottom:1px solid var(--line); padding:42px 0 36px; }
.breadcrumbs{ font-size:14px; margin-bottom:14px; color:var(--slate); }
.breadcrumbs ol{ list-style:none; display:flex; flex-wrap:wrap; gap:6px; margin:0; padding:0; }
.breadcrumbs li+li::before{ content:"/"; margin-right:6px; color:var(--line); }
.breadcrumbs a{ color:var(--slate); }
.page-hero p.lead{ max-width:70ch; margin-bottom:0; }

.service-hero-img{ border-radius:var(--radius); width:100%; max-height:420px; object-fit:cover; }

.benefits-list{ list-style:none; margin:0 0 18px; padding:0; }
.benefits-list li{ display:flex; gap:10px; align-items:flex-start; padding:7px 0; }
.benefits-list svg{ color:var(--teal); flex:none; margin-top:4px; }

/* Contact */
.lum-crop{ max-width:752px; overflow:hidden; border:1px solid var(--line); border-radius:14px; background:#fff; }
.lum-crop iframe{ display:block; width:calc(100% + 16px); margin-left:-8px; border:0; }
.transferApp iframe{ border:0; display:block; width:100%; }

/* Pharmacy page */
.ph-hero{ background:#EEF3FB url('/images/pharm-hero.webp') center/cover no-repeat; display:flex; align-items:center; min-height:520px; }
.ph-hero .wrap{ width:100%; }
.ph-hero-text{ max-width:560px; padding:64px 0; }
.ph-pill{ display:inline-block; background:#DCE7F7; color:var(--ink); font-size:15px; font-weight:600; padding:12px 26px; border-radius:999px; margin-bottom:22px; }
.ph-hero-text h1{ font-family:var(--font-sans, 'Inter', sans-serif); font-weight:600; font-size:clamp(30px, 4vw, 44px); line-height:1.25; color:#14213D; margin:0 0 34px; }
.btn-lg{ padding:16px 30px; font-size:17px; }
.ph-partner-title{ text-align:center; color:var(--teal); max-width:620px; margin:0 auto 40px; font-family:var(--font-sans, 'Inter', sans-serif); font-weight:700; font-size:clamp(24px, 3vw, 32px); line-height:1.3; }
.ph-partner-row{ display:grid; gap:32px; align-items:center; justify-items:center; max-width:900px; margin:0 auto 36px; }
@media (min-width:800px){ .ph-partner-row{ grid-template-columns:320px 1fr; justify-items:start; } }
.ph-partner-row img{ max-width:300px; height:auto; }
.ph-partner-row p{ margin:0; font-size:15.5px; }
.ph-center-cta{ text-align:center; }
.section-head-center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head-center h2{ font-family:var(--font-sans, 'Inter', sans-serif); font-weight:700; color:#14213D; }
.ph-toggle{ display:inline-flex; align-items:center; width:44px; height:20px; border-radius:999px; background:var(--teal); position:relative; margin:10px 0 6px; }
.ph-toggle::after{ content:""; width:14px; height:14px; border-radius:50%; background:#fff; position:absolute; left:4px; }
.ph-band{ background-color:#20449C; background-size:cover; background-position:center; background-repeat:no-repeat; display:flex; align-items:center; min-height:400px; }
@media (min-width:1100px){ .ph-band{ min-height:517px; } }
.ph-band .wrap{ width:100%; }
.ph-band-text{ max-width:460px; padding:56px 0; }
.ph-band-text h2{ margin:0; font-family:var(--font-sans, 'Inter', sans-serif); font-weight:700; font-size:clamp(21px, 2.4vw, 27px); line-height:1.3; }
.ph-band-text p{ margin:8px 0 0; font-size:14.5px; line-height:1.75; }
.ph-band-textright .ph-band-text{ margin-left:auto; margin-right:4%; }
.ph-band-textleft .ph-band-text{ margin-right:auto; }
.ph-band-dark .ph-band-text{ color:#fff; }
.ph-band-dark .ph-band-text h2{ color:#fff; }
.ph-band-dark .ph-toggle{ background:#fff; }
.ph-band-dark .ph-toggle::after{ background:var(--teal); left:auto; right:4px; }
.ph-band-light{ background-color:#fff; }
.ph-band-light .ph-band-text h2{ color:#14213D; }
@media (max-width:899px){
  .ph-hero{ background-position:72% center; }
  .ph-hero-text{ background:rgba(238,243,251,.92); border-radius:14px; padding:28px 22px; margin:48px 0; }
  .ph-band{ background:none !important; }
  .ph-band-dark{ background:linear-gradient(135deg, #2B50B8, #1B3B8F) !important; }
  .ph-band-light{ background:#fff !important; border-top:1px solid var(--line); }
  .ph-band-text{ max-width:none; padding:44px 0; margin:0 !important; }
}
.contact-grid{ display:grid; gap:22px; }
@media (min-width:900px){ .contact-grid{ grid-template-columns:1fr 1fr; } }
.map-frame{ border:0; width:100%; height:380px; border-radius:var(--radius); }
.contact-list{ list-style:none; margin:0; padding:0; }
.contact-list li{ display:flex; gap:12px; align-items:flex-start; padding:9px 0; font-size:16px; }
.contact-list svg{ color:var(--teal); flex:none; margin-top:3px; }

/* Footer */
.site-footer{ background:var(--ink-deep); color:#C4D4E6; font-size:15px; }
.site-footer a{ color:#E8F0F9; text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; color:#fff; }
.footer-grid{ display:grid; gap:32px; padding:52px 0 30px; }
@media (min-width:768px){ .footer-grid{ grid-template-columns:1.5fr 1fr 1.2fr; } }
.site-footer h2{ color:#fff; font-family:var(--font-body); font-size:15px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:14px; }
.site-footer ul{ list-style:none; margin:0; padding:0; }
.site-footer li{ margin-bottom:9px; }
.footer-logo img{ height:40px; width:auto; margin-bottom:14px; background:#fff; padding:6px 10px; border-radius:8px; }
.footer-social{ display:flex; gap:12px; margin-top:14px; }
.footer-social a{
  width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.25); border-radius:10px;
}
.footer-social a:hover{ background:rgba(255,255,255,.1); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14); padding:18px 0 26px; font-size:13.5px;
  display:flex; flex-wrap:wrap; gap:8px 24px; justify-content:space-between; color:#9FB4CB;
}
.footer-bottom a{ color:#C4D4E6; }


/* misc */
.visually-hidden{
  position:absolute !important; width:1px; height:1px; margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.two-col{ display:grid; gap:30px; }
@media (min-width:900px){ .two-col{ grid-template-columns:1fr 1fr; align-items:center; } }
.note-box{
  background:var(--mist-soft); border-left:4px solid var(--teal); border-radius:0 10px 10px 0;
  padding:16px 18px; margin:18px 0;
}
.big-cta-stack{ display:flex; flex-wrap:wrap; gap:14px; margin-top:22px; }

/* ============ Home v4: B2B referral layout ============ */
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--teal); color:var(--teal); }
.hero p.lede{ font-size:18.5px; max-width:36ch; margin-bottom:6px; }
.hero-note{ font-size:13.5px; color:var(--slate); display:flex; align-items:center; gap:8px; margin-top:16px; }
.note-dot{ width:7px; height:7px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(44,108,176,.15); flex:none; }
.kicker-light{ color:#8FB4DE; }

/* Problem band */
.problem-band{ background:var(--ink-deep); color:#D9E5F2; }
.problem-band .kicker{ color:#8FB4DE; }
.problem-band h2{ color:#fff; }
.problem-band .section-head p{ color:#B9CBD5; }
.stat-grid{ display:grid; grid-template-columns:1fr; gap:22px; margin-bottom:44px; }
.bigstat{ border:1px solid rgba(255,255,255,.16); border-radius:16px; padding:30px; }
.bigstat .n{ font-family:var(--font-display); font-size:clamp(40px,6vw,54px); font-weight:600; color:#fff; line-height:1; }
.bigstat .n em{ font-style:normal; color:var(--gold); }
.bigstat .d{ font-size:15px; color:#B9CBD5; margin-top:10px; }
.causes{ display:grid; grid-template-columns:1fr; gap:18px; }
.cause{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:22px; }
.cause .ic{ width:38px; height:38px; border-radius:9px; background:rgba(143,180,222,.16); display:grid; place-items:center; margin-bottom:14px; color:#8FB4DE; }
.cause h3{ font-family:var(--font-body); font-size:15px; font-weight:600; color:#fff; margin-bottom:6px; }
.cause p{ font-size:13.5px; color:#A9BEC9; line-height:1.5; margin:0; }
@media (min-width:560px){ .stat-grid{ grid-template-columns:1fr 1fr; } .causes{ grid-template-columns:1fr 1fr; } }
@media (min-width:920px){ .causes{ grid-template-columns:repeat(4,1fr); } }

/* Flow (how it works) */
.flow{ display:grid; grid-template-columns:1fr; gap:0; margin-top:12px; border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#fff; }
.flow-step{ padding:28px 22px; border-bottom:1px solid var(--line); }
.flow-step:last-child{ border-bottom:none; }
.step-tag{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-body); font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--teal-dark); }
.step-tag i{ width:26px; height:26px; border-radius:50%; background:var(--teal); color:#fff; display:grid; place-items:center; font-style:normal; font-family:var(--font-display); font-size:14px; }
.flow-step h3{ font-size:21px; margin:16px 0 8px; }
.flow-step p{ font-size:14.5px; color:var(--slate); line-height:1.55; margin:0; }
.flow-chat{ margin-top:18px; background:#F4F6F9; border:1px solid var(--line); border-radius:12px; padding:14px; }
.bub{ font-size:13px; padding:8px 12px; border-radius:12px; margin-bottom:8px; max-width:88%; line-height:1.4; }
.bub.rx{ background:var(--ink); color:#fff; border-bottom-left-radius:3px; }
.bub.me{ background:var(--teal); color:#fff; margin-left:auto; border-bottom-right-radius:3px; }
.bub:last-child{ margin-bottom:0; }
.flow-home{ margin-top:18px; display:flex; align-items:center; gap:10px; background:var(--ink); color:#fff; border-radius:12px; padding:12px 15px; font-size:13.5px; font-weight:500; }
.flow-home .hh{ color:#8FB4DE; font-weight:600; }
@media (min-width:921px) and (max-width:1100px){
  .flow.flow-4{ grid-template-columns:repeat(2,1fr); }
  .flow.flow-4 .flow-step:nth-child(odd){ border-right:1px solid var(--line); }
}
@media (min-width:1101px){
  .flow.flow-4{ grid-template-columns:repeat(4,1fr); }
  .flow.flow-4 .flow-step{ border-bottom:none; border-right:1px solid var(--line); }
  .flow.flow-4 .flow-step:last-child{ border-right:none; }
}
.noapp{ margin-top:34px; background:var(--mist); border:1px solid #C4D6EC; border-radius:16px; padding:26px 30px; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.noapp .big{ font-family:var(--font-display); font-size:23px; color:var(--ink); font-weight:600; flex:1; min-width:260px; line-height:1.3; }
.noapp .big em{ font-style:normal; color:var(--teal); }
.noapp .tags{ display:flex; gap:10px; flex-wrap:wrap; }
.noapp .tags span{ font-size:13px; font-weight:600; color:var(--teal-dark); background:#fff; border:1px solid #C4D6EC; padding:8px 14px; border-radius:22px; }

/* Pharmacy band */
.pharm-band{ background:#F5F6FD; }
.pharm-grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media (min-width:920px){ .pharm-grid{ grid-template-columns:.95fr 1.05fr; gap:56px; } }
.pharm-card{ background:var(--ink); color:#fff; border-radius:18px; padding:36px; }
.gh-logo{ background:#fff; border-radius:12px; padding:16px 20px; display:inline-flex; margin-bottom:22px; }
.pharm-card h3{ color:#fff; font-size:25px; margin:12px 0 14px; line-height:1.2; }
.pharm-card p{ color:#B6CFEA; font-size:15px; line-height:1.6; margin-bottom:22px; }
.pharm-meta{ display:grid; gap:12px; border-top:1px solid rgba(255,255,255,.16); padding-top:20px; }
.pharm-meta div{ display:flex; align-items:flex-start; gap:11px; font-size:14px; color:#CFDDEF; }
.pharm-meta .ic{ flex:none; color:#8FB4DE; margin-top:1px; }
.svc-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:560px){ .svc-grid{ grid-template-columns:1fr 1fr; } }
.svc{ display:flex; align-items:flex-start; gap:11px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:14px 16px; }
.svc .ic{ flex:none; width:30px; height:30px; border-radius:8px; background:var(--mist); display:grid; place-items:center; color:var(--teal-dark); }
.svc h3{ font-family:var(--font-body); font-size:14.5px; font-weight:600; color:var(--ink); margin-bottom:2px; }
.svc p{ font-size:12.5px; color:var(--slate); line-height:1.4; margin:0; }
.pharm-mission{ margin-top:64px; background:#fff; border:1px solid var(--line); border-radius:18px; padding:30px; display:grid; grid-template-columns:1fr; gap:28px; align-items:center; }
@media (min-width:920px){ .pharm-mission{ padding:40px; grid-template-columns:1fr 1fr; gap:44px; } }
.pharm-mission h3{ font-size:26px; margin-bottom:14px; line-height:1.2; }
.pharm-mission p{ font-size:15.5px; color:var(--slate); line-height:1.6; margin-bottom:14px; }
.pharm-mission .believe{ display:grid; gap:14px; margin-top:4px; }
.pharm-mission .believe div{ background:var(--mist); border-radius:12px; padding:16px 18px; }
.pharm-mission .believe .k{ font-family:var(--font-body); font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--teal-dark); margin-bottom:4px; }
.pharm-mission .believe .v{ font-family:var(--font-display); font-size:17px; color:var(--ink); line-height:1.35; }
.cond{ margin-top:34px; }
.cond h3{ font-family:var(--font-body); font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--slate); margin-bottom:14px; text-align:center; }
.cond-tags{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.cond-tags span{ font-size:13.5px; font-weight:500; color:var(--ink); background:#fff; border:1px solid var(--line); padding:9px 16px; border-radius:22px; }
.lead-grid{ margin-top:34px; display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:920px){ .lead-grid{ grid-template-columns:1fr 1fr; } }
.leader{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:24px; display:flex; gap:16px; align-items:flex-start; }
.leader .init{ flex:none; width:52px; height:52px; border-radius:12px; background:var(--ink); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-size:20px; font-weight:600; }
.leader .nm{ font-family:var(--font-body); font-size:16px; font-weight:700; color:var(--ink); }
.leader .role{ font-size:13px; color:var(--teal-dark); font-weight:600; margin:2px 0 8px; }
.leader .q{ font-size:13.5px; color:var(--slate); font-style:italic; line-height:1.5; }
.partners{ margin-top:40px; text-align:center; }
.partners h3{ font-family:var(--font-body); font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--slate); margin-bottom:18px; }
.partners-row{ display:flex; flex-wrap:wrap; gap:12px 26px; justify-content:center; align-items:center; }
.partners-row span{ font-family:var(--font-display); font-size:16px; color:var(--slate); font-weight:500; }

/* Scope */
.scope-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:560px){ .scope-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1101px){ .scope-grid{ grid-template-columns:repeat(3,1fr); } }
.scope-card{ background:#F7FAFC; border:1px solid var(--line); border-radius:14px; padding:24px; }
.scope-card .ic{ width:44px; height:44px; border-radius:11px; background:var(--ink); display:grid; place-items:center; color:#fff; margin-bottom:15px; }
.scope-card h3{ font-family:var(--font-body); font-size:16px; font-weight:600; margin-bottom:7px; }
.scope-card p{ font-size:14px; color:var(--slate); line-height:1.5; margin:0; }

/* Why refer */
.why-band{ background:var(--mist-soft); }
.why-grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media (min-width:920px){ .why-grid{ grid-template-columns:1.1fr .9fr; gap:56px; } }
.checklist{ list-style:none; display:grid; gap:18px; margin:26px 0 0; padding:0; }
.checklist li{ display:flex; gap:15px; align-items:flex-start; }
.checklist .ck{ flex:none; width:26px; height:26px; border-radius:7px; background:var(--teal); color:#fff; display:grid; place-items:center; margin-top:2px; }
.checklist h3{ font-family:var(--font-body); font-size:16.5px; font-weight:600; margin-bottom:3px; }
.checklist p{ font-size:14.5px; color:var(--slate); line-height:1.5; margin:0; }
.traction{ background:var(--ink); color:#fff; border-radius:18px; padding:34px; }
.traction h3{ color:#fff; font-size:22px; margin:10px 0 24px; }
.tr-list{ display:grid; gap:14px; }
.tr-item{ display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:#EAF1F7; line-height:1.4; }
.tr-item .tk{ flex:none; width:22px; height:22px; border-radius:6px; background:var(--teal); color:#fff; display:grid; place-items:center; margin-top:1px; }
.tr-foot{ margin-top:24px; padding-top:20px; border-top:1px solid rgba(255,255,255,.16); font-size:13px; color:#A9BEC9; }

/* Compare */
.cmp{ overflow-x:auto; }
table.matrix{ width:100%; border-collapse:collapse; min-width:640px; font-size:14.5px; background:#fff; }
table.matrix th, table.matrix td{ padding:16px 18px; text-align:left; border-bottom:1px solid var(--line); }
table.matrix thead th{ font-family:var(--font-body); font-weight:600; font-size:13px; color:var(--slate); letter-spacing:.02em; vertical-align:bottom; }
table.matrix thead th.us{ color:var(--teal); background:var(--mist); border-top-left-radius:10px; border-top-right-radius:10px; }
table.matrix td.feat{ font-weight:500; color:var(--ink); max-width:340px; }
table.matrix .col-us{ background:var(--mist); }
.yes{ color:var(--teal); font-weight:700; }
.partial{ color:#8A6A1F; font-weight:700; }
.no{ color:#5D7286; font-weight:700; }
.cmp-legend{ margin-top:18px; font-size:13px; color:var(--slate); display:flex; gap:22px; flex-wrap:wrap; }
.cmp-legend b{ font-weight:700; }

/* Refer band */
.refer-band{ background:linear-gradient(160deg,var(--teal-dark),var(--ink)); color:#fff; }
.refer-band h2{ color:#fff; }
.refer-band .sub{ color:#CFDDEF; font-size:17px; margin-bottom:26px; max-width:40ch; }
.refer-grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:start; }
@media (min-width:920px){ .refer-grid{ grid-template-columns:1fr 1fr; gap:56px; } }
.callbox{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:14px; padding:22px 24px; margin-bottom:16px; }
.callbox .lab{ font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:#B6CFEA; }
.callbox .num{ font-family:var(--font-display); font-size:30px; font-weight:600; margin-top:4px; }
.callbox .num.num-sm{ font-size:20px; overflow-wrap:anywhere; }
.callbox a{ color:#fff; }
.callbox-note{ font-size:13px; color:#CFDDEF; }
.refer-card{ background:#fff; border-radius:16px; padding:28px; color:var(--text); }
.refer-card h3{ font-size:21px; margin-bottom:4px; }
.refer-card .fnote{ font-size:13.5px; color:var(--slate); margin-bottom:20px; }
.refer-steps{ margin:0 0 20px; padding-left:20px; display:grid; gap:12px; }
.refer-steps li{ font-size:14.5px; color:var(--slate); line-height:1.5; }
.refer-steps strong{ color:var(--ink); }
.refer-steps a{ color:var(--teal-dark); }
.refer-kinds{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.refer-kinds span{ font-size:12.5px; font-weight:600; color:var(--teal-dark); background:var(--mist); border-radius:20px; padding:6px 12px; }
.refer-card .btn{ width:100%; }
.refer-card .disc{ font-size:12px; color:var(--slate); margin:12px 0 0; line-height:1.5; }

/* Anchor nav v5 */
section[id], div[id="refer"], [id="problem"],[id="how"],[id="pharmacy"],[id="scope"],[id="why"],[id="compare"],[id="refer"]{ scroll-margin-top:84px; }
