/* =================================================================
   VoIP Depot - Design System
   Locked v1. All pages inherit these tokens & components.
   Palette: navy #003B5C / white / green #43B763 / blue #66C2E9 / gray #E4E4E4
   Type: Arial bold headings, Arial regular body (web-safe)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy:        #003B5C;
  --navy-900:    #002B43;   /* darker navy for footer / deep panels */
  --navy-700:    #0A4E76;   /* hover / accents on navy */
  --green:       #43B763;
  --green-700:   #379a53;   /* button hover */
  --blue:        #66C2E9;
  --blue-50:     #EAF7FD;   /* tint background */
  --gray:        #E4E4E4;
  --gray-bg:     #F5F6F7;   /* section alt background */
  --ink:         #1B2733;   /* body text */
  --ink-soft:    #51606E;   /* secondary text */
  --white:       #FFFFFF;
  --line:        #E4E4E4;

  --container:   1200px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 2px rgba(0,59,92,.06), 0 2px 6px rgba(0,59,92,.05);
  --shadow-md:   0 6px 20px rgba(0,59,92,.10);
  --shadow-lg:   0 20px 48px rgba(0,59,92,.14);

  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;

  --section-y:   96px;     /* vertical rhythm for sections */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-y) 0; }
.section--gray { background: var(--gray-bg); }
.section--navy { background: var(--navy); color: var(--white); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--navy);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--blue); }

.lede { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.55; }
.section--navy .lede { color: rgba(255,255,255,.82); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--green {
  background: linear-gradient(135deg, #43B763 0%, #2ea34f 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(46,163,79,.35), 0 1px 2px rgba(0,0,0,.08);
  text-shadow: 0 1px 1px rgba(0,0,0,.12);
  letter-spacing: .01em;
}
.btn--green:hover {
  background: linear-gradient(135deg, #4ec96e 0%, #379a53 100%);
  box-shadow: 0 4px 16px rgba(46,163,79,.45), 0 1px 3px rgba(0,0,0,.10);
  transform: translateY(-1px);
}
.btn--green:active { transform: translateY(0); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--lg { padding: 19px 34px; font-size: 1.08rem; }
.btn--sm { padding: 12px 20px; font-size: .95rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 64px; width: auto; display: block; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--navy);
  display: grid; place-items: center;
  position: relative;
}
.brand__mark::before {
  content: "";
  width: 15px; height: 15px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  border-right-color: var(--green);
  border-bottom-color: var(--green);
}
.brand__name { font-weight: 700; font-size: 1.28rem; color: var(--navy); letter-spacing: -0.02em; }
.brand__name b { color: var(--green); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.98rem; font-weight: 700; color: var(--ink);
  padding: 6px 0; position: relative;
}
.nav__links a:not(.btn):hover { color: var(--navy); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease;
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

/* ── Providers dropdown ───────────────────── */
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-size: .98rem; font-weight: 700; color: var(--ink);
  padding: 6px 0; cursor: pointer; background: none; border: none;
  font-family: inherit; position: relative; line-height: 1;
  white-space: nowrap;
}
.nav__dropdown-trigger:hover { color: var(--navy); }
.nav__dropdown-trigger::after {
  content: ""; position: absolute; left: 0; right: 20px; bottom: -2px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease;
}
.nav__dropdown:hover .nav__dropdown-trigger::after,
.nav__dropdown.open .nav__dropdown-trigger::after { transform: scaleX(1); }
.nav__dropdown-chevron { transition: transform .18s; flex-shrink: 0; }
.nav__dropdown:hover .nav__dropdown-chevron,
.nav__dropdown.open .nav__dropdown-chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 12px; padding: 10px;
  box-shadow: 0 8px 30px rgba(0,59,92,.13);
  width: 380px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 300;
}
/* Invisible bridge fills the gap so cursor doesn't lose hover */
.nav__dropdown-menu::before {
  content: ''; position: absolute;
  top: -18px; left: 0; right: 0; height: 18px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  font-size: .875rem !important; font-weight: 600 !important; color: var(--ink) !important;
  padding: 8px 12px !important; border-radius: 6px;
  display: block; white-space: nowrap;
  transition: background .12s, color .12s;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover { background: var(--gray-bg); color: var(--navy) !important; }
.nav__dropdown-menu a.dropdown-all {
  grid-column: 1 / -1; text-align: center;
  margin-top: 4px; padding-top: 10px !important;
  border-top: 1px solid var(--line);
  color: var(--navy) !important; font-weight: 700 !important;
  border-radius: 0 0 6px 6px;
}

.nav__toggle {
  display: none;
  background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 88px; position: relative; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 32px; max-width: 540px; }
.hero__cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__fine {
  margin-top: 20px; font-size: 0.95rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 9px;
}
.hero__fine svg { flex: none; }

/* advisor card */
.advisor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}
.advisor__top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.advisor__avatar {
  width: auto; height: auto; border-radius: 0;
  background: none;
  border: none;
  display: flex; align-items: center;
  flex: none;
}
.advisor__name { font-weight: 700; font-size: 1.18rem; color: var(--navy); }
.advisor__role { font-size: .92rem; color: var(--ink-soft); }
.advisor__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 13px; }
.advisor__list li { display: flex; gap: 11px; font-size: .98rem; line-height: 1.4; }
.advisor__list li svg { flex: none; margin-top: 2px; }
.advisor__divider { height: 1px; background: var(--line); margin: 0 0 18px; }
.advisor__contact { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); }
.advisor__contact a:hover { color: var(--green); }

