/* ===========================================================
   GLOBAL SETTINGS — DELVE BRAND + ENTERPRISE POLISH
=========================================================== */
html,
body {
  overflow-x: hidden;
}

:root {
  --container: 1180px;
  --gutter: 24px;
  --header-h: 56px;
  --delve-primary: #4BA2AE;
  --delve-primary-dark: #3D8F9A;
  --delve-secondary: #6EC7CF;
  --delve-secondary-light: #DFF1F3;
  --delve-gray-dark: #3A464D;
  --delve-gray-medium: #5E6A72;
  --delve-bg-light: #F7FAFC;
  --white: #FFFFFF;
  --delve-dark-text: #0A1B2A;
  --delve-gray-text: #4B5563;
  --delve-muted-text: #94A3B8;
  --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 12px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
    --dh-navy: #1f2b3f;
    --dh-navy-2: #1a2436;
    --dh-teal: #5f9ea0;       /* close to screenshot teal band */
    --dh-line: rgba(255,255,255,0.18);
    --dh-soft: rgba(255,255,255,0.70);
}


/* universal content container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* universal content container */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Montserrat', 'Avenir', 'Proxima Nova', sans-serif;
  background: #ffffff;
  color: #0A1B2A;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ===========================================================
   COLOR SYSTEM — EXACT DELVE HEALTH BRAND PALETTE
=========================================================== */




/* ===========================================================
   BRAND HEADLINES — MATCHING OFFICIAL DELVE HEALTH STYLE
=========================================================== */

.h1-brand,
h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--delve-dark-text);
  letter-spacing: -0.5px;
}

.h1-accent,
.h2-accent,
.accent {
  color: #F47C2A;
  font-weight: 800;
}

.h2-brand,
h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--delve-dark-text);
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

h2 .accent,
h1 .accent {
  color: #F47C2A;
}

/* ===========================================================
   GLOBAL SPACING
=========================================================== */

section {
  padding: 110px 0;
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}

/* ===========================================================
   BUTTONS — DELVE HEALTH STYLE
=========================================================== */

.btn-primary {
  display: inline-block;
  padding: 16px 34px;
  background: var(--delve-primary);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 999px;
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--delve-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  border: 2px solid #E5E7EB;
  color: #0F172A;
  background: #ffffff;
  font-weight: 500;
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.02);
}

/* ===========================================================
   HEADER + NAV — BLENDED + CENTERED + MOBILE READY
   (works best with the button-based dropdown HTML)
=========================================================== */

.main-header {
  position: relative;
  top: 0;
  z-index: 100;
  width: 100%;
  overflow: visible;
  padding: 0;
  background: rgba(236, 247, 247, 0.72);
  /* blended */
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
}

.header-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  /* no vertical padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}


.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--delve-dark-text);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 10px;
}

/* Base nav list (desktop) */
/* Base nav list (desktop) — ONLY the top-level nav list */
#primary-nav>ul.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 18px;
}


/* Links + button-links */
nav ul li a,
.nav-link {
  font-size: 15px;
  color: var(--delve-dark-text);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px;
  transition: var(--transition);
}

/* If you used <button class="nav-link"> */
.nav-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

nav ul li a:hover,
.nav-link:hover,
nav ul li a:focus-visible,
.nav-link:focus-visible {
  color: var(--delve-primary);
  background: rgba(75, 162, 174, 0.10);
  outline: none;
}

/* Header CTA tuned so it doesn’t feel oversized */
.header-cta {
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 999px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  padding: 10px 0;
  z-index: 110;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  margin: 0 8px;
  color: var(--delve-dark-text);
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(75, 162, 174, 0.14);
  outline: none;
}

/* Support BOTH patterns:
   1) Your old hover dropdown
   2) JS toggle via .open (recommended)
*/
/* JS-controlled open state (all breakpoints) */
.dropdown.open .dropdown-menu {
  display: block;
}

/* Hover-open only on devices that actually support hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown--mega:hover .mega {
    display: block;
  }
}

.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100vw);
  max-width: 100%;
  box-sizing: border-box;
}


/* Mobile toggle (safe even if you haven’t added the button yet) */
.nav-toggle {
  display: none;
}

/* Mobile nav layout */
@media (max-width: 980px) {
  .header-inner {
    padding: 12px 16px;
  }

  .main-header nav ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* Better: if you adopt a collapsible menu, allow vertical stacking */
  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===========================================================
   TOP STAT BAR (UNDER HERO)
=========================================================== */

.stat-bar {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  padding: 32px 40px;
  text-align: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto 60px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.stat-block h3 {
  color: var(--delve-primary);
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  font-weight: 800;
}

.stat-block p {
  color: var(--delve-gray-text);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stat-bar {
    flex-direction: column;
    gap: 24px;
    padding: 22px 18px;
  }
}

/* ===========================================================
   BIG BOTTOM STATS BAND (HERO #2)
   (tightened so labels are visible + centered)
=========================================================== */

.stats-band {
  max-width: var(--container);
  margin: 18px auto 80px;
  /* was very large and pushed below fold */
  padding: 26px 20px 30px;
  /* tighter */
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
  gap: 18px;
}

.stat-number {
  font-size: clamp(34px, 3.3vw, 54px);
  /* responsive */
  font-weight: 800;
  color: var(--delve-primary);
  margin-bottom: 6px;
  line-height: 1.05;
}

.stat-label {
  font-size: 12px;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }
}

@media (max-width: 600px) {
  .stats-band {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   ALT SECTIONS
=========================================================== */

.alt-section {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alt-section.reverse {
  flex-direction: row-reverse;
}

.alt-text {
  flex: 1;
}

.alt-text p {
  color: var(--delve-gray-text);
  margin-bottom: 18px;
}

.alt-text ul {
  margin-top: 20px;
  padding-left: 18px;
  color: var(--delve-gray-text);
}

.alt-image {
  flex: 1;
}

.alt-image img {
  border-radius: 14px;
  box-shadow: var(--shadow-medium);
}

@media (max-width: 900px) {

  .alt-section,
  .alt-section.reverse {
    flex-direction: column;
    gap: 30px;
  }
}

/* ===========================================================
   FEATURE GRID — WIDER, CLEANER, PREMIUM STYLE
=========================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}



.feature {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  max-width: 360px;
  justify-self: center;
  padding: 48px 28px 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: inherit;
  text-decoration: none;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.feature:visited,
.feature:active {
  color: inherit;
  text-decoration: none;
}

.feature * {
  text-decoration: none;
}

.feature-grid {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 8%;
}

.feature-grid .feature-grid .feature-icon {
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.feature-grid .feature h3,
.feature-grid .feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 28ch;
}


.feature-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 22px;
  border-radius: 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  /* prevents global img rules from constraining */
  max-height: none !important;
  object-fit: contain;
  padding: 18px;
  /* controls “visual size” of icon */
  display: inline-flex;
}

.feature-icon svg {
  width: 68px;
  height: 68px;
}

.feature h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #0f172a;
  min-height: 48px;
  /* keeps titles aligned across cards */
}


.feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 28ch;
  margin-inline: auto;
}

.feature:hover h3,
.feature:hover p,
.feature:focus h3,
.feature:focus p {
  text-decoration: none;
}

.feature,


/* Make anchor cards behave exactly like div cards */
/* Make anchor cards behave exactly like div cards */
/* Make anchor cards behave like div cards */
a.feature,
a.feature:visited {
  color: inherit;
  text-decoration: none;
}
a.feature:hover,
a.feature:focus-visible {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .feature-grid .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-grid .grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================================================
   FOOTER
=========================================================== */

footer {
  background: #0A1B2A;
  padding: 36px 8% 100px;
  color: white;
  margin-top: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #CFE8E8;
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--delve-secondary);
}

footer .copyright {
  margin-top: 40px;
  text-align: center;
  color: #CFE8E8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
  }
}

