/* ==========================================================================
   HealthcareLab — Landing Page Styles
   Mobile-first. Editorial healthcare-tech system: Funnel Display + Funnel
   Sans, a 1400px content width, a strict 16px text floor, and restrained,
   intentional motion. WCAG 2.2 AA contrast throughout.
   ========================================================================== */

:root {
  --navy: #10281F;
  --navy-2: #163629;
  --slate: #4B5A4E;
  --slate-light: #6B7A6E;
  --teal: #1F6B4A;
  --teal-dark: #15563A;
  --teal-light: #E3EFE2;
  --cta: #C2410C;
  --cta-dark: #9A3412;
  --lime: #C6F135;
  --lime-dark: #9FCB1F;
  --pastel-blue-bg: #DCEEFB; --pastel-blue-fg: #24628F;
  --pastel-amber-bg: #F5EFD1; --pastel-amber-fg: #7A5E12;
  --pastel-purple-bg: #E7E0F7; --pastel-purple-fg: #6B4FA0;
  --pastel-green-bg: #E3EFE2; --pastel-green-fg: #1F6B4A;
  --bg: #FAF7EF;
  --bg-alt: #F1ECDF;
  --bg-card: #FFFFFF;
  --border: #E5DFCF;
  --border-strong: #D2C9B2;
  --success: #187A4B;
  --danger: #B3261E;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 40, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 40, 31, 0.10);
  --max-width: 1400px;
  --header-h: 84px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Funnel Display", "Funnel Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); font-size: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; color: var(--slate); font-size: 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.hl { color: var(--teal); }
.hl-lime {
  background: linear-gradient(180deg, transparent 60%, var(--lime) 60%);
  padding-inline: 3px;
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 640px) { .container { padding-inline: 40px; } }
@media (min-width: 1480px) { .container { padding-inline: 0; } }

section { padding-block: 72px; }
@media (min-width: 900px) { section { padding-block: 112px; } }

.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: #EAF1F5; }
.section-dark p { color: #C7D2C2; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* Editorial kicker label — a rule + uppercase word, not a pill badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-dark);
  flex-shrink: 0;
}
.section-dark .eyebrow { color: var(--lime); }
.section-dark .eyebrow::before { background: var(--lime); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: var(--navy); }
.section-dark .section-head h2 { color: #fff; }
.section-head p { font-size: 1.125rem; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1.2;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { transition: transform 0.25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.28);
}
.btn-cta:hover { background: var(--cta-dark); box-shadow: 0 8px 22px rgba(194, 65, 12, 0.34); }
.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--navy);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-light); }
.section-dark .btn-secondary, .hero-dark .btn-secondary { border-color: rgba(255,255,255,0.35); color: #fff; }
.section-dark .btn-secondary:hover, .hero-dark .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-lime { background: var(--lime); color: var(--navy); box-shadow: 0 4px 14px rgba(198, 241, 35, 0.32); }
.btn-lime:hover { background: var(--lime-dark); box-shadow: 0 8px 22px rgba(198, 241, 35, 0.4); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1.0625rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 239, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 239, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(16,40,31,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
}
.logo .mark { flex-shrink: 0; }
.logo .word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo .word .lab { color: var(--teal-dark); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 8px; }
.main-nav a {
  position: relative;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--teal-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover { color: var(--teal-dark); background: rgba(31, 107, 74, 0.07); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 24px 24px 32px;
  overflow-y: auto;
  display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1875rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 980px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------------- Reveal / stagger motion ----------------
   Visible by default so content never depends on JavaScript running.
   Only when the `js` class lands on <html> (see inline script in <head>)
   do elements hide briefly and animate in via IntersectionObserver. */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms) !important; }

/* Image/media reveal — clip-path + scale, distinct from the plain fade/slide */
html.js .reveal-image {
  clip-path: inset(5% 5% 5% 5% round 18px);
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), clip-path 0.8s var(--ease);
}
html.js .reveal-image.is-visible { clip-path: inset(0% round 18px); transform: scale(1); }

/* ---------------- Hero (dark) ---------------- */
.hero { padding-top: 72px; padding-bottom: 88px; overflow: hidden; position: relative; }
@media (min-width: 900px) { .hero { padding-top: 100px; padding-bottom: 110px; } }
.hero-dark { background: var(--navy); }
.hero-dark .texture-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.hero-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -10%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(198,241,53,0.16), transparent 62%);
  pointer-events: none;
}