/* centered hero variant */
body[data-hero="centered"] .hero__grid { grid-template-columns: 1fr; text-align: center; max-width: 860px; margin: 0 auto; }
body[data-hero="centered"] .hero .lede { margin-left: auto; margin-right: auto; }
body[data-hero="centered"] .hero__cta-row { justify-content: center; }
body[data-hero="centered"] .hero__fine { justify-content: center; }
body[data-hero="centered"] .hero__aside { display: none; }
body[data-hero="centered"] .hero__trustbar { display: flex; }
.hero__trustbar { display: none; justify-content: center; flex-wrap: wrap; gap: 14px 28px; margin-top: 44px; }
.hero__trustbar .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .95rem; font-weight: 700; color: var(--navy);
  background: var(--white); border: 1px solid var(--line);
  padding: 11px 18px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: 26px; right: 28px;
  font-size: 2.6rem; font-weight: 700; color: var(--gray); line-height: 1;
}
.step__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-50); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ---------- Why (feature points) ---------- */
.whys { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 40px; }
.why { display: flex; gap: 18px; }
.why__icon {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: rgba(67,183,99,.12); color: var(--green-700);
  display: grid; place-items: center;
}
.section--navy .why__icon { background: rgba(102,194,233,.16); color: var(--blue); }
.why h3 { font-size: 1.18rem; margin-bottom: 6px; }
.why p { color: var(--ink-soft); }
.section--navy .why p { color: rgba(255,255,255,.78); }