/* ===========================================================
   SIMPLE ANIMATIONS + ACCESSIBILITY
=========================================================== */

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================
   CASE STUDIES GRID — DELVE HEALTH STYLE
=========================================================== */

.case-studies {
  text-align: left;
  padding: 110px 8%;
  background: transparent;
}

.case-studies h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--delve-dark-text);
  margin-bottom: 40px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.case-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #E5E7EB;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
}

.case-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.case-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px;
  color: var(--delve-dark-text);
}

.case-card p {
  margin: 0 20px 25px;
  font-size: 18px;
  color: var(--delve-gray-text);
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   COMPARISON TABLE — DELVE HEALTH STYLE
=========================================================== */

.comparison {
  padding: 110px 8%;
}

.comparison h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--delve-dark-text);
  margin-bottom: 40px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.comparison table th {
  background: var(--delve-primary);
  color: #fff;
  font-weight: 700;
  padding: 20px;
  text-align: left;
  font-size: 20px;
}

.comparison table td {
  padding: 18px 20px;
  border-bottom: 1px solid #E6EBEF;
  color: var(--delve-gray-text);
}

.comparison table td:first-child {
  font-weight: 600;
  color: var(--delve-dark-text);
  width: 50%;
}

.comparison table td:nth-child(2),
.comparison table td:nth-child(3) {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.comparison table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 700px) {

  .comparison table th,
  .comparison table td {
    font-size: 16px;
    padding: 14px 12px;
  }

  .comparison table td:first-child {
    width: 60%;
  }
}

/* ===========================================================
   CONCIERGE HIGHLIGHT CARD (MID-PAGE)
=========================================================== */

section.alt-section.concierge-highlight {
  max-width: 1280px;
  width: 100%;
  margin: 80px auto;
  padding: 88px 8%;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

section.alt-section.concierge-highlight .alt-text {
  flex: 1.15;
  padding-right: 12px;
}

section.alt-section.concierge-highlight .alt-image {
  flex: 0.85;
  display: flex;
  justify-content: center;
}

section.alt-section.concierge-highlight .alt-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}


section.alt-section.concierge-highlight p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

section.alt-section.concierge-highlight ul {
  margin-top: 10px;
  padding-left: 22px;
}

section.alt-section.concierge-highlight li {
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  section.alt-section.concierge-highlight {
    flex-direction: column;
    padding: 64px 6%;
    gap: 34px;
  }
}

.concierge-highlight .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .concierge-highlight .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .concierge-highlight .grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.concierge-highlight .grid .feature {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  text-decoration: none;

  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.06);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Hover */
.concierge-highlight .grid .feature:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow:
    0 28px 75px rgba(15, 23, 42, 0.10);
}

/* Typography */
.concierge-highlight .grid .feature h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: #0f172a;
}

.concierge-highlight .grid .feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.68);
}

/* ===========================================================
   Icon tile (to match the “boxed icon” look)
=========================================================== */

.concierge-highlight .grid .feature .feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;

  background:
    radial-gradient(80px 60px at 30% 25%,
      rgba(var(--ico-rgb, 75, 162, 174), 0.22),
      rgba(var(--ico-rgb, 75, 162, 174), 0.06) 60%,
      rgba(255, 255, 255, 0) 75%),
    rgba(15, 23, 42, 0.02);

  border: 1px solid rgba(var(--ico-rgb, 75, 162, 174), 0.18);
}

.concierge-highlight .grid .feature .feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(var(--ico-rgb, 75, 162, 174), 0.95);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Optional: subtle icon lift on card hover */
.concierge-highlight .grid .feature:hover .feature-icon {
  transform: translateY(-1px);
}

/* Color variants */
.concierge-highlight .icon--teal {
  --ico-rgb: 75, 162, 174;
}

.concierge-highlight .icon--blue {
  --ico-rgb: 37, 99, 235;
}

.concierge-highlight .icon--indigo {
  --ico-rgb: 79, 70, 229;
}

.concierge-highlight .icon--green {
  --ico-rgb: 5, 150, 105;
}

.concierge-highlight .icon--orange {
  --ico-rgb: 244, 124, 42;
}

.concierge-highlight .icon--rose {
  --ico-rgb: 225, 29, 72;
}

/* ===========================================================
   HERO — LIGHT GRADIENT, THREE-COLUMN LAYOUT
   (Fixes: missing semicolon, label colors, spacing for top-of-fold)
=========================================================== */
/* ===========================================================
   HERO (3-COLUMN) — CLEAN, NON-OVERLAPPING, NO CLIPPING
   Paste this as a complete replacement for your current hero CSS
=========================================================== */

.hero {
  position: relative;
  padding: calc(var(--header-h, 88px) + 0px) 0 28px;
  background: linear-gradient(180deg, #ecf7f7 0%, #f8fbfb 40%, #ffffff 100%);
  color: #0A1B2A;
  padding-top: calc(var(--header-h) + 32px) !important;
  padding-bottom: 64px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;
  /* keeps the top glow tidy */
  max-height: 720px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 200, 210, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero--three-col .hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.8fr) minmax(340px, 1.2fr);
  column-gap: 72px !important; /* was ~56px */
  width: 100%;
  max-width: var(--container, 1160px);

  align-items: start;
  position: relative;
  z-index: 1;

  padding: 0 22px;
  /* prevents edge collisions on large screens */
}

.hero-col {
  position: relative;
}

/* ---------- Headline handling (prevents weird wraps/overlap) ---------- */
.hero-heading {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0A1B2A;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line.accent {
  color: rgba(15, 23, 42, 0.92);
}

.hero-heading .accent {
  color: var(--delve-primary, #4ba2ae);
}

/* ---------- LEFT COLUMN — METRICS ---------- */
.hero-col--metrics {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
   transform: translateX(-28px);
  gap: 16px; /* was visually tighter */
}

.metric-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 18px;
  padding: 20px 22px !important;
  margin-bottom: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.metric-label {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.78);
  margin: 0 0 4px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 2px;
}

.metric-sub {
  font-size: 12px;
  color: #22c55e;
  margin: 0;
}

/* ---------- CENTER COLUMN — COPY ---------- */
.hero-col--message {
  padding: 0 18px 0 0;
  /* right padding to keep distance from concierge */
  transform: translateY(-6px);
  margin-bottom: 22px;
  z-index: 2;
  /* stays above background effects */
}

.hero-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #4ba2ae;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 15px;
  color: #4ba2ae;
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0A1B2A;
  margin: 0 0 12px;
}

.hero-body {
  font-size: 18px;
  color: #4B5563;
  max-width: 560px;
  margin: 10px 0 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 0 0 12px;
}

.hero-proof {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.62);
}

/* ---------- RIGHT COLUMN — CONCIERGE (IMPORTANT: NO CLIPPING) ---------- */
.hero-col--concierge {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 12px;

  position: relative;
  z-index: 1;

  /* CRITICAL: allow bubbles/pills to show */
  overflow: visible;
}

.hero-col--concierge .concierge-shell {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;

  /* CRITICAL: prevent cutting off bubbles */
  overflow: visible;
}

