/* =========================================================
   Quantum Medical Supply — Design System
   Clean, calm, trustworthy. Informational (non e-commerce).
   ========================================================= */

:root {
  /* Brand palette — Quantum Medical (cornflower blue + pink) */
  --navy: #1c4d7e;        /* deep brand blue — headings, footer */
  --navy-700: #163d64;
  --primary: #3a7bc0;     /* cornflower blue — buttons, links (AA on white) */
  --primary-600: #2f6aa8; /* darker blue — hover */
  --primary-050: #ebf2fb; /* light blue tint */
  --brand-blue: #6f9fd8;  /* logo cornflower — accents/decoration */
  --accent: #e0568c;      /* brand pink — primary CTA / highlights */
  --accent-600: #d23f7c;  /* darker pink — hover */
  --accent-050: #fdeef5;  /* pink tint */
  --pink: #ec5f93;        /* logo pink — headline highlights */

  /* Neutrals */
  --ink: #16242e;
  --body: #41535f;
  --muted: #6b7c88;
  --line: #e4eaef;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
  --bg-tint: #eef4f8;

  /* Effects */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28, 77, 126, .07), 0 2px 8px rgba(28, 77, 126, .06);
  --shadow-md: 0 6px 24px rgba(28, 77, 126, .12);
  --shadow-lg: 0 18px 48px rgba(28, 77, 126, .18);

  /* Layout */
  --container: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary-600); text-decoration: none; }
a:hover { color: var(--primary); }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------- Utilities --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--body); }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .85rem;
}
.muted { color: var(--muted); }
.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-150%);
  top: .5rem; z-index: 200; background: var(--navy); color: #fff;
  padding: .6rem 1.1rem; border-radius: 8px; transition: transform .2s;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); color: #fff; }

h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .9rem 1.5rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--accent); }
.btn--accent:hover { background: var(--accent-600); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { --btn-fg: var(--navy); background: var(--primary-050); border-color: var(--primary-050); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--outline-white {
  --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.5); box-shadow: none;
}
.btn--outline-white:hover { --btn-fg: var(--navy); background: #fff; }
.btn .ico { width: 1.05em; height: 1.05em; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.center { justify-content: center; }

/* ----------------------------- Header ---------------------------- */
.topbar {
  background: var(--navy);
  color: #dbe7f0;
  font-size: .86rem;
}
.topbar a { color: #fff; font-weight: 500; }
.topbar .container {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  align-items: center; justify-content: center; padding-block: .5rem;
}
.topbar .tb-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar .ico { width: 1em; height: 1em; opacity: .9; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 1.2rem;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand:hover { color: inherit; }
.brand .logo { width: 38px; height: 38px; flex: none; }
.brand b { color: var(--navy); font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.brand span { display: block; font-size: .72rem; letter-spacing: .005em; color: var(--primary-600); font-weight: 600; }
/* Real logo image */
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 880px) { .brand-logo { height: 40px; } }
.footer-brand .brand { background: #fff; padding: .5rem .75rem; border-radius: 12px; }
.footer-brand .brand-logo { height: 40px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .96rem;
  padding: .55rem .8rem; border-radius: 8px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--primary-050); color: var(--primary-600); }
.nav-links a[aria-current="page"] { color: var(--primary-600); }
.nav-links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--primary); margin-top: 3px;
}
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.1rem, 4vw, 2rem) 1.2rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .9rem; font-size: 1.02rem; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ------------------------------ Hero ----------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(236,95,147,.12), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(111,159,216,.14), transparent 55%),
    var(--bg);
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--pink); }
.hero p.lead { margin-bottom: 1.8rem; max-width: 34ch; }
.hero .btn-row { margin-bottom: 1.6rem; }
.hero .reassure { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .92rem; color: var(--muted); }
.hero .reassure li { display: inline-flex; align-items: center; gap: .45rem; }
.hero .reassure .ico { width: 1.1em; height: 1.1em; color: var(--accent); }