/* ---------- Who this is for (checklist) ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.fit-list li {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 18px 22px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 1.04rem; line-height: 1.4;
}
.fit-list li svg { flex: none; margin-top: 1px; }
.fit-panel {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px;
  position: sticky; top: 100px;
}
.fit-panel h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 14px; }
.fit-panel p { color: rgba(255,255,255,.82); margin-bottom: 26px; }

/* ---------- Providers ---------- */
.providers-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; margin-bottom: 26px;
}
.logo-slot {
  height: 84px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-weight: 700; font-size: .9rem;
  text-align: center; padding: 8px;
  position: relative; overflow: hidden;
}
.logo-slot span { position: relative; }
.logo-slot img { max-height: 62%; max-width: 80%; object-fit: contain; position: relative; z-index: 1; }
.providers-note { text-align: center; color: var(--ink-soft); font-size: 1.05rem; }
.providers-note b { color: var(--navy); }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tcard {
  background: var(--white); border: 1px dashed #c4ccd2; border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 18px; min-height: 230px;
}
.tcard__quote { font-size: 1.05rem; color: #9aa6af; font-style: italic; flex: 1; }
.tcard__label {
  font-family: ui-monospace, Menlo, monospace; font-size: .78rem;
  color: var(--ink-soft); letter-spacing: .04em;
}
.tcard__person { display: flex; align-items: center; gap: 12px; }
.tcard__dot { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-bg); border: 1px dashed #c4ccd2; flex: none; }
.tcard__meta span { display: block; }
.tcard__meta .n { font-weight: 700; color: var(--ink-soft); font-size: .92rem; }
.tcard__meta .t { color: #9aa6af; font-size: .82rem; }

/* ---------- Bottom CTA ---------- */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-final .lede { max-width: 620px; margin: 0 auto 34px; }
.cta-final__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-final__fine { margin-top: 22px; font-size: .95rem; color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.78); padding: 64px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand__name { color: var(--white); }
.footer-tag { margin-top: 18px; max-width: 320px; font-size: .98rem; line-height: 1.55; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a:hover { color: var(--blue); }
.footer-contact a { color: var(--white); font-weight: 700; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom { padding-top: 28px; font-size: .88rem; color: rgba(255,255,255,.55); }

/* =================================================================
   PAGE: How It Works
   ================================================================= */

/* page hero - used on subpages, smaller than homepage hero */
.page-hero {
  padding: 84px 0 72px;
  background: linear-gradient(180deg, #F5F6F7 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 820px; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.page-hero .lede { font-size: 1.22rem; max-width: 720px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: var(--ink-soft); margin-bottom: 22px; font-weight: 700; }
.crumbs a:hover { color: var(--navy); }
.crumbs .sep { opacity: .4; }
.crumbs .now { color: var(--navy); }

/* timeline */
.timeline { position: relative; display: grid; gap: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 31px; top: 28px; bottom: 28px;
  width: 2px; background: linear-gradient(180deg, var(--green) 0%, var(--blue) 100%);
  border-radius: 2px;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px 32px 28px;
  box-shadow: var(--shadow-sm);
}
.tl-step__dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  display: grid; place-items: center; color: var(--navy);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--white);
}
.tl-step__num {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: .82rem;
  font-weight: 700; display: grid; place-items: center;
}
.tl-step__body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.tl-step__body p { color: var(--ink-soft); margin-bottom: 14px; }
.tl-step__body p:last-child { margin-bottom: 0; }
.tl-step__list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.tl-step__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .98rem; color: var(--ink);
}
.tl-step__list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-top: 9px; flex: none;
}
.tl-step__list--single { grid-template-columns: 1fr; }

/* privacy block (navy) */
.privacy {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(102,194,233,.18), transparent 65%);
  pointer-events: none;
}
.privacy__head { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 28px; max-width: 820px; }
.privacy__shield {
  width: 64px; height: 64px; border-radius: 16px; flex: none;
  background: rgba(102,194,233,.16); color: var(--blue);
  display: grid; place-items: center;
}
.privacy h2 { color: var(--white); font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.privacy__body { max-width: 780px; display: grid; gap: 18px; font-size: 1.06rem; line-height: 1.65; color: rgba(255,255,255,.86); }
.privacy__body b { color: var(--white); }
.privacy__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.16);
}
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar__icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(67,183,99,.18); color: var(--green);
  display: grid; place-items: center;
}
.pillar__t { font-weight: 700; color: var(--white); font-size: 1.05rem; line-height: 1.35; }