/* If any inner pieces were accidentally constrained */
.hero-col--concierge .concierge-card {
  overflow: visible;
  max-height: none;
  height: auto;
}

/* Optional: keep the concierge from “touching” the grid edge */
@media (min-width: 1100px) {
  .hero-col--concierge .concierge-shell {
    transform: translateX(6px);
  }
}

/* ---------- RESPONSIVE: STACK CLEANLY ---------- */
@media (max-width: 1100px) {
  .hero {
    max-height: none;
    /* allow full height when stacking */
  }

  .hero--three-col .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
    column-gap: 0;
    padding: 0 18px;
  }

  .hero-col--message {
    transform: none;
    padding: 0;
  }

  .hero-line {
    white-space: normal;
    /* allow wrap on small screens */
  }

  .hero-col--concierge {
    justify-content: flex-start;
  }

  .hero-col--concierge .concierge-shell {
    max-width: 640px;
  }
}

/* If you still see any clipping due to legacy rules elsewhere,
   keep these overrides at the very end of your CSS file. */
.concierge-shell,
.concierge-shell--clean,

.concierge-shell {
  position: relative;
  width: 360px;
  /* slightly wider so the card breathes */
  min-height: 320px;
  margin-left: auto;
  padding-top: 10px;
  /* gives headroom for floating icons */
}

.concierge-ring--single {
  z-index: 0;
}



.floating-icon {
  z-index: 3;
}

.concierge-agent-pill {
  z-index: 4;
}


/* ring */
.concierge-ring--single {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 1px solid rgba(75, 162, 174, 0.25);
  top: 40px;
  right: -10px;
  z-index: 0;
}

.concierge-card {
  position: relative;
  background: #ffffff;
  color: #0A1B2A;
  border-radius: 22px;
  padding: 26px 26px 24px !important;
  max-width: 320px;
  margin-left: auto;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.20);
  z-index: 2;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

.concierge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.concierge-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ba2ae, #14b8a6);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.35);
  border: 2px solid #59BFC1;
}

.concierge-name {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #0A1B2A;
}

.concierge-status {
  font-size: 11px;
  margin: 2px 0 0 0;
  color: #6b7280;
}

.concierge-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 3px 0 4px 0;
}

.cap {
  background: rgba(240, 245, 249, 0.85);
  color: #0A1B2A;
  padding: 3px 7px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

/* Chat bubbles */
.chat-bubble {
  border-radius: 14px;
  padding: 9px 11px;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.chat-bubble--patient {
  background: #f3f4ff;
  color: #111827;
}

.chat-bubble--concierge {
  background: #f1f5f9;
  color: #0f172a;
}

/* Agent pill */
.concierge-agent-pill {
  position: absolute;
  right: -40px;
  bottom: -32px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
  z-index: 3;
}

.concierge-agent-photo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(148, 163, 184, 0.8);
}

.concierge-agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concierge-agent-text {
  display: flex;
  flex-direction: column;
  color: #e5f4f6;
}

.concierge-agent-text span {
  font-size: 12px;
  font-weight: 700;
}

.concierge-agent-text small {
  font-size: 10px;
  opacity: 0.8;
}

/* Gentle float */
@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-slow {
  animation: floatSlow 9s ease-in-out infinite;
}

/* Floating icons */
.floating-icon {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(89, 191, 193, 0.85);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0.6;
  animation: floatUp 12s linear infinite;
  z-index: 4;
  pointer-events: none;
  transform: scale(0.92);
}

.floating-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: none;
}




/* Keep floats around the perimeter, not across the header */
.icon-1 {
  left: -34px;
  top: 24px;
  animation-delay: 0s;
}

.icon-2 {
  left: 18px;
  top: 98px;
  animation-delay: 2.5s;
}

.icon-3 {
  right: -34px;
  top: 34px;
  left: auto;
  animation-delay: 5s;
}

.icon-4 {
  right: -22px;
  top: 140px;
  left: auto;
  animation-delay: 7.5s;
}
.icon-5 {
  left: -34px;
  top: 24px;
  animation-delay: 0s;
}

.icon-6 {
  left: -18px;
  top: 168px;
  animation-delay: 2.5s;
}

.icon-7 {
  right: -134px;
  top: 100px;
  left: auto;
  animation-delay: 5s;
}

.icon-8 {
  right: -92px;
  top: 190px;
  left: auto;
  animation-delay: 7.5s;
}

@keyframes floatUp {
  0% {
    transform: translateY(40px) scale(0.96);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(-90px) scale(1);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .floating-icon {
    display: none;
  }
}

/* ===========================================================
   FINAL CTA
=========================================================== */

.final-cta {
  max-width: 1100px;
  margin: 70px auto 90px;
  border-radius: 26px;
  background: #F3FAFB;
  color: #0A1B2A;
  text-align: center;
  padding: 46px 8%;
}

/* ===========================================================
   RESPONSIVE TWEAKS
=========================================================== */

@media (max-width: 960px) {
  .hero--three-col .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .hero-col--message {
    order: -1;
    transform: none;
  }

  .hero {
    padding: calc(var(--header-h) + 26px) 6% 32px;
    min-height: auto;
  }

  .concierge-shell {
    margin: 10px auto 0;
  }

  .concierge-ring--single,
  .concierge-agent-pill,
  .floating-icon {
    display: none;
  }
}

/* ===========================================================
   WHO WE SERVE — LARGE, CLEAN BUCKET CARDS
=========================================================== */

section[aria-labelledby="serve-heading"] {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 80px 8% 40px !important;
  background: #ffffff;
  text-align: center;
}

section[aria-labelledby="serve-heading"] #serve-heading {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 18px;
}

section[aria-labelledby="serve-heading"] p {
  max-width: 720px;
  margin: 0 auto 40px !important;
  font-size: 18px;
  line-height: 1.6;
}

section[aria-labelledby="serve-heading"] .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
















@media (max-width: 960px) {
  section[aria-labelledby="serve-heading"] {
    padding: 64px 6% 32px !important;
  }

  section[aria-labelledby="serve-heading"] .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


}

@media (max-width: 640px) {
  section[aria-labelledby="serve-heading"] .grid {
    grid-template-columns: 1fr;
  }


  section[aria-labelledby="serve-heading"] #serve-heading {
    font-size: 32px;
  }
}

/* ===========================================================
   TOP-OF-FOLD VISIBILITY: pull stats upward (safe)
=========================================================== */

section[aria-label="Delve Health reach"] {
  margin-top: -18px;
  /* lighter lift than -40 to prevent overlap */
  padding-top: 18px !important;
  padding-bottom: 28px !important;
}


.dropdown-menu {
  z-index: 1100;
}

/* Make sure nav can anchor an absolute-positioned mega panel */
.main-header nav ul {
  position: relative;
}

/* Mega dropdown container (hidden by default) */
.dropdown--mega {
  position: relative;
}

.dropdown--mega .mega {
  position: absolute;
  top: calc(100% + 14px);

  left: 0;
  right: 0;
  margin: 0 auto;

  max-width: 1120px;
  width: calc(100% - 48px);
  /* 24px gutter on each side */

  display: none;
  z-index: 1200;
}


/* Panel look (rounded, border, soft shadow) */
.mega-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #E6EBEF;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: 100%;
  overflow-x: hidden;
  padding: 22px 22px 14px;
}

/* 4-column grid (like the screenshot) */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  padding-bottom: 16px;
}

