/* ==========================================================================
   EzMedSource — site.css (foundation stylesheet)
   New pages load ONLY this file + js/site.js. Do not load legacy style.css.
   Vanilla CSS, mobile-first, zero frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy: #16254a;
  --navy-dark: #0d1529;
  --navy-light: #1e3463;
  --cyan: #119fdc;
  --cyan-light: #2fb4ed;
  --cyan-deep: #0879a5;
  --cyan-glow: rgba(17, 159, 220, .3);
  --emerald: #10b981; /* success checkmarks ONLY */

  /* Slate grays */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;

  /* Surfaces & gradients */
  --hero-gradient: linear-gradient(135deg, #0d1529 0%, #16254a 55%, #1e3463 100%);
  --btn-gradient: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 45%, var(--cyan-deep) 100%);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Shape & shadow */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, .18);

  /* Layout */
  --container: 1160px;
  --container-narrow: 800px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 { margin: 0 0 .6em; color: var(--slate-900); line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

a { color: var(--cyan-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

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

/* --------------------------------------------------------------------------
   3. Type scale
   -------------------------------------------------------------------------- */
h1, .h-display {
  font-size: clamp(2.35rem, 5.2vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
h2 { font-size: clamp(1.75rem, 3.4vw, 2.45rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 700; }

.lede { font-size: 1.125rem; color: var(--slate-500); }

.eyebrow {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: .75rem;
}

/* --------------------------------------------------------------------------
   4. Layout / containers / utilities
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container-narrow { max-width: var(--container-narrow); }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* --------------------------------------------------------------------------
   5. Announcement bar
   -------------------------------------------------------------------------- */
.announce-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .88);
  font-size: .875rem;
  text-align: center;
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.announce-bar a { color: var(--cyan-light); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.announce-bar a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   6. Header / nav
   -------------------------------------------------------------------------- */
/* Dark navy header — the brand logo is white-on-transparent and needs a dark surface */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 21, 41, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(2, 6, 16, .45); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  transition: min-height .2s ease;
}
.site-header.is-scrolled .header-inner { min-height: 58px; }

.logo { display: inline-flex; align-items: center; gap: .55rem; }
.logo:hover { text-decoration: none; }
.logo-img { height: 40px; width: auto; transition: height .2s ease; }
.site-header.is-scrolled .logo-img { height: 34px; }
.logo-text { display: none; /* hidden — the logo image already contains the wordmark */ }

.site-nav { display: flex; align-items: center; gap: 1.75rem; flex: 1; justify-content: flex-end; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  background: none;
  border: 0;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, .07); text-decoration: none; }
.nav-link.is-active { color: var(--cyan-light); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle .chevron { transition: transform .2s ease; }
.has-dropdown.open .dropdown-toggle .chevron,
.has-dropdown:hover .dropdown-toggle .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-link {
  display: block;
  padding: .6rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--slate-700);
}
.dropdown-link:hover { background: var(--slate-50); color: var(--cyan-deep); text-decoration: none; }

/* Header actions */
.nav-actions { display: flex; align-items: center; gap: .9rem; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border: 1.5px solid var(--cyan-light);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--cyan-light);
  white-space: nowrap;
}
.nav-pill:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; text-decoration: none; }

.nav-login { font-size: .9375rem; font-weight: 600; color: rgba(255, 255, 255, .85); white-space: nowrap; }
.nav-login:hover { color: var(--cyan-light); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
@media (max-width: 1079px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 48px rgba(2, 6, 16, .5);
    padding: .75rem 1.25rem 1.25rem;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-open .site-nav { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { width: 100%; padding: .8rem .5rem; border-radius: var(--radius-sm); justify-content: space-between; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, .06);
    margin: 0 0 .25rem;
  }
  .dropdown-link { color: rgba(255, 255, 255, .78); }
  .dropdown-link:hover { background: rgba(255, 255, 255, .08); color: #fff; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown:hover .dropdown-menu { display: none; } /* mobile: click only */
  .has-dropdown.open:hover .dropdown-menu { display: block; }
  .nav-actions {
    flex-wrap: wrap;
    padding-top: 1rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
}

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 4px 14px var(--cyan-glow);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--cyan-glow); color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover::after { animation: btn-shine .7s ease; }
}
@keyframes btn-shine {
  from { transform: skewX(-20deg) translateX(0); }
  to { transform: skewX(-20deg) translateX(420%); }
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--slate-200);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); }

/* Outline variant for dark surfaces */
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  color: var(--cyan-deep);
}
.btn-text:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-text .arrow { transition: transform .15s ease; }
.btn-text:hover .arrow { transform: translateX(3px); }
.btn-text-light { color: var(--cyan-light); }
.btn-text-light:hover { color: #fff; }

.btn-lg { padding: .95rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }

/* --------------------------------------------------------------------------
   8. Hero (dark)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  color: #fff;
  padding: 4.5rem 0 5rem;
}
@media (min-width: 920px) { .hero { padding: 6.5rem 0 7rem; } }

/* Two blurred cyan radial orbs — gradient alpha only, no filters */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  top: -200px; right: -140px;
  background: radial-gradient(circle, rgba(17, 159, 220, .22) 0%, transparent 65%);
}
.hero::after {
  width: 520px; height: 520px;
  bottom: -240px; left: -160px;
  background: radial-gradient(circle, rgba(17, 159, 220, .15) 0%, transparent 65%);
}