.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2.2rem);
}
.hero-card h2 { font-size: 1.2rem; margin-bottom: .3rem; }
.hero-card .sub { font-size: .92rem; color: var(--muted); margin-bottom: 1.3rem; }
.steplist { display: grid; gap: 1rem; }
.steplist li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.steplist .n {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: var(--primary-050); color: var(--primary-600);
}
.steplist b { color: var(--ink); display: block; }
.steplist small { color: var(--muted); }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero p.lead { max-width: none; }
}

/* ----------------------------- Cards ----------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  height: 100%;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-050); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 600; font-size: .92rem; }
.card .more .ico { width: 1em; height: 1em; transition: transform .15s; }
.card--link:hover .more .ico { transform: translateX(3px); }

.iconbox {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
  display: grid; place-items: center; background: var(--primary-050); color: var(--primary-600);
}
.iconbox.accent { background: var(--accent-050); color: var(--accent); }
.iconbox .ico { width: 28px; height: 28px; }

/* Feature list with check icons */
.checks { display: grid; gap: .7rem; }
.checks li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; }
.checks .ico {
  width: 22px; height: 22px; flex: none; margin-top: .15rem;
  color: var(--accent);
}
.checks b { color: var(--ink); }

/* Steps (numbered, horizontal) */
.steps { counter-reset: step; }
.steps .step { position: relative; }
.steps .step .badge {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem; box-shadow: var(--shadow-sm);
}
.steps .step h3 { font-size: 1.12rem; }

/* Split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); background: var(--bg-tint);
}
.media-frame svg { width: 100%; height: auto; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0b1f30; }
/* Aspect ratios for photo frames */
.media-frame.ratio-4-3 { aspect-ratio: 4 / 3; }
.media-frame.ratio-3-4 { aspect-ratio: 3 / 4; }
.media-frame.ratio-4-5 { aspect-ratio: 4 / 5; }
.media-frame.ratio-16-10 { aspect-ratio: 16 / 10; }
.media-frame.ratio-16-11 { aspect-ratio: 16 / 11; }

/* ----------------------- Imagery components ---------------------- */
/* Hero photo with floating info card */
.hero-media { position: relative; }
.hero-media .media-frame { aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.hero-media .hero-card {
  position: absolute; left: clamp(-1rem, -2vw, -1.5rem); bottom: clamp(-1rem, -2vw, -1.5rem);
  max-width: 320px; margin: 0;
}
@media (max-width: 860px) {
  .hero-media .hero-card { position: static; max-width: none; margin-top: 1.1rem; }
  .hero-media .media-frame { aspect-ratio: 16 / 11; }
}

/* Photo on top of a card */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media .card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-tint); }
.card--media .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card--media.card--link:hover .card-media img { transform: scale(1.04); }
.card--media .card-body { padding: clamp(1.2rem, 2.4vw, 1.6rem); display: flex; flex-direction: column; flex: 1; }
.card--media .card-body .more { margin-top: auto; }

/* Interior page hero with a side photo */
.page-hero--media .container {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
}
.page-hero--media .media-frame { aspect-ratio: 16 / 11; }
@media (max-width: 820px) {
  .page-hero--media .container { grid-template-columns: 1fr; }
}

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.stats .lbl { font-size: .9rem; color: var(--muted); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; } }

/* Insurance logos / payer chips */
.payers { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.payers .chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.1rem; font-weight: 600; color: var(--navy); font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% -30%, rgba(236,95,147,.42), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-700));
  color: #eaf2f8; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p { color: #cfe0ec; max-width: 56ch; margin: 0 auto 1.6rem; }

/* Callout / note box */
.note {
  background: var(--accent-050); border: 1px solid #f6d3e2; border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; color: var(--ink);
}
.note b { color: var(--navy); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.2rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; color: var(--ink);
  padding: 1.1rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 22px; height: 22px; position: relative; transition: transform .2s; color: var(--primary); }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--body); }