/* Each row item */
.mega-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--delve-dark-text);
  padding: 12px 12px;
  border-radius: 12px;
  transition: 0.18s ease;
}

.mega-item:hover {
  background: rgba(223, 241, 243, 0.7);
  /* your --delve-secondary-light */
}

/* Icon pill */
.mega-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(110, 199, 207, 0.18);
  border: 1px solid rgba(75, 162, 174, 0.22);
  flex: 0 0 34px;
}

/* Text */
.mega-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.mega-desc {
  display: block;
  font-size: 12.5px;
  color: var(--delve-gray-text);
  line-height: 1.35;
}

/* Bottom divider + “View all” */
.mega-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 12px;
}

.mega-all {
  color: var(--delve-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.mega-all:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 980px) {
  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: turn into a stacked panel */
@media (max-width: 640px) {
  .dropdown--mega .mega {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }

  .mega-inner {
    padding: 16px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }
}

.dropdown,
.dropdown--mega {
  position: relative;
}

.dropdown--mega.open .mega {
  display: block;
}

/* Outcomes section layout */
.outcomes {
  padding: 64px 0;
  background: #ffffff;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

/* Left column */
.outcomes-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #14b8a6;
  margin-bottom: 10px;
}

.outcomes-title {
  font-size: 32px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 18px;
}

.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4b5563;
  font-size: 16px;
}

/* Right column card */
.outcomes-card {
  background: #f9fafb;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.outcomes-card-title {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 4px;
}

.outcomes-card-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

.outcomes-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
}

.bar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.bar-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 999px;
}

.bar-delve {
  background: #4bafaf;
}

.bar-industry {
  background: #cbd5f5;
  opacity: 0.95;
}

/* Legend */
.outcomes-legend {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: #6b7280;
  margin-top: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-delve {
  background: #4bafaf;
}

.dot-industry {
  background: #cbd5f5;
}

/* Responsive: stack */
@media (max-width: 960px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.comparison {
  padding: 80px 8%;
  background: #ffffff;
}

.comparison-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  color: #0f172a;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-col {
  background: #f9fafb;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.comparison-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0f172a;
}

.comparison-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #374151;
  line-height: 1.4;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.icon.bad {
  background: #fee2e2;
  color: #b91c1c;
}

.icon.good {
  background: #dcfce7;
  color: #15803d;
}

/* ===== Concierge Section Wrapper ===== */
.concierge-highlight {
  padding: 80px 0;
  background: #fff;
}

.concierge-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== TOP: two columns (copy + image) ===== */
.concierge-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}

.concierge-copy {
  max-width: 640px;
}

.concierge-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--delve-muted-text);
  margin: 0 0 10px;
}

.concierge-title {
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: #0f172a;
}

.concierge-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 12px;
}

.concierge-result {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
}

.concierge-cta {
  display: inline-flex;
  margin-top: 22px;
}

/* Image */
.concierge-media {
  display: flex;
  justify-content: center;
}

.concierge-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .concierge-top {
    grid-template-columns: 1fr;
  }

  .concierge-copy {
    max-width: 100%;
  }

  .concierge-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .concierge-cards-row {
    grid-template-columns: 1fr;
  }
}

.pillar-visual {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(180deg,
      rgba(79, 176, 176, 0.08),
      rgba(79, 176, 176, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ===========================================================
   MOBILE ABOVE-THE-FOLD OVERRIDES (PASTE AT END OF FILE)
=========================================================== */
@media (max-width: 640px) {

  /* ---------- Header sizing ---------- */

  .header-inner {
    height: var(--header-h);
    padding: 0 14px;
    gap: 10px;
  }

  /* Slightly smaller logo on mobile */
  .logo-img {
    height: 28px;
  }

  /* Nav links */
  nav ul li a,
  .nav-link {
    padding: 8px;
    font-size: 14px;
  }

  /* CTA button */
  .header-cta {
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* ===========================================================
   HEADER LOGO (transparent-safe)
=========================================================== */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  /* prevents extra whitespace */
}

.logo-img {
  height: 34px;
  /* desktop default */
  width: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.main-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ---- Hero: reduce vertical space + make headline responsive ---- */
.hero {
  padding: calc(var(--header-h) + 14px) 0 18px !important;
  max-height: none;
  /* let it flow on small screens */
}

.hero-col--message {
  padding: 0 12px !important;
  transform: none !important;
}

.hero-heading {
  font-size: clamp(34px, 9vw, 48px) !important;
  line-height: 1.02 !important;
  margin-bottom: 22px !important;
}

.hero-body {
  font-size: 16px !important;
  margin: 8px 0 14px !important;
  max-width: 560px;
  line-height: 1.65;
}

/* ---- CTAs: full-width buttons on mobile ---- */
.hero-ctas {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin-top: 28px !important;
  margin: 0 0 10px !important;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  width: 100%;
  padding: 12px 16px !important;
  font-size: 16px !important;
}

/* ---- Hide chat/share overlays that block the fold ---- */
#hubspot-messages-iframe-container,
.hs-chat-widget,
.intercom-lightweight-app,
.floating-widget,
.share-widget {
  display: none !important;
}

img,
video {
  border-radius: 12px;
}

/* ===========================================================
   MOBILE NAV FIX (works with your current header HTML)
   Paste at END of CSS so it wins specificity.
=========================================================== */

/* Make the hamburger look correct with your 3 spans */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  margin: 3px 0;
}

/* Mobile menu panel */
@media (max-width: 980px) {

  .nav-toggle {
    display: inline-flex;
  }

  /* Ensure header can anchor the absolute nav panel */


  .header-inner {
    position: relative;
  }

  /* Hide nav by default, open with .open */
  #primary-nav {
    position: absolute;
    top: calc(var(--header-h) + 10px);
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    margin: 0 auto;
    display: none;
    z-index: 9998;
  }

  #primary-nav.open {
    display: block;
  }

  /* Turn nav list into a clean stack */
  #primary-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  #primary-nav .nav-list>li {
    width: 100%;
  }

  /* Make the top-level buttons full width */
  #primary-nav .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 12px;
    background: transparent;
  }

  /* Disable hover-open behavior on mobile (prevents accidental open/close) */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown--mega:hover .mega {
    display: none;
  }

  /* Dropdown menus become inline (not absolute) */
  #primary-nav .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 6px 0 4px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  #primary-nav .dropdown.open>.dropdown-menu {
    display: block;
  }

  /* Mega menu becomes inline panel */
  #primary-nav .dropdown--mega .mega {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  #primary-nav .dropdown--mega.open .mega {
    display: block;
  }

  /* Make mega inner look good in a stacked layout */
  #primary-nav .mega-inner {
    background: rgba(223, 241, 243, 0.35);
    border: 1px solid rgba(75, 162, 174, 0.18);
    border-radius: 14px;
    box-shadow: none;
    padding: 12px;
  }

  #primary-nav .mega-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }

  #primary-nav .mega-item {
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.06);
  }

  #primary-nav .mega-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  /* Make regular dropdown links match */
  #primary-nav .dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(223, 241, 243, 0.45);
    border: 1px solid rgba(75, 162, 174, 0.16);
    margin-top: 6px;
    text-decoration: none;
  }

  /* CTA as full-width button */
  #primary-nav .nav-cta {
    margin-top: 6px;
  }

  #primary-nav .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 16px;
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  #primary-nav .dropdown.open>.dropdown-menu {
    display: block !important;
  }

  #primary-nav .dropdown--mega.open>.mega {
    display: block !important;
  }
}