/* questions list */
.qlist { display: grid; gap: 14px; counter-reset: q; }
.qrow {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.qrow:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.qrow__num {
  counter-increment: q;
  font-weight: 700;
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.qrow__num::before { content: counter(q, decimal-leading-zero); }
.qrow__q { font-weight: 700; color: var(--navy); font-size: 1.08rem; margin-bottom: 4px; }
.qrow__why { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }

/* email mockup */
.email-frame {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.email-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #F0F2F4; border-bottom: 1px solid var(--line);
}
.email-bar__dots { display: flex; gap: 6px; }
.email-bar__dots span {
  width: 11px; height: 11px; border-radius: 50%; background: #d6dade;
}
.email-bar__dots span:nth-child(1) { background: #ff6058; }
.email-bar__dots span:nth-child(2) { background: #ffbd2e; }
.email-bar__dots span:nth-child(3) { background: #28c941; }
.email-bar__url {
  margin-left: 14px; font-family: ui-monospace, Menlo, monospace;
  font-size: .82rem; color: var(--ink-soft);
  background: #fff; padding: 5px 12px; border-radius: 6px;
  border: 1px solid var(--line); flex: 1;
}
.email-head {
  padding: 22px 32px; border-bottom: 1px solid var(--line);
  display: grid; gap: 6px; font-size: .93rem;
}
.email-head__row { display: grid; grid-template-columns: 70px 1fr; gap: 12px; }
.email-head__row b { color: var(--ink-soft); font-weight: 700; }
.email-head__subj { font-size: 1.18rem; color: var(--navy); font-weight: 700; margin-top: 4px; }
.email-body {
  padding: 30px 36px 34px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: .94rem; line-height: 1.7; color: var(--ink);
}
.email-body p { margin: 0 0 16px; }
.email-body .opt {
  background: var(--gray-bg); border-left: 3px solid var(--blue);
  padding: 14px 18px; margin: 0 0 16px; border-radius: 4px;
}
.email-body .opt-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.email-body .rec {
  background: rgba(67,183,99,.10); border-left: 3px solid var(--green);
  padding: 14px 18px; margin: 4px 0 18px; border-radius: 4px;
}
.email-body .rec b { color: var(--green-700); }
.email-body .sig { margin-top: 22px; color: var(--ink-soft); }
.email-body .sig b { color: var(--navy); }
.email-body .ph { color: var(--ink-soft); }

/* generic CTA strip on subpages */
.cta-strip { text-align: center; }
.cta-strip h2 { margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-strip .lede { max-width: 620px; margin: 0 auto 32px; }

/* responsive tweaks for this page */
@media (max-width: 980px) {
  .timeline::before { left: 24px; }
  .tl-step { grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 22px; }
  .tl-step__dot { width: 48px; height: 48px; }
  .tl-step__list { grid-template-columns: 1fr; }
  .privacy { padding: 44px 28px; }
  .privacy__pillars { grid-template-columns: 1fr; gap: 18px; }
  .privacy__head { gap: 18px; }
  .email-body { padding: 24px 22px; font-size: .9rem; }
  .email-head { padding: 18px 22px; }
}
@media (max-width: 760px) {
  .qrow { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 20px; }
}

/* =================================================================
   FORMS (quote.html)
   ================================================================= */
.form-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 48px;
}
.form-card__progress {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 18px;
}
.form-card__progress .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.form-fieldset { border: none; padding: 0; margin: 0 0 36px; }
.form-fieldset:last-of-type { margin-bottom: 24px; }
.form-fieldset legend {
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  color: var(--green); text-transform: uppercase; margin-bottom: 18px;
  padding: 0; display: flex; align-items: center; gap: 10px;
}
.form-fieldset legend::before {
  content: ""; width: 28px; height: 2px; background: var(--green);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.form-grid--full > * { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; color: var(--navy); font-size: .96rem; }
.field label .req { color: var(--green); }
.field .hint { font-size: .85rem; color: var(--ink-soft); margin-top: -2px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,59,92,.12);
}
.field textarea { resize: vertical; min-height: 96px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-group input { position: absolute; opacity: 0; pointer-events: none; }
.chip-group label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: .92rem; font-weight: 700; color: var(--ink);
  cursor: pointer; transition: all .15s ease;
}
.chip-group input:checked + label {
  border-color: var(--navy); background: var(--navy); color: var(--white);
}
.chip-group input:focus-visible + label { box-shadow: 0 0 0 3px rgba(0,59,92,.18); }

.form-actions {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.form-actions .legal { font-size: .88rem; color: var(--ink-soft); }

/* Aside next to form */
.form-aside { display: grid; gap: 20px; position: sticky; top: 100px; }
.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.aside-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.aside-card p { color: var(--ink-soft); font-size: .96rem; line-height: 1.5; }
.aside-card.navy { background: var(--navy); color: var(--white); border-color: transparent; }
.aside-card.navy h3 { color: var(--white); }
.aside-card.navy p { color: rgba(255,255,255,.82); }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: .96rem; }
.aside-list li { display: flex; gap: 10px; align-items: flex-start; }
.aside-list li svg { flex: none; margin-top: 2px; }

/* Confirmation state */
.confirm {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 44px;
  box-shadow: var(--shadow-md);
}
.confirm__icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(67,183,99,.14); color: var(--green-700);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.confirm h2 { margin-bottom: 14px; }
.confirm p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 24px; font-size: 1.05rem; }
.confirm__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 640px; margin: 32px auto 0; text-align: left;
}
.confirm__steps .s {
  background: var(--gray-bg); border-radius: var(--radius); padding: 18px 20px;
  font-size: .92rem; line-height: 1.45;
}
.confirm__steps .s b { display: block; color: var(--navy); margin-bottom: 4px; }

/* =================================================================
   PROVIDER & COMPARISON CARDS
   ================================================================= */
.provider-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.provider-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column; gap: 16px;
}
.provider-card:hover {
  transform: translateY(-3px); border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.provider-card .logo-slot { height: 64px; margin-bottom: 4px; }
.provider-card h3 { font-size: 1.25rem; }
.provider-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.provider-card .tag-row {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.provider-card .tag {
  font-size: .78rem; font-weight: 700;
  background: var(--blue-50); color: var(--navy);
  padding: 4px 10px; border-radius: 999px;
}
.provider-card .more {
  color: var(--navy); font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.provider-card:hover .more { color: var(--green-700); }

.vs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vs-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 30px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 18px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.vs-card:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.vs-card__side { text-align: center; }
.vs-card__name { font-weight: 700; color: var(--navy); font-size: 1.08rem; line-height: 1.2; }
.vs-card__tag { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.vs-card__sep {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .82rem;
  letter-spacing: .04em;
}
.vs-card__foot {
  grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; color: var(--ink-soft); margin-top: 4px;
}
.vs-card__foot b { color: var(--navy); }

/* =================================================================
   COMPANY SIZE CARDS
   ================================================================= */
.size-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.size-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 38px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: flex-start;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.size-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.size-card__num {
  font-size: 2.4rem; font-weight: 700; color: var(--navy);
  line-height: 1; letter-spacing: -.02em; white-space: nowrap;
}
.size-card__num span { color: var(--green); font-size: 1rem; display: block; margin-top: 6px; letter-spacing: .04em; }
.size-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.size-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 14px; }
.size-card .more { color: var(--navy); font-weight: 700; font-size: .95rem; }
.size-card:hover .more { color: var(--green-700); }

/* =================================================================
   LONG-FORM ARTICLE (pricing-guide)
   ================================================================= */
.article-wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px;
  align-items: start;
}
.article {
  max-width: 740px; font-size: 1.07rem; line-height: 1.7; color: var(--ink);
}
.article > * + * { margin-top: 22px; }
.article h2 { font-size: 1.8rem; margin-top: 56px; }
.article h3 { font-size: 1.3rem; margin-top: 36px; color: var(--navy); }
.article p { margin: 0; }
.article ul { padding-left: 22px; }
.article ul li { margin-bottom: 8px; }
.article .callout {
  background: var(--blue-50); border-left: 4px solid var(--blue);
  padding: 22px 26px; border-radius: 6px; margin: 32px 0;
}
.article .callout b { color: var(--navy); }

/* pricing table */
.pricing-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  font-size: .98rem; margin: 28px 0;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing-table th { background: var(--gray-bg); color: var(--navy); font-weight: 700; font-size: .9rem; letter-spacing: .04em; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td.price { font-weight: 700; color: var(--navy); }

/* article TOC */
.toc {
  position: sticky; top: 100px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.toc h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; font-weight: 700; }
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .94rem; }
.toc a { color: var(--ink); border-left: 2px solid var(--line); padding-left: 12px; display: block; }
.toc a:hover { color: var(--navy); border-color: var(--green); }

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start;
}
.about-prose { font-size: 1.07rem; line-height: 1.7; color: var(--ink); display: grid; gap: 18px; }
.about-prose b { color: var(--navy); }
.contact-card {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 36px; position: sticky; top: 100px;
}
.contact-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.contact-card p { color: rgba(255,255,255,.82); margin-bottom: 24px; }
.contact-card__rows { display: grid; gap: 14px; }
.contact-card__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: rgba(255,255,255,.06);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.10);
}
.contact-card__row svg { flex: none; color: var(--blue); }
.contact-card__row a { color: #fff; font-weight: 700; }
.contact-card__row a:hover { color: var(--green); }
.contact-card__row .label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* =================================================================
   PAGE RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-aside { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .form-card { padding: 32px 28px; }
  .provider-grid { grid-template-columns: 1fr 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; gap: 36px; }
  .toc { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { position: static; }
  .confirm__steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-aside { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr; }
  .size-card { grid-template-columns: 1fr; gap: 12px; padding: 28px 26px; }
  .vs-card { grid-template-columns: 1fr; text-align: center; }
  .vs-card__sep { margin: 0 auto; }
  .form-card { padding: 28px 22px; }
}

/* =================================================================
   PROVIDER PROFILE PAGE
   ================================================================= */
.profile-wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 56px;
  align-items: start;
}
.profile-sidebar {
  position: sticky; top: 100px;
  display: grid; gap: 20px;
}
.quick-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px;
}
.quick-card h4 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; font-weight: 700;
}
.quick-rows { display: grid; gap: 10px; }
.quick-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .96rem; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.quick-row:last-child { border-bottom: none; padding-bottom: 0; }
.quick-row .ql { color: var(--ink-soft); }
.quick-row .qv { font-weight: 700; color: var(--navy); }