.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 820px; }
.hero-inner.text-center { margin-inline: auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero-sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 680px;
  margin-bottom: 1.9rem;
}
.hero-inner.text-center .hero-sub { margin-inline: auto; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.hero-inner.text-center .hero-cta-row { justify-content: center; }
.hero-alt-link { display: block; font-size: .9375rem; color: rgba(255, 255, 255, .72); margin-bottom: 2.1rem; }
.hero-alt-link a { color: var(--cyan-light); font-weight: 600; }
.hero-alt-link a:hover { color: #fff; }

/* Hero inline search */
.hero-search {
  display: flex;
  gap: .4rem;
  max-width: 600px;
  padding: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero-inner.text-center .hero-search { margin-inline: auto; }
.hero-search input {
  flex: 1;
  min-width: 0;
  padding: .65rem 1.1rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .9875rem;
}
.hero-search input::placeholder { color: rgba(255, 255, 255, .58); }
.hero-search input:focus { outline: none; }
.hero-search:focus-within { border-color: var(--cyan-light); box-shadow: 0 0 0 3px var(--cyan-glow); }
.hero-search button {
  flex-shrink: 0;
  padding: .65rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
}
.hero-search button:hover { box-shadow: 0 4px 14px var(--cyan-glow); }
@media (max-width: 540px) {
  .hero-search { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-search button { padding: .8rem 1.4rem; }
}

.hero-trust {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Section rhythm
   -------------------------------------------------------------------------- */
.section { padding: 4rem 0; }
@media (min-width: 920px) { .section { padding: 5.5rem 0; } }

.section-tint { background: var(--slate-50); }

.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, .82);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--cyan-light); }
.section-dark .lede { color: rgba(255, 255, 255, .72); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { margin-bottom: .5rem; }
.section-head .lede { margin-bottom: 0; }
.section-head-left { margin-inline: 0; text-align: left; }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

/* Product family card (3-up) */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--cyan); }
.product-card .card-kicker {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: .9rem;
}
.product-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.product-card p { color: var(--slate-500); flex: 1; }
.product-card .card-links { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: .75rem; }

/* Icon chip (shared) */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(17, 159, 220, .1);
  color: var(--cyan-deep);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.icon-chip svg { width: 26px; height: 26px; }
.section-dark .icon-chip { background: rgba(17, 159, 220, .18); color: var(--cyan-light); }

/* Intent card (4-up "I want to…") */
.intent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .25rem;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  color: var(--slate-700);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.intent-card:hover {
  text-decoration: none;
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.intent-card .icon-chip { margin-bottom: .6rem; }
.intent-card strong { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); }
.intent-card span { font-size: .875rem; color: var(--slate-500); }

/* Feature card */
.feature-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: .4rem; }
.feature-card p { color: var(--slate-500); margin-bottom: 0; font-size: .9375rem; }