/* MOBILE NAV VISIBILITY */
@media (max-width: 980px) {
  #primary-nav {
    display: none;
  }

  #primary-nav.open {
    display: block;
  }

  /* dropdown open */
  #primary-nav .dropdown-menu {
    display: none;
  }

  #primary-nav .dropdown.open>.dropdown-menu {
    display: block;
  }

  /* mega open */
  #primary-nav .dropdown--mega .mega {
    display: none;
  }

  #primary-nav .dropdown--mega.open>.mega {
    display: block;
  }

  /* Hide submenus by default */
  .dropdown>.dropdown-menu,
  .dropdown>.mega {
    display: none;
  }

  /* Show when opened */
  .dropdown.open>.dropdown-menu,
  .dropdown.open>.mega {
    display: block;
  }
}

/* ===========================================================
   DESKTOP MEGA PANEL — POSITION RELATIVE TO NAV CONTAINER
   Fixes the "tall skinny white strip" mega menu
=========================================================== */

.main-header .main-nav {
  position: relative;
}

/* anchor for the mega panel */

/* Make the LI NOT be the positioning reference */
.main-header .dropdown--mega {
  position: static;
}

/* Position mega relative to .main-nav, centered, with real width */
.main-header .dropdown--mega .mega {
  position: absolute;
  top: calc(var(--header-h) - 6px);
  /* align under header row */
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 48px));
  max-width: 1120px;
  display: none;
  z-index: 1200;
}

/* ===========================================================
   DESKTOP MEGA: anchor to #primary-nav (not the <li>)
=========================================================== */
@media (min-width: 981px) {

  /* anchor for absolute-positioned mega */
  #primary-nav {
    position: relative;
  }

  /* do NOT let the <li> be the positioned ancestor */
  #primary-nav .dropdown--mega {
    position: static;
  }

  /* center the mega panel under the header */
  #primary-nav .dropdown--mega>.mega {
    position: absolute;
    top: calc(var(--header-h) - 6px);
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100vw - 48px));
    max-width: 1120px;
    display: none;
    z-index: 1200;
  }

  #primary-nav .dropdown--mega.open>.mega {
    display: block;
  }
}

/* Make nav the positioning anchor */
.main-nav {
  position: relative;
}

/* Top-level items */
.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

/* Trigger button */
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--delve-dark-text);
  transition: .2s ease;
}

.nav-trigger:hover,
.nav-item.open>.nav-trigger {
  color: var(--delve-primary);
  background: rgba(75, 162, 174, 0.12);
}

/* Caret flips up when open */
.nav-item.open .caret {
  transform: rotate(180deg);
}

.caret {
  display: inline-block;
  transition: .2s ease;
}

/* Panel (mega) */
.nav-panel {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 14px);
  width: min(1200px, calc(100vw - 48px));
  z-index: 9999;
}

.nav-item.open>.nav-panel {
  display: block;
}
/* Mega menu panel: keep it inside viewport */
.mega{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100vw - 24px)); /* key line: never exceed viewport */
  max-width: 1100px;
  box-sizing: border-box;
  overflow: hidden; /* prevents inner content from pushing out */
}
/* White card look */
.mega-inner {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 6px;
}

/* If the dropdown is close to the right edge, pin it to the right gutter */
.main-nav .nav-list > li:last-child .mega,
.main-nav .nav-list > li:nth-last-child(2) .mega{
  left: auto;
  right: 12px;
  transform: none;
}


/* Grid of links */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Optional: 2-column grid for smaller menus (Industries, etc.) */
.mega-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--delve-dark-text);
  transition: .18s ease;
}

.mega-item:hover {
  background: rgba(223, 241, 243, 0.65);
}

/* Icon tile */
.mega-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(110, 199, 207, 0.16);
  border: 1px solid rgba(75, 162, 174, 0.22);
  flex: 0 0 40px;
}

/* ===========================================================
   MEGA MENU ICON COLOR FIX
=========================================================== */

/* Force SVG icons to use brand color instead of inheriting text color */
.mega-ico svg {
  stroke: var(--ico-fg, var(--delve-primary)) !important;
  fill: none !important;
}

/* If any icons rely on fill instead of stroke */
.mega-ico svg path,
.mega-ico svg rect,
.mega-ico svg circle {
  stroke: var(--ico-fg, var(--delve-primary)) !important;
  fill: none !important;
}


/* Text styling */
.mega-item b {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.mega-item small {
  display: block;
  font-size: 13px;
  color: var(--delve-gray-text);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-panel {
    position: static;
    transform: none;
    width: 100%;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   DESKTOP: Make every dropdown (including Solutions) open
   as a centered full-width mega panel like your screenshot.
=========================================================== */

/* Anchor panels to the NAV, not the <li> */
.main-header .main-nav {
  position: relative;
}

/* Make the <li> NOT be the positioning context */
.main-header .dropdown--mega {
  position: static;
}

/* Full-width panel centered under header row */
.main-header .dropdown--mega>.mega {
  position: absolute;
  top: calc(100% + 12px);
  /* drops below header */
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100vw - 48px));
  max-width: 1200px;
  display: none;
  z-index: 9999;
}

/* Your existing JS toggles .open on the li */
.main-header .dropdown--mega.open>.mega {
  display: block;
}

/* Optional: 2-column variant for short menus */
.mega-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Make simple mega-items look like the “header” layout if they are plain text */
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
}

/* Highlight active top nav button + flip caret */
.dropdown.open>button.nav-link {
  color: var(--delve-primary);
  background: rgba(75, 162, 174, 0.12);
}

.dropdown.open>button.nav-link span[aria-hidden="true"] {
  display: inline-block;
  transform: rotate(180deg);
  transition: .2s ease;
}

.mega-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(110, 199, 207, 0.18);
  border: 1px solid rgba(75, 162, 174, 0.22);
  flex: 0 0 34px;
}

.mega-ico img {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 0;
  /* your global img rule adds rounding */
  object-fit: contain;
}

/* =========================
   DESKTOP MEGA — HARD OVERRIDE
   ========================= */
@media (min-width: 981px) {

  /* anchor the panel to the nav area */
  .main-header .main-nav {
    position: relative;
  }

  /* don't let the LI be the positioning context */
  .main-header .dropdown--mega {
    position: static !important;
  }

  /* full-size centered mega panel */
  .main-header .dropdown--mega .mega {
    position: absolute !important;
    top: calc(var(--header-h) + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: min(1120px, calc(100vw - 48px)) !important;
    max-width: 1120px !important;

    display: none;
    z-index: 99999;
  }

  .dropdown--mega.open .mega {
    display: block !important;
  }

  /* ensure the grid actually uses space */
  .mega-inner {
    padding: 26px 26px 16px !important;
  }

  .mega-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
    gap: 18px 22px !important;
  }

  .mega-item {
    width: 100% !important;
    min-width: 0;
    align-items: flex-start;
  }

  .mega-txt {
    min-width: 0;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 64px;
  /* ← increase this */
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* ===========================================================
   MOBILE DROPDOWN / MEGA — HARD FIX (PASTE AT END)
=========================================================== */
@media (max-width: 980px) {

  /* Make the open mobile menu a scrollable panel */
  #primary-nav {
    max-height: calc(100vh - var(--header-h) - 16px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure list doesn't clip children */
  #primary-nav .nav-list {
    overflow: visible;
  }

  /* Kill ALL desktop mega positioning on mobile */
  #primary-nav .dropdown--mega,
  #primary-nav .dropdown {
    position: relative !important;
  }

  #primary-nav .dropdown-menu,
  #primary-nav .mega {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    margin: 8px 0 0 !important;
  }

  /* Hide by default; show only when .open is applied */
  #primary-nav .dropdown-menu,
  #primary-nav .mega {
    display: none !important;
  }

  #primary-nav .dropdown.open>.dropdown-menu,
  #primary-nav .dropdown--mega.open>.mega {
    display: block !important;
  }

  /* Make mega panel content fit nicely in stacked mode */
  #primary-nav .mega-inner {
    padding: 12px !important;
    border-radius: 14px !important;
  }

  #primary-nav .mega-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Make dropdown items full width (prevents “cut off left” look) */
  #primary-nav .mega-item,
  #primary-nav .dropdown-menu a {
    width: 100% !important;
    box-sizing: border-box;
  }
}