.verdict {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 24px 26px;
}
.verdict h4 { color: var(--blue); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.verdict p { color: rgba(255,255,255,.85); font-size: .96rem; line-height: 1.55; margin-bottom: 16px; }

/* pros / cons */
.procon { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.procon__col { background: var(--gray-bg); border-radius: var(--radius); padding: 22px 24px; }
.procon__col.pros { border-top: 3px solid var(--green); }
.procon__col.cons { border-top: 3px solid #e05c5c; }
.procon__col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.procon__col.pros h4 { color: var(--green-700); }
.procon__col.cons h4 { color: #c04040; }
.procon__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.procon__list li { display: flex; gap: 10px; font-size: .96rem; line-height: 1.4; }
.procon__list li svg { flex: none; margin-top: 2px; }

/* feature comparison table */
.feat-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin: 28px 0; font-size: .96rem;
}
.feat-table th, .feat-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.feat-table th { background: var(--gray-bg); font-weight: 700; color: var(--navy); font-size: .88rem; letter-spacing: .04em; }
.feat-table tr:last-child td { border-bottom: none; }
.feat-table td:not(:first-child) { text-align: center; font-weight: 700; }
.feat-table .yes { color: var(--green-700); }
.feat-table .add { color: var(--ink-soft); font-weight: 400; font-size: .88rem; }
.feat-table .no  { color: #c04040; }

/* tier pricing strip */
.tier-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.tier-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px; text-align: center;
}
.tier-card.featured { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.tier-card .t-badge {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
}
.tier-card .t-name { font-weight: 700; color: var(--navy); font-size: 1.08rem; margin-bottom: 6px; }
.tier-card .t-price { font-size: 1.8rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.tier-card .t-price sup { font-size: 1rem; vertical-align: super; }
.tier-card .t-price sub { font-size: .8rem; font-weight: 400; color: var(--ink-soft); }
.tier-card .t-list { list-style: none; padding: 0; margin: 14px 0 0; text-align: left; display: grid; gap: 7px; font-size: .88rem; color: var(--ink-soft); }
.tier-card .t-list li::before { content: "· "; color: var(--green); font-weight: 700; }

/* decision callout (who should pick this) */
.decision-box {
  background: var(--blue-50); border: 1px solid var(--blue);
  border-radius: var(--radius); padding: 24px 28px; margin: 28px 0;
}
.decision-box h3 { color: var(--navy); font-size: 1.18rem; margin-bottom: 12px; }
.decision-box ul { padding-left: 22px; margin: 0; display: grid; gap: 8px; font-size: .98rem; }

/* =================================================================
   COMPARISON PAGE
   ================================================================= */
.compare-hero-vs {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 32px; flex-wrap: wrap;
}
.compare-hero-vs .side { text-align: center; }
.compare-hero-vs .side .name { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.compare-hero-vs .side .sub { font-size: .92rem; color: var(--ink-soft); }
.compare-hero-vs .pill-vs {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  display: grid; place-items: center; flex: none;
}

.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin: 28px 0; font-size: .96rem;
}
.compare-table th, .compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); }
.compare-table th { background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; }
.compare-table th:first-child { background: var(--gray-bg); color: var(--navy); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .cat { font-weight: 700; color: var(--navy); background: var(--gray-bg); }
.compare-table .edge { color: var(--green-700); font-weight: 700; }
.compare-table .neutral { color: var(--ink-soft); }

.winner-callout {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px 44px; margin: 40px 0; text-align: center;
}
.winner-callout h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 14px; }
.winner-callout p { color: rgba(255,255,255,.84); max-width: 640px; margin: 0 auto 24px; }
.winner-callout .split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; margin-top: 32px; }
.winner-callout .pick { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 22px 24px; }
.winner-callout .pick h4 { color: var(--blue); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.winner-callout .pick p { color: rgba(255,255,255,.84); margin: 0; font-size: .96rem; }

/* =================================================================
   SIZE DETAIL PAGE
   ================================================================= */
.size-hero-num {
  font-size: 4rem; font-weight: 700; color: var(--green);
  letter-spacing: -.03em; line-height: 1;
}
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0; }
.rec-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.rec-card .logo-slot { height: 56px; }
.rec-card .fit-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-700);
}
.rec-card h3 { font-size: 1.08rem; margin: 0; }
.rec-card p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.rec-card .est { font-weight: 700; color: var(--navy); font-size: .92rem; }