.hero-copy-center { position: relative; z-index: 1; max-width: 1300px; margin-inline: auto; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #EAF1F5;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.24); }
.hero-badge svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.hero-badge:hover svg { transform: translateX(3px); }
.hero-badge-tag { background: var(--lime); color: var(--navy); font-size: 0.8125rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; }

.hero-copy-center h1 {
  font-size: clamp(2.75rem, 6.6vw, 5.75rem);
  color: #fff;
  margin-bottom: 24px;
  max-width: 21ch;
  margin-inline: auto;
}
/* On the dark hero, the partial "highlighter" gradient (transparent
   top + lime bottom) leaves navy text nearly invisible against the dark
   background wherever it sits over the transparent portion. Use a solid
   full-height lime block instead so the navy text always has contrast. */
.hero-dark .hl-lime {
  background: var(--lime);
  color: var(--navy);
  border-radius: 6px;
  padding-inline: 10px;
}
.hero-copy-center .lede {
  font-size: 1.3125rem;
  line-height: 1.55;
  color: #C7D2C2;
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 32px;
}
.hero-trust {
  margin-top: 22px;
  font-size: 1rem;
  color: #90A28C;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  align-items: center;
}
.hero-dark .btn-row { justify-content: center; }
.hero-trust a { color: var(--lime); font-weight: 600; text-decoration: none; }
.hero-trust a:hover { text-decoration: underline; }
.hero-trust .dot { color: #3E5347; }

/* ---------------- Trust bar ---------------- */
.trust-list { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .trust-list { grid-template-columns: repeat(5, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 20px 12px; }
.trust-item .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--pastel-blue-bg); color: var(--pastel-blue-fg); display: flex; align-items: center; justify-content: center; }
.trust-item .icon svg { width: 24px; height: 24px; }
.trust-item span.label { font-size: 1rem; font-weight: 600; color: var(--navy); }
.trust-item:nth-child(4n+2) .icon { background: var(--pastel-amber-bg); color: var(--pastel-amber-fg); }
.trust-item:nth-child(4n+3) .icon { background: var(--pastel-purple-bg); color: var(--pastel-purple-fg); }
.trust-item:nth-child(4n+4) .icon { background: var(--pastel-green-bg); color: var(--pastel-green-fg); }

/* ---------------- Card grids ---------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); transform: translateY(-3px); }
.card .icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--navy); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.1875rem; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: 1rem; margin-bottom: 0; }

.card.problem .icon { background: var(--cta-dark); color: #fff; }

.center-cta { text-align: center; margin-top: 44px; }

/* ---------------- Editorial numbered rows (Services) ---------------- */
.row-list { display: flex; flex-direction: column; }
.row-item {
  display: flex;
  gap: 24px;
  padding-block: 32px;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.row-list .row-item:last-child { border-bottom: 1px solid var(--border); }
.row-item .row-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-light);
  padding-top: 6px;
  min-width: 40px;
}
.row-item .row-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
@media (min-width: 780px) {
  .row-item .row-body { flex-direction: row; align-items: center; gap: 40px; }
  .row-item .row-heading { flex: 0 0 340px; }
  .row-item .row-desc { flex: 1; margin: 0; max-width: none; }
}
.row-item .row-heading { display: flex; align-items: center; gap: 16px; }
.row-item h3 { font-size: 1.375rem; margin: 0; color: var(--navy); }
.row-item .row-desc { font-size: 1.0625rem; margin: 0; max-width: 56ch; }
.row-icon {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--pastel-blue-bg); color: var(--pastel-blue-fg);
  display: flex; align-items: center; justify-content: center;
}
.row-icon svg { width: 23px; height: 23px; }
.row-list .row-item:nth-of-type(4n+2) .row-icon,
.why-list li:nth-of-type(4n+2) .row-icon { background: var(--pastel-amber-bg); color: var(--pastel-amber-fg); }
.row-list .row-item:nth-of-type(4n+3) .row-icon,
.why-list li:nth-of-type(4n+3) .row-icon { background: var(--pastel-purple-bg); color: var(--pastel-purple-fg); }
.row-list .row-item:nth-of-type(4n+4) .row-icon,
.why-list li:nth-of-type(4n+4) .row-icon { background: var(--pastel-green-bg); color: var(--pastel-green-fg); }
.section-dark .row-icon { background: rgba(255,255,255,0.08); color: var(--lime); }
.section-dark .row-item { border-color: rgba(255,255,255,0.14); }
.section-dark .row-item h3 { color: #fff; }
.section-dark .row-item .row-num { color: #90A28C; }

/* ---------------- Why HealthcareLab (split intro + list) ---------------- */
.why-wrap { display: grid; gap: 20px; }
@media (min-width: 900px) { .why-wrap { grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; } }
.why-intro { position: relative; }
@media (min-width: 900px) { .why-intro { position: sticky; top: calc(var(--header-h) + 40px); } }
.why-intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.why-intro p { font-size: 1.125rem; }
.why-list { display: flex; flex-direction: column; }
.why-list li { display: flex; gap: 20px; align-items: flex-start; padding-block: 26px; border-top: 1px solid var(--border-strong); }
.why-list li > div:last-child { flex: 1; min-width: 0; }
.why-list li:last-child { border-bottom: 1px solid var(--border-strong); }
.why-list h3 { font-size: 1.1875rem; margin-bottom: 6px; }
.why-list p { font-size: 1.0625rem; margin: 0; }

/* ---------------- Solution features ---------------- */
.feature-row { display: grid; gap: 18px; }
@media (min-width: 720px) { .feature-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1080px) { .feature-row { grid-template-columns: repeat(3, 1fr); } }
.feature { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid var(--border); }
.feature .num { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.feature h3 { font-size: 1.125rem; margin-bottom: 6px; }
.feature p { font-size: 1rem; margin: 0; }

/* ---------------- Before / After ---------------- */
.ba-wrap { display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 780px) { .ba-wrap { grid-template-columns: 1fr auto 1fr; } }
.ba-card { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.ba-card.before { background: #F7F2EF; }
.ba-card.after { background: var(--teal-light); border-color: #D3E7C4; }
.ba-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1875rem; margin-bottom: 18px; }
.ba-tag { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 12px; border-radius: 6px; }
.ba-card.before .ba-tag { background: #EADDD5; color: #8A4A22; }
.ba-card.after .ba-tag { background: #D9F0C9; color: var(--teal-dark); }
.ba-card ul { display: flex; flex-direction: column; gap: 12px; }
.ba-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 1.0625rem; color: var(--slate); }
.ba-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.ba-card.before li svg { color: #B3261E; }
.ba-card.after li svg { color: var(--success); }
.ba-arrow { display: flex; align-items: center; justify-content: center; color: var(--teal); }
.ba-arrow svg { width: 32px; height: 32px; }
@media (max-width: 779px) { .ba-arrow svg { transform: rotate(90deg); margin: 0 auto; } }

/* ---------------- Process ---------------- */
.process-list { display: grid; gap: 20px; }
@media (min-width: 900px) { .process-list { grid-template-columns: repeat(4, 1fr); } }
.process-step { padding: 28px 24px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid var(--border); position: relative; }
.process-step .step-num { font-size: 1rem; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.02em; margin-bottom: 12px; display: block; font-family: var(--font-display); }
.process-step h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.process-step p { font-size: 1rem; margin: 0; }

/* ---------------- Portfolio ---------------- */
.portfolio-image {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--teal-light), #fff 70%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.portfolio-image:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.portfolio-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.portfolio-image:hover img { transform: scale(1.04); }

/* ==========================================================================
   Carousel — native scroll-snap track, works with touch/trackpad by
   default; JS only adds arrow buttons, dot pagination, and keyboard support.
   ========================================================================== */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 640px) { .carousel-slide { flex-basis: calc(50% - 12px); } }
@media (min-width: 1080px) { .carousel-slide { flex-basis: calc(33.333% - 16px); } }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel-arrow:hover { background: var(--teal-light); border-color: var(--teal); transform: translateY(-2px); }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:disabled { opacity: 0.5; cursor: default; transform: none; background: var(--bg-card); border-color: var(--border-strong); }
.section-dark .carousel-arrow { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.section-dark .carousel-arrow:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.section-dark .carousel-arrow:disabled { opacity: 1; background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); }

.carousel-dots { display: flex; align-items: center; gap: 9px; }
.carousel-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border-strong);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel-dots button.is-active { background: var(--teal); transform: scale(1.3); }
.section-dark .carousel-dots button { background: rgba(255,255,255,0.25); }
.section-dark .carousel-dots button.is-active { background: var(--lime); }

/* ---------------- Testimonials (dark carousel) ---------------- */
.testimonial-card {
  height: 100%;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { display: flex; gap: 4px; color: #F5B335; }
.testimonial-stars svg { width: 17px; height: 17px; }
.testimonial-card p { color: #EAF1EA; font-size: 1.0625rem; line-height: 1.6; margin: 0; flex: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-avatar.pastel-1 { background: var(--pastel-blue-bg); color: var(--pastel-blue-fg); }
.testimonial-avatar.pastel-2 { background: var(--pastel-amber-bg); color: var(--pastel-amber-fg); }
.testimonial-avatar.pastel-3 { background: var(--pastel-purple-bg); color: var(--pastel-purple-fg); }
.testimonial-avatar.pastel-4 { background: var(--pastel-green-bg); color: var(--pastel-green-fg); }
.testimonial-avatar.pastel-5 { background: var(--pastel-blue-bg); color: var(--pastel-blue-fg); }
.testimonial-name { font-weight: 700; color: #fff; font-size: 1rem; }
.testimonial-role { font-size: 0.9375rem; color: #90A28C; }
.testimonial-placeholder-card {
  height: 100%;
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: #90A28C;
}
.testimonial-placeholder-card svg { width: 28px; height: 28px; color: rgba(255,255,255,0.25); }
.testimonial-placeholder-card p { margin: 0; font-size: 1rem; max-width: 32ch; }

/* ---------------- Ads message match ---------------- */
.match-section { text-align: center; }
.match-section .section-head { margin-inline: auto; }
.match-location { display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 9px 18px; border-radius: 999px; margin-top: 8px; }
.match-location svg { width: 17px; height: 17px; }

/* ---------------- Objections ---------------- */
.objection-grid { display: grid; gap: 22px; }
@media (min-width: 780px) { .objection-grid { grid-template-columns: repeat(2, 1fr); } }
.objection { padding: 22px 24px; border-left: 3px solid var(--teal); background: var(--bg-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.objection h3 { font-size: 1.0625rem; margin-bottom: 8px; color: var(--navy); }
.objection p { font-size: 1rem; margin: 0; }

/* ---------------- FAQ Accordion ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-family: var(--font-display); font-size: 1.125rem; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 22px; height: 22px; color: var(--teal-dark); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 24px 22px; font-size: 1.0625rem; color: var(--slate); }

/* ---------------- Final CTA ---------------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); max-width: 16ch; margin-inline: auto; margin-bottom: 24px; }
.final-cta p.lede { max-width: 56ch; margin-inline: auto; font-size: 1.1875rem; }
.final-cta .btn-row { justify-content: center; margin-top: 30px; }
.final-cta .reassure { margin-top: 20px; font-size: 1rem; color: #AEC0A8; }

/* ---------------- Contact Form ---------------- */
.contact-wrap { display: grid; gap: 40px; }
@media (min-width: 980px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; align-items: flex-start; } }

.contact-side h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
.contact-points { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.0625rem; color: var(--navy); font-weight: 600; }
.contact-points svg { width: 19px; height: 19px; color: var(--teal-dark); margin-top: 2px; flex-shrink: 0; }
.contact-direct { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 1rem; }
.contact-direct a { color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; box-shadow: var(--shadow-sm); }
@media (min-width: 640px) { .form-card { padding: 38px; } }

.form-fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.form-fieldset legend { font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 16px; padding: 0; }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 1rem; font-weight: 700; color: var(--navy); }
.field .hint { font-size: 1rem; color: var(--slate-light); font-weight: 400; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="url"], .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 13px 15px;
  border-radius: 9px;
  border: 1.5px solid var(--border-strong);
  background: #fff;
  color: var(--navy);
  width: 100%;
  /* Native <select> boxes compute their height from internal font
     metrics rather than the inherited line-height, so they can render
     a few pixels shorter than a sibling <input> using the same
     padding/border — misaligning side-by-side rows like state/city.
     Pin an explicit height so every control matches exactly. */
  height: 53px;
}
.field textarea { resize: vertical; min-height: 120px; height: auto; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: 1rem; color: var(--danger); font-weight: 600; min-height: 1em; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.chip span { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 8px; border: 1.5px solid var(--border-strong); font-size: 1rem; font-weight: 600; color: var(--navy); background: #fff; transition: all 0.2s var(--ease); }
.chip input:checked + span { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); }
.chip input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }

.radio-row { display: flex; gap: 18px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 600; color: var(--navy); }
.radio-row input { width: 19px; height: 19px; accent-color: var(--teal); }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.consent-row input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.consent-row label { font-size: 1rem; color: var(--slate); }
.consent-row a { color: var(--teal-dark); }

.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-submit-note { font-size: 1rem; color: var(--slate-light); text-align: center; margin-top: 14px; }
.form-status { border-radius: var(--radius-sm); padding: 15px 18px; font-size: 1rem; font-weight: 600; margin-bottom: 20px; display: none; }
.form-status.is-visible { display: block; }
.form-status.error { background: #FBEAEA; color: var(--danger); border: 1px solid #F0C6C4; }

[hidden] { display: none !important; }

/* ---------------- Sticky mobile CTA ---------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--border); padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px)); box-shadow: 0 -6px 20px rgba(16,40,31,0.08); transform: translateY(0); transition: transform 0.3s var(--ease); }
.sticky-cta.is-hidden { transform: translateY(110%); }
.sticky-cta .btn { width: 100%; }
@media (min-width: 980px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 80px; }
@media (min-width: 980px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ---------------- Back to top ---------------- */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s, background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--teal-light); border-color: var(--teal); }
.back-to-top svg { width: 20px; height: 20px; }
body.has-sticky-cta .back-to-top { bottom: calc(80px + env(safe-area-inset-bottom, 0px) + 12px); }
@media (min-width: 980px) { body.has-sticky-cta .back-to-top { bottom: 18px; } }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy); color: #C7D2C2; padding-block: 60px 32px; }
.footer-top { display: grid; gap: 40px; }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .logo .word { color: #fff; }
.footer-brand .logo .word .lab { color: var(--lime); }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: 1rem; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #C7D2C2; text-decoration: none; font-size: 1rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 1rem; color: #9BAE95; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* ---------------- Utility ---------------- */
.visually-hidden { position: absolute !important; 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: 12px; top: -60px; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 8px; z-index: 200; transition: top 0.2s var(--ease); text-decoration: none; font-weight: 700; }
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Subtle texture — a faint engineered grid, used sparingly instead of
   decorative color blobs. Reads as intentional/systemic, not generic-AI.
   ========================================================================== */
.texture-host { position: relative; overflow: hidden; }
.texture-host > .container { position: relative; z-index: 1; }
.texture-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 40, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 40, 31, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 85%);
  mask: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 85%);
}
.section-dark .texture-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}

/* ---------------- Marquee trust strip ---------------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-card); padding-block: 20px; overflow: hidden; }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: marquee-scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--slate); white-space: nowrap; }
.marquee-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------------- About / Founder section ---------------- */
.about-wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) { .about-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }

.monogram-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-2), var(--navy) 60%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: var(--shadow-md);
  max-width: 380px; margin-inline: auto;
}
.monogram-card .monogram-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.monogram-card .role-chip { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; background: rgba(16, 40, 31, 0.55); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); padding: 13px 15px; color: #fff; font-size: 1rem; font-weight: 600; text-align: center; }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.about-points { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.0625rem; color: var(--navy); font-weight: 600; }
.about-points svg { width: 19px; height: 19px; color: var(--teal); margin-top: 3px; flex-shrink: 0; }

/* ---------------- Comparison table (DIY vs HealthcareLab) ---------------- */
.compare-wrap { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow-sm); }
@media (min-width: 720px) { .compare-wrap { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 32px 28px; }
.compare-col.featured { background: var(--navy); color: #fff; position: relative; }
.compare-col.featured::before { content: "Recommended"; position: absolute; top: 20px; right: 20px; background: var(--lime); color: var(--navy); font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.compare-col h3 { font-size: 1.25rem; margin-bottom: 20px; }
.compare-col.featured h3 { color: #fff; }
.compare-col ul { display: flex; flex-direction: column; gap: 15px; }
.compare-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 1.0625rem; }
.compare-col li svg { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.compare-col:not(.featured) li svg { color: var(--slate-light); }
.compare-col:not(.featured) li { color: var(--slate); }
.compare-col.featured li svg { color: var(--lime); }
.compare-col.featured li { color: #EAF1EA; }

/* ==========================================================================
   Sector cards (Who We Help) — photo-led cards with graceful fallback
   ========================================================================== */
.sector-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .sector-grid { grid-template-columns: repeat(4, 1fr); } }

.sector-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sector-card:hover .sector-photo img { transform: scale(1.05); }

.sector-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sector-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, var(--teal-light), var(--bg-alt)); }
.sector-photo svg.fallback-icon { position: relative; z-index: 1; width: 46px; height: 46px; color: var(--teal); opacity: 0.55; }
.sector-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform 0.5s var(--ease); }
.sector-tag { position: absolute; top: 14px; left: 14px; z-index: 3; background: rgba(255,255,255,0.94); color: var(--navy); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; }
.sector-body { padding: 20px 22px 24px; }
.sector-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.sector-body p { font-size: 1rem; margin-bottom: 0; }
.sector-more { text-align: center; margin-top: 12px; font-size: 1.0625rem; color: var(--slate-light); }

/* ==========================================================================
   Features (radial) section — headline surrounded by two floating lists
   ========================================================================== */
.radial-section { position: relative; overflow: hidden; }
.radial-ring {
  position: absolute; top: 50%; left: 50%; width: 780px; height: 780px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: repeating-conic-gradient(var(--border-strong) 0deg 1.2deg, transparent 1.2deg 6deg);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 61%, #000 67%, transparent 68%);
  mask: radial-gradient(circle, transparent 60%, #000 61%, #000 67%, transparent 68%);
  opacity: 0.5; pointer-events: none;
}
@media (max-width: 900px) { .radial-ring { width: 440px; height: 440px; } }

.radial-wrap { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.radial-center { position: relative; z-index: 2; max-width: 500px; text-align: center; margin-inline: auto; }
.radial-center .eyebrow { justify-content: center; }
.radial-center .eyebrow::before { display: none; }
.radial-center h2 { font-size: clamp(2rem, 3.8vw, 2.75rem); }
.radial-center p { font-size: 1.125rem; }

.radial-list { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; width: 300px; }
.radial-list.left { margin-right: -20px; }
.radial-list.right { margin-left: -20px; }
@media (max-width: 1080px) { .radial-list.left, .radial-list.right { margin: 0; } }
.radial-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 4px 18px rgba(16,40,31,0.05);
  font-size: 1.0625rem; font-weight: 600; color: var(--slate);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}
.radial-item svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; }
.radial-item.active { background: rgba(255,255,255,0.75); box-shadow: 0 8px 26px rgba(16,40,31,0.09); color: var(--navy); font-weight: 700; }
.radial-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
@media (max-width: 1080px) { .radial-row { flex-direction: column; gap: 28px; } .radial-list { width: 100%; max-width: 420px; } }

/* ==========================================================================
   Pricing section
   ========================================================================== */
.pricing-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }

.price-card { position: relative; border-radius: var(--radius-lg); padding: 36px 32px; background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.price-card.alt { background: var(--navy-2); }
.price-card .price-tag { position: absolute; top: 24px; right: 24px; font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,0.1); color: #C7D2C2; }
.price-card.featured .price-tag { background: var(--lime); color: var(--navy); }
.price-card h3 { color: #fff; font-size: 1.3125rem; margin-bottom: 8px; }
.price-card .price-value { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 6px; }
.price-card .price-value .amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; color: #fff; }
.price-card .price-value .period { font-size: 1rem; color: #AEC0A8; }
.price-card .price-note { font-size: 1rem; color: #AEC0A8; margin-bottom: 24px; }
.price-card ul { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 1.0625rem; color: #EAF1EA; }
.price-card li svg { width: 18px; height: 18px; color: var(--lime); margin-top: 3px; flex-shrink: 0; }
.price-card .btn { width: 100%; }
.price-card .price-foot { text-align: center; font-size: 1rem; color: #90A28C; margin-top: 16px; }

/* ==========================================================================
   Stats / proof section
   ========================================================================== */
.stats-row { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
@media (min-width: 780px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 8px; }
.stat-item .stat-value { font-family: var(--font-display); font-size: clamp(2.25rem, 4.4vw, 3.25rem); font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.section-dark .stat-item .stat-value { color: var(--lime); }
.stat-item .stat-label { font-size: 1.0625rem; font-weight: 600; color: var(--slate); }
.section-dark .stat-item .stat-label { color: #C7D2C2; }
.stats-head { max-width: 660px; margin-inline: auto; text-align: center; }