/* ===========================================================
   H2 NORMALIZATION — FORCE CONSISTENT SIZE SITE-WIDE
=========================================================== */

h2 {
  font-size: clamp(2.1rem, 3.6vw, 2.75rem) !important;
  line-height: 1.1;
}

/* ===========================================================
   UNIVERSAL DELVE CARD SYSTEM (Row + Card + Icon)
=========================================================== */

/* Row container */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.card {
  background: #fff;
  border-radius: 28px;
  padding: 34px 26px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* Icon container (works for emoji or img/svg) */
.card-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 28px;
  display: grid;
  place-items: center;
}

/* Image-based icons */
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}

/* Title + body */
.card h4,
.card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #0f172a;
}

.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 28ch;
  margin-inline: auto;
}

/* =========================================
   COMPARISON — SITES VARIANT (minimal add-on)
   Reuses your existing .comparison-grid system
========================================= */

.comparison--sites {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .comparison--sites {
    padding: 70px 0;
  }
}

.comparison--sites .comparison-title {
  margin-bottom: 34px;
  color: var(--delve-dark-text);
}

/* Use your card language */
.comparison--sites .comparison-col {
  background: #ffffff;
  /* aligns with your other premium cards */
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 34px 34px;
}

/* Subtle differentiation between columns */
.comparison--sites .comparison-col--without {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.10), #ffffff 55%);
}

.comparison--sites .comparison-col--with {
  background: linear-gradient(180deg, rgba(75, 162, 174, 0.14), #ffffff 60%);
  border-color: rgba(75, 162, 174, 0.28);
}

/* Heading styling to match your uppercase patterns */
.comparison--sites .comparison-col h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 27, 42, 0.78);
  margin-bottom: 18px;
}

/* Make list items feel like “operational bullets” */
.comparison--sites .comparison-col li {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(247, 250, 252, 0.9);
  /* uses your --delve-bg-light vibe */
}

/* Keep your icon base, but align with Delve palette */
.comparison--sites .icon.good {
  background: rgba(75, 162, 174, 0.16);
  color: var(--delve-primary-dark);
}

.comparison--sites .icon.bad {
  background: rgba(244, 124, 42, 0.16);
  color: #cc5a12;
}

/* Footnote */
.comparison--sites .comparison-footnote {
  margin: 18px auto 0;
  max-width: 920px;
  text-align: center;
  color: var(--delve-gray-text);
  font-size: 16px;
}

.chart-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Choose fixed heights (adjust as you want) */
.chart-box--lg {
  height: 300px;
}

.chart-box--md {
  height: 240px;
}

/* Critical: keep canvas from reflowing */
.chart-box canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ===========================================================
   ANALYTICS DASHBOARD SECTION (uses existing Delve tokens)
   Paste at END of style.css
=========================================================== */

.dashboard-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--delve-bg-light) 100%);
}

/* Heading block stays aligned with your global h2 */
.dashboard-section .dash-head {
  max-width: 860px;
  margin-bottom: 22px;
}

.dashboard-section .dash-head p {
  color: var(--delve-gray-text);
  font-size: 18px;
  margin-top: -8px;
  margin-bottom: 14px;
}

/* Pills reuse your palette */
.dash-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(75, 162, 174, 0.08);
  border: 1px solid rgba(75, 162, 174, 0.16);
  color: rgba(10, 27, 42, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.dash-badge--alert {
  background: rgba(244, 124, 42, 0.10);
  border-color: rgba(244, 124, 42, 0.22);
  color: rgba(174, 76, 16, 0.95);
}

/* Two-column layout: screenshot + charts (optional) */
.dash-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 980px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

/* Screenshot frame: consistent with your card language */
.dash-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #0A1B2A;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

/* Important: prevent global img rounding from “double rounding” inside frame */
.dash-frame .dashboard-img {
  border-radius: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* Right column charts (optional) */
.dash-charts {
  display: grid;
  gap: 16px;
}

.dash-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.dash-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(75, 162, 174, 0.08), rgba(255, 255, 255, 0));
}

.dash-k {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 27, 42, 0.72);
  font-weight: 700;
}

.dash-v {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(10, 27, 42, 0.55);
}

/* ===========================================================
   STATIC CHART SIZING (prevents “growing canvas”)
=========================================================== */

/* Fixed height wrappers */
.chart-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 12px 14px;
}

.chart-box--lg {
  height: 340px;
}

.chart-box--md {
  height: 280px;
}

/* Force the canvas to fill wrapper, not reflow page height */
.chart-box canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Extra safety: stop parent from resizing due to canvas measurements */
.dash-card {
  contain: layout paint;
}

/* Card body should not expand based on canvas */
.chart-slot {
  height: 100%;
  padding: 14px 16px 16px;
  overflow: hidden;
}

/* Fixed heights to match your screenshot proportions */
.chart-slot--lg {
  height: 330px;
}

.chart-slot--md {
  height: 260px;
}

/* Lock canvas into the slot (prevents growth loops) */
.chart-slot canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Optional: make empty charts not feel empty while loading */
.chart-slot:empty::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

.dashboard-simple {
  padding: 90px 0;
  background: #fff;
}

.ds-head {
  max-width: 920px;
  margin: 0 auto 20px;
  text-align: center;
}

.ds-sub {
  color: var(--delve-gray-text, rgba(10, 27, 42, .70));
  font-size: 18px;
  margin-top: -6px;
}

.ds-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ds-tab {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(75, 162, 174, 0.08);
  color: rgba(10, 27, 42, .78);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.ds-tab.is-active {
  border-color: rgba(75, 162, 174, 0.28);
  background: rgba(75, 162, 174, 0.16);
}

.ds-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 980px) {
  .ds-grid {
    grid-template-columns: 1fr;
  }
}

.ds-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #0A1B2A;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .14);
  border: 1px solid rgba(15, 23, 42, .10);
}

.ds-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Optional: subtle role highlight (very soft, not “busy”) */
.ds-highlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(260px 180px at 30% 35%, rgba(34, 211, 197, .18), transparent 65%);
  opacity: .0;
  transition: opacity .18s ease, background-position .18s ease;
}

.ds-caption {
  margin-top: 12px;
  color: rgba(10, 27, 42, .60);
  font-size: 13px;
  line-height: 1.45;
}

.ds-side {
  display: grid;
  gap: 14px;
}

.ds-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
  padding: 14px 16px;
}

.ds-card--muted {
  background: linear-gradient(180deg, rgba(75, 162, 174, 0.07), rgba(255, 255, 255, 0));
}