.watch-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.watch-list li {
  display: flex; gap: 14px; padding: 18px 22px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: .98rem;
}
.watch-list li svg { flex: none; margin-top: 2px; }

/* Responsive tweaks */
@media (max-width: 980px) {
  .profile-wrap { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .procon { grid-template-columns: 1fr; }
  .tier-strip { grid-template-columns: 1fr; }
  .compare-table { font-size: .88rem; }
  .winner-callout .split { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr 1fr; }
  .winner-callout { padding: 30px 24px; }
}
@media (max-width: 760px) {
  .compare-hero-vs { gap: 16px; }
  .rec-grid { grid-template-columns: 1fr; }
  .tier-strip { grid-template-columns: 1fr; }
}

/* ---------- Hero preview switcher (dev tool - remove before deploy) ---------- */
.hero-switch {
  position: fixed; bottom: 18px; right: 18px; z-index: 200;
  background: var(--navy-900); color: #fff; border-radius: 999px;
  padding: 6px; display: flex; gap: 4px; box-shadow: var(--shadow-lg);
  font-size: .82rem;
}
.hero-switch button {
  background: transparent; border: none; color: rgba(255,255,255,.7);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .82rem;
}
.hero-switch button.active { background: var(--green); color: #fff; }
.hero-switch__label { color: rgba(255,255,255,.5); padding: 8px 4px 8px 12px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --section-y: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__aside { max-width: 460px; }
  .steps { grid-template-columns: 1fr; }
  .whys { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 36px; }
  .fit-panel { position: static; }
  .providers-row { grid-template-columns: repeat(4, 1fr); }
  .tcards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 14px 28px; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin: 10px 28px; justify-content: center; }
  .nav__toggle { display: flex; }
  .providers-row { grid-template-columns: repeat(2, 1fr); }

  /* Providers dropdown mobile */
  .nav__dropdown { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .nav__dropdown-trigger { padding: 14px 28px !important; width: 100%; justify-content: space-between; }
  .nav__dropdown-menu {
    position: static; transform: none !important;
    width: 100%; border-radius: 0; border: none;
    border-top: 1px solid var(--line); box-shadow: none;
    padding: 6px 0; background: var(--gray-bg);
    grid-template-columns: 1fr 1fr;
    display: none; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: grid !important; }
  .nav__dropdown-menu a { padding: 10px 24px !important; white-space: normal; }
  .nav__dropdown-menu a.dropdown-all { grid-column: 1/-1; border-top: 1px solid var(--line); margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__cta-row { width: 100%; }
  .hero__cta-row .btn { width: 100%; }
}

/* Related links */
.rel-link { display:inline-block; color:var(--navy); font-size:0.92rem; font-weight:600; text-decoration:none; padding:6px 0; border-bottom:1.5px solid transparent; transition:border-color .15s,color .15s; }
.rel-link:hover { color:var(--green); border-bottom-color:var(--green); }
.rel-link--prov { background:#fff; border:1.5px solid #dde4ea; border-radius:6px; padding:7px 14px; margin-bottom:0; }
.rel-link--prov:hover { border-color:var(--green); }