/* Use-case card (cyan accent edge) */
.use-case-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
}
.use-case-card h3 { font-size: 1.0625rem; margin-bottom: .35rem; }
.use-case-card p { color: var(--slate-500); font-size: .9375rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   11. Logo strip / awards / badges
   -------------------------------------------------------------------------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3rem;
}
.logo-strip img {
  height: 40px;
  width: auto;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .2s ease, opacity .2s ease;
}
.logo-strip a:hover img, .logo-strip img:hover { filter: none; opacity: 1; }

.award-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.award-badge svg { width: 16px; height: 16px; color: var(--cyan-deep); flex-shrink: 0; }

.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(17, 159, 220, .12);
  color: var(--cyan-deep);
}

/* --------------------------------------------------------------------------
   12. Stat callouts
   -------------------------------------------------------------------------- */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label { display: block; font-size: .9375rem; color: var(--slate-500); font-weight: 500; }
.section-dark .stat-num { color: #fff; }
.section-dark .stat-label { color: rgba(255, 255, 255, .68); }

/* --------------------------------------------------------------------------
   13. Comparison table (legacy vs modern)
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .9375rem; background: #fff; }
.compare-table th, .compare-table td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--slate-100); }
.compare-table thead th { background: var(--navy); color: #fff; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .col-highlight { background: rgba(17, 159, 220, .06); }
.compare-table .check { color: var(--emerald); font-weight: 700; }
.compare-table .cross { color: var(--slate-500); }

@media (max-width: 719px) {
  .compare-table thead { display: none; }
  .compare-table tr { display: block; padding: .5rem 0; border-bottom: 1px solid var(--slate-200); }
  .compare-table td { display: flex; justify-content: space-between; gap: 1rem; border: 0; padding: .45rem 1rem; }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--slate-900);
  }
}

/* --------------------------------------------------------------------------
   14. Pricing cards
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 920px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.pricing-card.featured {
  border: 2px solid var(--cyan);
  box-shadow: 0 12px 36px var(--cyan-glow);
}
.pricing-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: .25rem .9rem;
  background: var(--btn-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.125rem; }
.price { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--slate-900); }
.price small { font-size: 1rem; font-weight: 600; color: var(--slate-500); }
.price-note { font-size: .875rem; color: var(--slate-500); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.pricing-features li {
  position: relative;
  padding: .35rem 0 .35rem 1.7rem;
  font-size: .9375rem;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0; top: .62rem;
  width: 16px; height: 16px;
  background: var(--emerald);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   15. Steps (numbered how-it-works)
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 2rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step { position: relative; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--btn-gradient);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px var(--cyan-glow);
}
.step h3 { font-size: 1.125rem; margin-bottom: .4rem; }
.step p { color: var(--slate-500); font-size: .9375rem; margin-bottom: 0; }
.section-dark .step p { color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------------------------
   16. Mission band
   -------------------------------------------------------------------------- */
.mission-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, .85);
  padding: 4.5rem 0;
}
@media (min-width: 920px) { .mission-band { padding: 6rem 0; } }
.mission-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 780px; }
.mission-band p { max-width: 680px; }
.mission-band .eyebrow { color: var(--cyan-light); }
.mission-stat {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cyan-light);
  line-height: 1.1;
}
.mission-quote {
  font-size: 1.1875rem;
  font-style: italic;
  color: #fff;
  border-left: 3px solid var(--cyan);
  padding-left: 1.25rem;
  max-width: 640px;
  margin: 1.75rem 0;
}

/* --------------------------------------------------------------------------
   17. Testimonial / quote cards
   -------------------------------------------------------------------------- */