.ds-k {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(10, 27, 42, .70);
  font-weight: 900;
  margin-bottom: 10px;
}

.ds-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(10, 27, 42, .72);
  line-height: 1.6;
}

.ds-list li {
  margin: 6px 0;
}

.ds-p {
  margin: 0;
  color: rgba(10, 27, 42, .70);
  line-height: 1.55;
}

/* Minimal additive styling: works with your existing feature-grid styles */
.pillars .grid {
  gap: 18px;
}

.pillar {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  outline: none;
}

.pillar:focus,
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.10);
  border-color: rgba(75, 162, 174, 0.22);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background:
    radial-gradient(120px 80px at 30% 25%, rgba(34, 211, 197, .18), transparent 60%),
    rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.icon-svg {
  width: 38px;
  height: 38px;
  display: block;
}

/* Subtle “interactive” motion, but restrained */
.pillar:hover .pulse {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: dash 1.2s ease forwards;
}

.pillar:hover .sync {
  animation: nudge 0.8s ease-in-out infinite alternate;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes nudge {
  from {
    opacity: .55;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-0.6px);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .pillar,
  .pillar:hover {
    transition: none;
  }

  .pillar:hover .pulse,
  .pillar:hover .sync {
    animation: none;
  }
}

/* ===========================================================
   UTILITY & REFACTORED CLASSES
   (Replacing inline styles)
=========================================================== */

/* Spacing */
.pt-60 {
  padding-top: 60px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Typography */
.text-center {
  text-align: center;
}

/* Testimonials Component */
.testimonials-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #14b8a6;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-heading {
  font-size: 30px;
  text-align: center;
  color: #0f172a;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.testimonial-quote-icon {
  font-size: 28px;
  color: #14b8a6;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
}

.testimonial-author {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: #6b7280;
}

/* Mega Menu Icons Variants */
.mega-ico--teal {
  --ico-bg: rgba(20, 184, 166, 0.14);
  --ico-fg: #0ea5a4;
}

.mega-ico--blue {
  --ico-bg: rgba(59, 130, 246, 0.12);
  --ico-fg: #2563eb;
}

.mega-ico--green {
  --ico-bg: rgba(16, 185, 129, 0.12);
  --ico-fg: #059669;
}

.mega-ico--indigo {
  --ico-bg: rgba(99, 102, 241, 0.12);
  --ico-fg: #4f46e5;
}

.mega-ico--orange {
  --ico-bg: rgba(249, 115, 22, 0.12);
  --ico-fg: #f97316;
}

/* Details Text Paragraphs */
.paragraph-max-700 {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--delve-gray-text);
  font-size: 18px;
}

/* Case Studies Backgrounds */
.case-bg-respiratory {
  background-image: url('images/case-respiratory.png');
}

.case-bg-oncology {
  background-image: url('images/case-oncology.png');
}

.case-bg-wearable {
  background-image: url('images/case-wearable.png');
}

/* Additional Utilities */
.text-muted {
  color: var(--delve-muted-text);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  opacity: 0.85;
  font-size: 15px;
  color: var(--delve-gray-text);
}

/* ===========================================================
   COLORFUL SVG ICON TILES (single, cleaned block)
   - Use this instead of both blocks above
   - Paste near the end of style.css
=========================================================== */

.feature-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 28px;

  display: grid;
  place-items: center;

  background:
    radial-gradient(120px 80px at 30% 25%,
      rgba(var(--ico-rgb, 75, 162, 174), 0.28),
      rgba(var(--ico-rgb, 75, 162, 174), 0.06) 55%,
      rgba(255, 255, 255, 0) 70%),
    rgba(15, 23, 42, 0.02);

  border: 1px solid rgba(var(--ico-rgb, 75, 162, 174), 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-icon .icon-svg,
.feature-icon svg {
  width: 54px;
  height: 54px;
  stroke: rgba(var(--ico-rgb, 75, 162, 174), 0.98);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature:hover .feature-icon {
  transform: translateY(-1px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.10);
  border-color: rgba(var(--ico-rgb, 75, 162, 174), 0.32);
}

/* Color variants */
.icon--teal {
  --ico-rgb: 75, 162, 174;
}

.icon--blue {
  --ico-rgb: 37, 99, 235;
}

.icon--indigo {
  --ico-rgb: 79, 70, 229;
}

.icon--green {
  --ico-rgb: 5, 150, 105;
}

.icon--orange {
  --ico-rgb: 244, 124, 42;
}

.icon--rose {
  --ico-rgb: 225, 29, 72;
}

/* ===========================================================
   CONCIERGE FEATURE ICON TILES (SCOPED + WINS CASCADE)
   Paste at END of style.css
=========================================================== */

.concierge-highlight .grid .feature .feature-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;

  width: 104px;
  height: 104px;
  border-radius: 28px;

  background:
    radial-gradient(120px 80px at 30% 25%,
      rgba(var(--ico-rgb, 75, 162, 174), 0.28),
      rgba(var(--ico-rgb, 75, 162, 174), 0.06) 55%,
      rgba(255, 255, 255, 0) 70%),
    rgba(15, 23, 42, 0.02) !important;

  border: 1px solid rgba(var(--ico-rgb, 75, 162, 174), 0.22) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06) !important;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.concierge-highlight .grid .feature:hover .feature-icon {
  transform: translateY(-1px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.10) !important;
  border-color: rgba(var(--ico-rgb, 75, 162, 174), 0.32) !important;
}

/* SVG sizing + stroke */
.concierge-highlight .grid .feature .feature-icon svg {
  width: 54px !important;
  height: 54px !important;
  stroke: rgba(var(--ico-rgb, 75, 162, 174), 0.98) !important;
  stroke-width: 1.9 !important;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* If any prior CSS targets .icon-svg, this ensures it still matches */
.concierge-highlight .grid .feature .feature-icon .icon-svg {
  width: 54px !important;
  height: 54px !important;
}

/* Color variants (on the .feature-icon element) */
.concierge-highlight .icon--teal {
  --ico-rgb: 75, 162, 174;
}

.concierge-highlight .icon--blue {
  --ico-rgb: 37, 99, 235;
}

.concierge-highlight .icon--indigo {
  --ico-rgb: 79, 70, 229;
}

.concierge-highlight .icon--green {
  --ico-rgb: 5, 150, 105;
}

.concierge-highlight .icon--orange {
  --ico-rgb: 244, 124, 42;
}

.concierge-highlight .icon--rose {
  --ico-rgb: 225, 29, 72;
}

/* ===========================================================
   TRUST MARQUEE (rolling list)
=========================================================== */

.trust {
  padding: 28px 0;
}

.trust-inner {
  text-align: center;
}

.trust-marquee {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  padding: 10px 0;
}

/* soft edge fade */
.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 64px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  will-change: transform;
  animation: trust-scroll 22s linear infinite;
  padding: 6px 12px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* Pause on hover */
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

/* Seamless loop: move by half the track (because we duplicated items) */
@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}

/* Mobile tuning */
@media (max-width: 640px) {
  .trust-chip {
    padding: 9px 14px;
    font-size: 13px;
  }

  .trust-track {
    animation-duration: 18s;
    gap: 14px;
  }

  .trust-marquee::before,
  .trust-marquee::after {
    width: 42px;
  }
}

/* ===========================================================
   TRUST — JAZZY MARQUEE (premium glass + animated border)
=========================================================== */

.trust--jazzy {
  padding: 34px 0 28px;
}

.trust--jazzy .trust-inner {
  text-align: center;
}

.trust--jazzy .trust-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

/* Container pill */
.trust-marquee.jazzy {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 12px 14px;
  isolation: isolate;

  /* “glass” */
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(10px);
}

/* Animated gradient border (subtle but lively) */
.trust-marquee.jazzy::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(90deg,
      rgba(75, 162, 174, 0.65),
      rgba(37, 99, 235, 0.55),
      rgba(79, 70, 229, 0.55),
      rgba(5, 150, 105, 0.55),
      rgba(75, 162, 174, 0.65));
  background-size: 260% 100%;
  animation: trust-border-shift 7.5s linear infinite;

  /* mask border only */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

@keyframes trust-border-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Soft glow blob behind content */
.trust-marquee.jazzy .trust-glow {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 15% 50%, rgba(75, 162, 174, 0.16), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 85% 40%, rgba(79, 70, 229, 0.14), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 60% 80%, rgba(5, 150, 105, 0.10), rgba(255, 255, 255, 0) 42%);
  filter: blur(18px);
  z-index: 0;
  animation: trust-glow-float 8s ease-in-out infinite;
}

