/* ============================================================
   Zymera Lifecare — Design System v1.0
   Palette from brand logo (#111E4D navy) + clinical teal accent
   Display: Space Grotesk · Body: Inter
   Signature: two-tone "capsule" chips (pharma capsule motif)
   ============================================================ */

:root {
  --navy:       #111E4D;
  --navy-deep:  #0A1233;
  --navy-soft:  #24346B;
  --ink:        #1A2238;
  --muted:      #5D6B8A;
  --teal:       #14A38B;
  --teal-dark:  #0D8471;
  --teal-tint:  #E4F5F1;
  --bg:         #FFFFFF;
  --tint:       #F4F7FC;
  --line:       #E3E9F4;
  --danger:     #C0392B;
  --danger-bg:  #FDECEA;
  --success:    #1E7B4D;
  --success-bg: #E8F6EE;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 8px 30px rgba(17, 30, 77, .08);
  --shadow-lg: 0 18px 50px rgba(17, 30, 77, .14);
  --container: 1180px;
  --header-h:  76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.18rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 780px; }

.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: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

/* ============================================================
   SIGNATURE — Capsule chips (two-tone, like a pharma capsule)
   <span class="capsule-chip"><i></i>Label<b>3</b></span>
   ============================================================ */
.capsule-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 6px;
  border-radius: 999px;
  background: var(--teal-tint);
  border: 1px solid transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
  cursor: default;
  text-decoration: none;
  white-space: nowrap;
}
.capsule-chip i {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 50%, var(--navy) 50%);
  flex: 0 0 auto;
}
.capsule-chip b { font-weight: 700; color: var(--teal-dark); margin-left: 2px; }
a.capsule-chip:hover { text-decoration: none; border-color: var(--teal); }

.capsule-lg { padding: 9px 20px 9px 9px; font-size: .9rem; cursor: pointer; }
.capsule-lg i { width: 24px; height: 24px; }