/* Page hero (interior) */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -40%, rgba(111,159,216,.14), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: .8rem; }
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--primary); }
.page-hero h1 { margin-bottom: .8rem; }
.page-hero p { max-width: 62ch; }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; margin-bottom: .7rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: .5rem; }
.prose p, .prose ul { margin-bottom: 1rem; }
.prose ul { padding-left: 1.2rem; list-style: disc; }
.prose ul li { margin-bottom: .4rem; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 1.3rem; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.info-list .ib {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: var(--primary-050); color: var(--primary-600); display: grid; place-items: center;
}
.info-list .ib .ico { width: 22px; height: 22px; }
.info-list .k { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.info-list .v { color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.info-list .v a { color: var(--ink); }
.info-list .v a:hover { color: var(--primary); }

/* ----------------------------- Footer ---------------------------- */
.site-footer { background: var(--navy); color: #b9cbd9; padding-block: clamp(3rem, 5vw, 4rem) 1.5rem; }
.site-footer a { color: #d7e4ee; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand b { color: #fff; }
.footer-brand .brand span span { color: #b9cbd9; }
.footer-brand p { margin-top: .9rem; font-size: .92rem; max-width: 34ch; color: #9fb6c7; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: .95rem; }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .7rem; font-size: .95rem; }
.footer-contact .ico { width: 1.05em; height: 1.05em; flex: none; margin-top: .25rem; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #8ba6ba;
}
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* Disclaimer small print */
.disclaimer { font-size: .82rem; color: #8ba6ba; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===========================================================
   Brand polish — distinctive type, richer hero, more depth
   =========================================================== */
:root { --font-display: "Poppins", "Inter", system-ui, -apple-system, sans-serif; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.02em; }
h1 { font-weight: 800; }

/* Eyebrow → soft brand pill */
.eyebrow {
  background: linear-gradient(90deg, var(--primary-050), var(--accent-050));
  color: var(--primary-600);
  padding: .42rem .9rem; border-radius: 999px;
  letter-spacing: .1em; border: 1px solid #e7eef7;
}
.section--soft .eyebrow, .section--tint .eyebrow { background: #fff; }

/* Centered section headings get a small gradient underline */
.section-head.center h2::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 2px;
  margin: .9rem auto 0; background: linear-gradient(90deg, var(--pink), var(--primary));
}

/* Gradient primary CTA */
.btn--accent {
  background: linear-gradient(135deg, #ff6fa5 0%, var(--accent) 55%, #d23f7c 100%);
  box-shadow: 0 8px 20px rgba(224, 86, 140, .35);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #f85f99 0%, #d63f7d 100%);
  box-shadow: 0 12px 26px rgba(224, 86, 140, .45);
}

/* -------- Hero: bigger headline, brand backdrop, depth -------- */
.hero {
  background:
    radial-gradient(900px 520px at 88% -15%, rgba(236, 95, 147, .18), transparent 60%),
    radial-gradient(820px 520px at -5% 115%, rgba(111, 159, 216, .20), transparent 55%),
    linear-gradient(180deg, #fbfdff, #f3f9fd);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero::before {
  width: 300px; height: 300px; right: -70px; top: -90px;
  background: radial-gradient(circle at 35% 35%, rgba(236, 95, 147, .28), transparent 70%);
}
.hero::after {
  width: 360px; height: 360px; left: -130px; bottom: -150px;
  background: radial-gradient(circle at 50% 50%, rgba(111, 159, 216, .26), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.6rem); line-height: 1.08; }
.hero h1 .hl {
  background: linear-gradient(100deg, var(--pink), var(--primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
/* reassurances become chips */
.hero .reassure { gap: .6rem; }
.hero .reassure li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .42rem .85rem; color: var(--ink); font-weight: 500; box-shadow: var(--shadow-sm);
}

/* Hero media: offset accent shape + floating trust chip */
.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px; z-index: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-blue), var(--pink)); opacity: .18;
}
.hero-media .media-frame { position: relative; z-index: 1; }
.hero-chip {
  position: absolute; z-index: 2; left: -14px; bottom: 20px;
  display: flex; gap: .65rem; align-items: center; max-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: .7rem .95rem;
}
.hero-chip .ico-badge {
  width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-050); color: var(--accent);
}
.hero-chip .ico-badge .ico { width: 22px; height: 22px; }
.hero-chip b { display: block; font-family: var(--font-display); color: var(--navy); font-size: .98rem; line-height: 1.1; }
.hero-chip small { color: var(--muted); font-size: .8rem; }
@media (max-width: 860px) {
  .hero-media::before { display: none; }
  .hero-chip { position: static; margin-top: 1rem; max-width: none; }
}

/* Curved divider from hero into the next section */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 64px; z-index: 1; display: block; }

/* Product/media cards: stronger lift */
.card--media.card--link:hover { border-color: transparent; box-shadow: 0 16px 36px rgba(28, 77, 126, .18); }

/* Category tag on product cards */
.card--media .card-media { position: relative; }
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(255, 255, 255, .94); color: var(--navy);
  font-weight: 600; font-size: .76rem; letter-spacing: .01em;
  padding: .34rem .7rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* Hero video: play-button overlay + scrim */
.hero-play {
  position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%;
  border: 0; padding: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center;
  transition: opacity .3s ease;
}
.hero-play::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 40, 60, 0) 45%, rgba(16, 40, 60, .5));
}
.hero-play .play-circle {
  position: relative; width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--primary));
  box-shadow: 0 12px 30px rgba(28, 77, 126, .45);
  transition: transform .2s ease;
}
.hero-play .play-circle svg { width: 30px; height: 30px; margin-left: 3px; }
.hero-play .play-circle::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .65); animation: qms-pulse 2.6s ease-out infinite;
}
.hero-play:hover .play-circle { transform: scale(1.08); }
.hero-play .play-label {
  position: absolute; left: 16px; bottom: 14px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.hero-play.is-hidden { opacity: 0; pointer-events: none; }
@keyframes qms-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Scroll-reveal (added by JS; safe no-op without JS / reduced motion) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Promo banner (top of homepage) */
.promo-banner { display: flex; justify-content: center; line-height: 0; background: #f7c61a; transition: opacity .15s ease; }
.promo-banner img { width: auto; max-width: 100%; height: auto; display: block; }
.promo-banner:hover { opacity: .95; }

/* Bold stats band */
.stats-band { background: var(--bg-tint); }
.stats--lg { gap: 1.5rem 1rem; }
.stats--lg .num {
  font-size: clamp(2.5rem, 5.5vw, 3.6rem); line-height: 1;
  background: linear-gradient(120deg, var(--pink), var(--primary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stats--lg .lbl { margin-top: .35rem; font-weight: 500; }
.stats--3 { grid-template-columns: repeat(3, 1fr) !important; max-width: 760px; margin-inline: auto; }
.stats-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 1.3rem; }

/* Hero rating cue */
.hero-rating { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.25rem; font-size: .92rem; font-weight: 600; color: var(--ink); }
.hero-rating .stars { color: #f5b301; letter-spacing: 1px; }
.hero-rating u { color: var(--primary-600); text-underline-offset: 2px; }
.hero-rating:hover u { color: var(--primary); }

/* In-network trust strip (under hero) */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); padding-block: 1.05rem; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1.3rem; }
.trust-strip__label { font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Reviews / testimonials */
.review { display: flex; flex-direction: column; }
.review .stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: .75rem; }
.review blockquote { margin: 0 0 1.1rem; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.review figcaption { margin-top: auto; }
.review figcaption b { color: var(--navy); font-family: var(--font-display); }
.review figcaption span { display: block; color: var(--muted); font-size: .85rem; margin-top: .15rem; }

/* Store band (shop / buy without insurance) */
.store-band {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center; color: #eaf2f8; border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); overflow: hidden;
  background:
    radial-gradient(700px 320px at 92% -40%, rgba(236, 95, 147, .55), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--primary));
}
.store-band__icon {
  width: 64px; height: 64px; flex: none; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .15); color: #fff;
}
.store-band__icon .ico { width: 32px; height: 32px; }
.store-band .eyebrow { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .28); }
.store-band h2 { color: #fff; margin: .25rem 0 .45rem; }
.store-band p { color: #d3e3ef; max-width: 62ch; margin: 0; }
@media (max-width: 760px) {
  .store-band { grid-template-columns: 1fr; }
  .store-band__cta .btn { width: 100%; justify-content: center; }
}

/* Interior page heroes — match the homepage's depth */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(820px 460px at 92% -30%, rgba(236, 95, 147, .14), transparent 60%),
    radial-gradient(720px 460px at -5% 120%, rgba(111, 159, 216, .18), transparent 55%),
    linear-gradient(180deg, #fbfdff, #f3f9fd);
}
.page-hero::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  right: -70px; top: -90px; pointer-events: none;
  background: radial-gradient(circle at 35% 35%, rgba(236, 95, 147, .22), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
/* Offset brand accent behind interior hero photos */
.page-hero--media .media-frame {
  box-shadow: var(--shadow-md), 16px 16px 0 rgba(111, 159, 216, .18);
}
@media (max-width: 820px) {
  .page-hero--media .media-frame { box-shadow: var(--shadow-md); }
}

/* ---------------------------- Blog ---------------------------- */
.post-meta { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; font-weight: 600; }
.more--soon { color: var(--muted) !important; pointer-events: none; }
.more--soon .ico { display: none; }
.article { max-width: 760px; margin-inline: auto; }
.article .post-meta { margin-bottom: 1.2rem; }
.article-figure { margin: 0 0 1.9rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.article-figure img { width: 100%; height: auto; display: block; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; margin-top: 2.4rem; }
.back-link .ico { width: 1em; height: 1em; }

/* ---------------------- Trust badges ---------------------- */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (max-width: 760px) { .badges { grid-template-columns: repeat(2, 1fr); } }
.badge-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.badge-item .ib {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--primary-050); color: var(--primary-600);
}
.badge-item:nth-child(2n) .ib { background: var(--accent-050); color: var(--accent-600); }
.badge-item .ib .ico { width: 28px; height: 28px; }
.badge-item b { font-family: var(--font-display); color: var(--navy); font-size: .98rem; }
.badge-item span { color: var(--muted); font-size: .85rem; }

/* ------------------ Sticky mobile call bar ------------------ */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 18px rgba(28, 77, 126, .14);
  }
  .mobile-cta a {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    font-weight: 700; font-size: .96rem; padding: .75rem; border-radius: 11px; line-height: 1;
  }
  .mobile-cta .ico { width: 1.05em; height: 1.05em; }
  .mobile-cta__call { background: var(--primary-050); color: var(--primary-600); }
  .mobile-cta__apply { background: linear-gradient(135deg, #ff6fa5 0%, var(--accent) 55%, #d23f7c 100%); color: #fff; }
  body { padding-bottom: 70px; }
}

/* ------------------ Accreditation logos row ------------------ */
.accred { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); padding-top: clamp(1.6rem, 3vw, 2.2rem); }
.accred-caption { text-align: center; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--muted); margin-bottom: 1.2rem; }
.accred-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.accred-tile { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .5rem 1rem; height: 86px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.accred-tile img { height: 100%; width: auto; opacity: .92; }

/* ------------------------- Forms ------------------------- */
.form-card { max-width: 760px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.form-field .req { color: var(--accent-600); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .7rem .85rem; transition: border-color .15s, box-shadow .15s;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 123, 192, .18);
}
.form-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem; }
.form-check { display: flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .95rem; }
.form-check input { width: auto; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-weight: 600; display: none; }
.form-status.is-success { display: block; background: #e8f5ee; color: #0b6b3a; border: 1px solid #bfe6cf; }
.form-status.is-error { display: block; background: #fdeef0; color: #a3243a; border: 1px solid #f4c7cf; }
@media (max-width: 640px) {
  .form-grid, .form-checks { grid-template-columns: 1fr; }
}