@keyframes trust-glow-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(16px, -10px, 0);
  }
}

/* Edge fades (make motion feel cleaner) */
.trust-marquee.jazzy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 12%),
    linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 12%);
  mix-blend-mode: normal;
}

/* Track */
.trust-marquee.jazzy .trust-track {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  will-change: transform;
  padding: 4px 6px;
  animation: trust-scroll 18s linear infinite;
}

/* Chips: lively but restrained */
.trust-marquee.jazzy .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;

  background:
    radial-gradient(120px 60px at 25% 20%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.45) 60%,
      rgba(255, 255, 255, 0.25) 100%);

  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);

  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;

  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

/* Small colorful dot = “techy” signal */
.trust-marquee.jazzy .trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, rgba(75, 162, 174, 1), rgba(79, 70, 229, 1));
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.24);
}

/* Hover: lift + richer text */
.trust-marquee.jazzy .trust-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 162, 174, 0.28);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.92);
}

/* Pause on hover */
.trust-marquee.jazzy:hover .trust-track {
  animation-play-state: paused;
}

/* Seamless loop: half width (since duplicated list) */
@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .trust-marquee.jazzy::before,
  .trust-marquee.jazzy .trust-glow,
  .trust-marquee.jazzy .trust-track {
    animation: none !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .trust--jazzy {
    padding: 26px 0 20px;
  }

  .trust--jazzy .trust-kicker {
    font-size: 12px;
  }

  .trust-marquee.jazzy {
    padding: 10px 10px;
  }

  .trust-marquee.jazzy .trust-track {
    animation-duration: 14s;
    gap: 12px;
  }

  .trust-marquee.jazzy .trust-chip {
    padding: 9px 12px;
    font-size: 13px;
  }
}

.dh-footer{
    background: var(--dh-navy);
    color: #fff;
  }

  /* top compliance band */
  .dh-footer__compliance{
    background: var(--dh-teal);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .dh-footer__compliance-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
  }
  @media (max-width: 980px){
    .dh-footer__compliance-inner{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 520px){
    .dh-footer__compliance-inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .dh-badge{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.06em;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    opacity: 0.95;
    padding: 8px 6px;
    border-radius: 14px;
  }
  .dh-badge svg{
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    color: rgba(255,255,255,0.95);
    opacity: 0.95;
  }
  .dh-badge span{
    line-height: 1.12;
    white-space: nowrap;
  }

  /* main */
  .dh-footer__main{
    background: var(--dh-navy);
    border-top: 1px solid rgba(255,255,255,0.10);
  }
  .dh-footer__grid{
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 18px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }
  @media (max-width: 980px){
    .dh-footer__grid{ grid-template-columns: 1fr; padding: 46px 18px 34px; }
  }

  .dh-footer__brand{
    display: grid;
    gap: 18px;
    align-content: start;
  }
  .dh-footer__logo img{
    width: 180px;
    height: auto;
    display: block;
    filter: brightness(1.05);
  }

  .dh-footer__social{
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .dh-social{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid rgba(95, 158, 160, 0.85);
    color: rgba(95, 158, 160, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }
  .dh-social:hover{
    transform: translateY(-1px);
    background: rgba(95,158,160,0.12);
    border-color: rgba(95,158,160,1);
  }

  .dh-footer__cols{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
  }
  @media (max-width: 760px){
    .dh-footer__cols{ grid-template-columns: 1fr; gap: 28px; }
  }

  .dh-footer__h{
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dh-line);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
  }
  .dh-footer__h--spaced{ margin-top: 22px; }

  .dh-footer__links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  .dh-footer__links a{
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.45;
  }
  .dh-footer__links a:hover{
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* legal bar */
  .dh-footer__legal{
    background: var(--dh-navy-2);
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .dh-footer__legal-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
  }
  .dh-footer__copy{ opacity: 0.85; }
  .dh-footer__sep{ opacity: 0.5; padding: 0 6px; }
  .dh-footer__legal-link{
    color: rgba(255,255,255,0.65);
    text-decoration: none;
  }
  .dh-footer__legal-link:hover{
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
    

.dh-footer__compliance {
  padding: 8px 0;
}

.dh-badge svg {
  width: 30px;
  height: 30px;
}

.dh-badge span {
  font-size: 0.68rem;
}
/* Prevent "100vw + padding" overflow patterns globally */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Stat bar: constrain width + allow wrapping */
.stat-bar {
  width: 100%;
  max-width: 1100px;          /* adjust to taste */
  margin: 28px auto 0;        /* centers it */
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;            /* key: allows wrapping instead of overflow */
  justify-content: space-between;

  /* optional visual style if you want a contained bar look */
  border-radius: 16px;
}

/* Each stat block: flexible, but not too small */
.stat-bar .stat-block {
  flex: 1 1 220px;            /* grows, shrinks, base width */
  min-width: 200px;           /* prevents squishing */
  text-align: center;
}

/* Numbers: prevent huge fonts causing overflow on small screens */
.stat-bar .stat-block h3 {
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 6px;
  white-space: nowrap;        /* keeps "3500+" together */
}

/* Labels: wrap nicely */
.stat-bar .stat-block p {
  margin: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* Mobile: stack cleanly */
@media (max-width: 640px) {
  .stat-bar {
    max-width: 92vw;
    justify-content: center;
  }
}
/* ===========================================================
   COMPARISON (Sites) — Mobile Stack + No Horizontal Overflow
   Paste at END of style.css
=========================================================== */

.comparison--sites {
  width: 100%;
  overflow-x: clip; /* avoids sideways scroll without hiding vertical */
}

.comparison--sites .comparison-grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Critical: allow grid children to shrink instead of forcing overflow */
.comparison--sites .comparison-col {
  min-width: 0;
}

/* Stack on smaller screens */
@media (max-width: 980px) {
  .comparison--sites .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison--sites .comparison-col {
    padding: 22px 18px; /* optional: reduce padding on mobile */
  }
}

/* HERO — single source of centering (the .container) */
.hero--three-col .hero-grid{
  max-width: none;          /* container controls width */
  padding: 0;               /* container controls gutter */
  margin: 0;                /* no extra centering layer */
  width: 100%;
}

/* Remove the left shift that makes the hero look off-center */
.hero-col--metrics{
  transform: none !important;
}

@media (min-width: 1200px) {
  .hero-col--metrics { transform: translateX(-28px); }
}