.quote-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: .4rem;
  left: 1.25rem;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
  opacity: .35;
}
.quote-text { font-size: 1.125rem; font-weight: 600; color: var(--slate-900); margin: .9rem 0 1rem; }
.quote-attrib { font-size: .875rem; color: var(--slate-500); margin: 0; }
.quote-attrib strong { color: var(--slate-700); }

/* --------------------------------------------------------------------------
   18. FAQ (details/summary)
   -------------------------------------------------------------------------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cyan-deep);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--cyan-deep); }
.faq-a { padding: 0 2.25rem 1.25rem 0; color: var(--slate-500); margin: 0; }

/* --------------------------------------------------------------------------
   19. Final CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, .82);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 560px; margin-inline: auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .72);
  padding: 4rem 0 2rem;
  font-size: .9375rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-img { height: 36px; margin-bottom: 1rem; }
.footer-mission { font-weight: 600; color: #fff; margin-bottom: 1.1rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
}
.footer-social a:hover { background: var(--cyan-deep); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: rgba(255, 255, 255, .72); }
.footer-col a:hover { color: var(--cyan-light); text-decoration: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .65); }
.footer-bottom a:hover { color: var(--cyan-light); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }

/* --------------------------------------------------------------------------
   21. Timeline (vertical, for about)
   -------------------------------------------------------------------------- */
.timeline { position: relative; list-style: none; margin: 0; padding: 0 0 0 2rem; border-left: 2px solid var(--slate-200); }
.timeline-item { position: relative; padding-bottom: 2.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 7px);
  top: .35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-glow);
}
.timeline-year {
  display: block;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: .25rem;
}
.timeline-item h3 { font-size: 1.125rem; margin-bottom: .3rem; }
.timeline-item p { color: var(--slate-500); font-size: .9375rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   22. Story sections with stat sidebars (for mission)
   -------------------------------------------------------------------------- */
.story-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 920px) { .story-grid { grid-template-columns: 1.8fr 1fr; } }
.story-body h3 { margin-top: 1.5rem; }
.story-aside { display: grid; gap: 1rem; }
.aside-stat {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}
.aside-stat .stat-num { font-size: 2rem; color: var(--cyan-deep); }
.aside-stat .stat-label { font-size: .875rem; }

/* --------------------------------------------------------------------------
   23. Split layout (text + media) & screenshot frame
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse > :first-child { order: 2; }
}

.img-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #fff;
}
.img-frame img { width: 100%; }
.section-dark .img-frame, .hero .img-frame { border-color: rgba(255, 255, 255, .15); }

/* --------------------------------------------------------------------------
   24. Forms (simple)
   -------------------------------------------------------------------------- */
.input {
  width: 100%;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  color: var(--slate-900);
}
.input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-glow); }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--slate-700); margin-bottom: .35rem; }
.form-row { margin-bottom: 1.1rem; }

/* --------------------------------------------------------------------------
   25. Fade-in animation (gated by prefers-reduced-motion)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-in.is-visible { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   26. Legal pages (privacy policy / terms)
   -------------------------------------------------------------------------- */
.legal-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
}
@media (min-width: 720px) { .legal-card { padding: 3rem 3.5rem; } }

.legal-card h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(17, 159, 220, .25);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { font-size: .95rem; }
.legal-card li { margin-bottom: .4rem; }

.legal-note {
  background: rgba(17, 159, 220, .06);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.legal-note p { margin: 0; font-weight: 600; color: var(--slate-900); }

.legal-warning {
  background: var(--slate-100);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.legal-warning p { margin: 0; font-weight: 700; color: var(--slate-900); }

.legal-effective {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-500);
  font-size: .875rem;
}

/* --------------------------------------------------------------------------
   27. Print basics
   -------------------------------------------------------------------------- */
@media print {
  .announce-bar, .site-header, .site-footer, .cta-band, .hamburger, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  .section-dark, .mission-band, .hero { background: #fff !important; color: #000; }
  .section-dark h2, .section-dark h3, .hero h1, .mission-band h2 { color: #000; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}