button.capsule-chip { background: var(--teal-tint); transition: background .2s, color .2s; }
.capsule-chip.is-active { background: var(--navy); color: #fff; }
.capsule-chip.is-active b { color: #8FE3D4; }
.capsule-chip.is-active i { background: linear-gradient(135deg, var(--teal) 50%, #fff 50%); }

.capsule-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(20,163,139,.35); }
.btn-accent:hover { background: var(--teal-dark); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-ghost-dark { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--navy); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(17,30,77,.06); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand-logo { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: .93rem; font-weight: 500; color: var(--ink);
  padding: 6px 2px; position: relative;
}
.nav-link:hover { text-decoration: none; color: var(--navy); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2.5px; border-radius: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--navy); font-weight: 600; }
.nav-cta { margin-left: 8px; padding: 10px 22px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--navy);
  margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s;
}

/* ---------- Flash ---------- */
/* Fixed toast — visible regardless of scroll/anchor position */
.toast {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 300;
  display: flex; align-items: center; gap: 12px;
  max-width: min(560px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .94rem; font-weight: 500;
  box-shadow: 0 12px 40px rgba(17,30,77,.22);
  opacity: 0;
  animation: toastIn .35s ease forwards;
}
.toast.toast-hide { animation: toastOut .35s ease forwards; }
.toast-success { background: #fff; color: var(--success); border: 1px solid #BFE6CF; }
.toast-error   { background: #fff; color: var(--danger);  border: 1px solid #F3C9C3; }
.toast-icon {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .9rem;
}
.toast-success .toast-icon { background: var(--success); }
.toast-error .toast-icon { background: var(--danger); }
.toast-msg { flex: 1; line-height: 1.4; }
.toast-close {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--muted); padding: 0 2px;
}
.toast-close:hover { color: var(--ink); }

@keyframes toastIn  { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(-50%) translateY(0); } to { opacity: 0; transform: translateX(-50%) translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .toast { animation: none; opacity: 1; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #1B2F6E 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 90px);
}
.hero-molecules {
  position: absolute; inset: 0; color: rgba(255,255,255,.13); pointer-events: none;
}
.hero-molecules svg { width: 100%; height: 100%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow { color: #7FDCCB; }
.hero-title { color: #fff; margin-bottom: 18px; }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 54ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero-stats { display: flex; gap: clamp(24px, 5vw, 56px); }
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; color: #7FDCCB;
}
.hero-stats dd { font-size: .85rem; color: rgba(255,255,255,.7); }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-card img { width: min(380px, 60vw); filter: drop-shadow(0 24px 40px rgba(0,0,0,.35)); }

.chip-float { position: absolute; background: #fff; box-shadow: var(--shadow-lg); }
.chip-1 { top: 18px; left: -22px; }
.chip-2 { bottom: 30px; right: -18px; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 12px; }
.section-cta { text-align: center; margin-top: 44px; }
.section-areas { padding-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 58ch; }
.page-hero .eyebrow { color: #7FDCCB; }

.page-hero-img {
  background:
    linear-gradient(150deg, rgba(10,18,51,.92), rgba(17,30,77,.85)),
    var(--hero-img) center/cover no-repeat;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.product-grid-full { margin-top: 36px; }

.product-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; text-decoration: none; }

.product-media {
  position: relative;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, var(--tint) 100%);
  padding: 26px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3;
}
.product-media img { max-height: 100%; object-fit: contain; transition: transform .25s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }

.form-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

.product-placeholder {
  width: 120px; height: 120px; border-radius: 26px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-lg { width: 220px; height: 220px; font-size: 3.6rem; margin: 60px auto; }

.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.product-body h3 { letter-spacing: .01em; }
.product-comp { font-size: .85rem; color: var(--muted); flex: 1; }
.product-more { font-size: .85rem; font-weight: 600; color: var(--teal-dark); }

/* ---------- Filter ---------- */
.filter-row { justify-content: flex-start; }
.filter-empty { text-align: center; color: var(--muted); padding: 48px 0; }
.product-card.is-hidden { display: none; }

/* ---------- About teaser / values ---------- */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-copy h2 { margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-copy .btn { margin-top: 10px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.value-icon { color: var(--teal); font-size: 1.3rem; }
.value-card h3 { margin: 12px 0 8px; }
.value-card p { font-size: .92rem; color: var(--muted); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  color: var(--ink); text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.news-card p { font-size: .9rem; color: var(--muted); flex: 1; }
.news-card time { font-size: .8rem; color: var(--muted); font-weight: 500; }
.news-media { margin: -24px -24px 6px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.news-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ---------- Article ---------- */
.article-title { margin: 14px 0 8px; }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.article-hero { margin-bottom: 32px; }
.article-hero img { border-radius: var(--radius-lg); width: 100%; }
.article-body { color: var(--ink); }
.article-body h2 { margin: 30px 0 12px; font-size: 1.35rem; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; }
.article .btn { margin-top: 20px; }
.legal h1 { margin-bottom: 4px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 30px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 8px; color: var(--line); }
.breadcrumb strong { color: var(--navy); font-weight: 600; }

/* ---------- Product detail ---------- */
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.detail-media {
  background: radial-gradient(circle at 50% 40%, #fff, var(--tint));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; display: flex; justify-content: center;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.detail-copy h1 { margin: 12px 0 4px; }
.detail-form { color: var(--muted); font-weight: 500; margin-bottom: 22px; }

.detail-panel {
  background: var(--teal-tint); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 22px;
}
.detail-panel h2, .detail-desc h2 {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 8px; font-family: var(--font-body); font-weight: 700;
}
.detail-panel p { font-size: .98rem; }
.detail-desc { margin-bottom: 28px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.detail-disclaimer { font-size: .8rem; color: var(--muted); }

.related-block { margin-top: clamp(48px, 7vw, 80px); }
.related-title { margin-bottom: 28px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #16597E);
  color: #fff;
  padding: clamp(44px, 6vw, 72px) 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.contact-card h3 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.contact-card p { font-size: .96rem; }
.contact-card a { color: var(--navy); font-weight: 500; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: 6px; }
.form-note { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: .87rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; transition: border-color .2s;
  width: 100%;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,163,139,.15);
}
.hp-field { position: absolute; left: -9999px; }

.map-section iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- 404 ---------- */
.notfound { padding: 120px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 72px) 22px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 20px; }
.footer-about p { font-size: .9rem; line-height: 1.7; }
.footer-heading {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 700; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .92rem; }
.footer-links a:hover { color: #7FDCCB; text-decoration: none; }
.footer-address { font-size: .88rem; line-height: 1.6; }
.footer-note { font-size: .88rem; margin-bottom: 14px; }

.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; min-width: 0;
  padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-body); font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: var(--teal); }
.newsletter-form .btn { padding: 12px 20px; font-size: .88rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: .84rem;
}
.footer-legal a { color: rgba(255,255,255,.78); }
.footer-legal span { margin: 0 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .product-card, .news-card, .product-media img { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .hero-card img { width: min(300px, 55vw); }
  .about-teaser { grid-template-columns: 1fr; }
  .value-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-media { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; position: relative; z-index: 130; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0;
    height: calc(100vh - var(--header-h));
    width: min(320px, 84vw);
    background: #fff;
    z-index: 120;
    flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 20px;
    box-shadow: -12px 0 40px rgba(17,30,77,.14);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-cta { margin-left: 0; }
  body.nav-locked { overflow: hidden; }

  /* When menu is open, lift the whole header context above the backdrop
     so the nav (a child of the header) paints on top of it. */
  body.nav-locked .site-header { z-index: 130; }

  /* Dim backdrop behind the open menu */
  .nav-backdrop {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: rgba(10, 18, 51, .45);
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 115;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .value-grid, .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* Toll-free tag */
.tollfree-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
  margin-right: 4px;
}
.contact-card .tollfree-tag { font-size: .6rem; }

/* ---------- Social media icons ---------- */
.social-links { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.social-icon:hover { transform: translateY(-3px); text-decoration: none; }
.social-icon.social-facebook:hover  { background: #1877F2; color: #fff; }
.social-icon.social-instagram:hover { background: #E1306C; color: #fff; }
.social-icon.social-linkedin:hover  { background: #0A66C2; color: #fff; }
.social-icon.social-whatsapp:hover  { background: #25D366; color: #fff; }

/* Light context (contact page card) */
.social-dark { margin-top: 4px; }
.social-dark .social-icon {
  background: var(--teal-tint);
  color: var(--navy);
}
.social-dark .social-icon:hover { color: #fff; }
