:root {
  --bg: rgba(204, 201, 198, 1);
  --panel: #ffffff;
  --panelSolid: #ffffff;

  --text: #111214;
  --muted: rgba(17, 18, 20, 0.6);
  --muted2: rgba(17, 18, 20, 0.45);

  --line: rgba(17, 18, 20, 0.08);
  --line2: rgba(17, 18, 20, 0.12);

  --radius: 12px;

  --btn: #111214;
  --btnText: #fff;

  --container: 100%;
  --navH: 72px; /* nav only, ribbon removed */
  --ribbonH: 0px;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* Reduce paint/layout thrashing */
.nav,
.dd-panel,
.mobile-menu {
  will-change: opacity, transform;
}

/* Content containment for performance */
section {
  contain: layout style;
}

/* Smooth scrolling with reduced motion support */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Custom scrollbar - lime green accent */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(17, 18, 20, 0.05);
}
::-webkit-scrollbar-thumb {
  background: #c6ef4e;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: #b8e445;
  border: 2px solid transparent;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #c6ef4e rgba(17, 18, 20, 0.05);
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 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;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #111214;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #c6ef4e;
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family:
    "IBM Plex Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #c6ef4e;
  outline-offset: 2px;
}

/* Focus visible for better keyboard navigation */
:focus-visible {
  outline: 2px solid #c6ef4e;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: 95%;
  max-width: none;
  margin-inline: auto;
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }
}

/* NAV (no divider) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(205, 201, 199, 0.92);
}

/* Preserve page-shell border-radius as it scrolls under the sticky nav */
.nav::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 1%; /* matches page-shell left edge (width: 98%, centered) */
  right: 1%; /* matches page-shell right edge */
  height: 16px;
  pointer-events: none;
  z-index: 99;
  /* Concave bottom-left and bottom-right corners using --bg color,
     transparent circles reveal the white page-shell rounded corners below */
  background:
    radial-gradient(circle at 100% 100%, transparent 16px, var(--bg) 16.5px)
      left / 16px 100% no-repeat,
    radial-gradient(circle at 0% 100%, transparent 16px, var(--bg) 16.5px)
      right / 16px 100% no-repeat;
}

/* Hide corner decoration when any dropdown is open */
.nav:has(.nav-dd[open])::after {
  display: none;
}

@media (max-width: 520px) {
  /* page-shell has border-radius: 0 on mobile, no corner effect needed */
  .nav::after {
    display: none;
  }
}

.nav-container {
  width: min(1850px, calc(100% - max(48px, 2vw)));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .nav-container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex: 1;
  text-decoration: none !important;
}
.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links > a,
.nav-dd summary {
  font-size: 14px;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.7);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  letter-spacing: 0;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-links > a:hover,
.nav-dd summary:hover {
  background: rgba(17, 18, 20, 0.05);
  color: var(--text);
}

/* Active state when dropdown is open */
.nav-dd[open] summary {
  background: rgba(17, 18, 20, 0.08);
  color: var(--text);
}

.nav-dd {
  position: relative;
}
.nav-dd summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.nav-dd summary::-webkit-details-marker {
  display: none;
}
.chev {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.4;
}

.dd-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  min-width: 280px;
  background: var(--panelSolid);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(17, 18, 20, 0.12);
  padding: 16px;
  z-index: 200;
}

.dd-panel.wide {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dd-panel.mega {
  min-width: 720px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.dd-panel.mega-4 {
  min-width: 880px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 0;
}

/* Mega menu full-width horizontal layout */
.dd-panel.mega-menu {
  position: fixed;
  left: 80px;
  right: 80px;
  top: var(--navH);
  transform: none;
  width: calc(100% - 160px);
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(17, 18, 20, 0.08);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.dd-main-content {
  padding: 0 0 0 48px;
  background: var(--panelSolid);
}

.dd-row {
  padding: 0;
}

.dd-row:last-child {
  border-bottom: none;
}

/* Section header - matches eyebrow style */
.dd-row-header {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 24px 0 12px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-row-header::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c6ef4e;
  border-radius: 2px;
  flex-shrink: 0;
}

.dd-row-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 24px 24px 0;
  gap: 0;
}

.dd-row-items .dd-item {
  padding: 16px 20px;
  margin: 0;
  border-radius: 0;
  border-left: 4px solid transparent;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.dd-row-items .dd-item:hover {
  background: rgba(17, 18, 20, 0.02);
  border-left-color: #c6ef4e;
}

.dd-row-items .dd-item .dd-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.dd-row-items .dd-item .dd-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

/* For compact items without descriptions */
.dd-row-items.compact .dd-item .dd-sub {
  display: none;
}

/* CTA sidebar - same background as main menu */
.dd-cta-sidebar {
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.dd-cta-sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.3;
}

.dd-cta-sidebar-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.dd-cta-sidebar-visual {
  background: rgba(17, 18, 20, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 8px 0;
}

.dd-cta-sidebar-metric {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dd-cta-sidebar-metric-icon {
  width: 42px;
  height: 42px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.dd-cta-sidebar-metric-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.dd-cta-sidebar-metric-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.dd-progress-bar {
  height: 4px;
  background: rgba(17, 18, 20, 0.08);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.dd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c6ef4e 0%, #a8d935 100%);
  border-radius: 2px;
  width: 96%;
}

.dd-cta-sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #c6ef4e;
  border: 1px solid #b8e040;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  margin-top: 8px;
  align-self: flex-start;
}

.dd-cta-sidebar-btn:hover {
  background: #b8e040;
  border-color: #a8d030;
}

.dd-cta-sidebar-btn svg {
  width: 14px;
  height: 14px;
}

/* Hover bridge for dropdown - prevents closing when moving to panel */
.nav-dd {
  position: relative;
}

.nav-dd .dd-panel.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
  background: transparent;
}

.dd-section {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.dd-section:last-child {
  border-right: none;
  background: rgba(17, 18, 20, 0.02);
  border-radius: 0 16px 16px 0;
}

.dd-section-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 0 12px;
}

.dd-section .dd-item {
  padding: 12px 12px;
  margin-bottom: 4px;
}

.dd-case-study {
  display: block;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none !important;
  margin-bottom: 8px;
}

.dd-case-study:last-child {
  margin-bottom: 0;
}

.dd-case-study:hover {
  background: rgba(17, 18, 20, 0.04);
}

.dd-case-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.dd-case-img {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(17, 18, 20, 0.3);
}

.dd-btn-lime {
  display: block;
  background: #c6ef4e;
  color: #111214;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  margin: 12px 12px;
  transition: filter 0.15s ease;
}
.dd-btn-lime:hover {
  filter: brightness(0.95);
}

.dd-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  background: rgba(17, 18, 20, 0.02);
  margin: 0 -0px;
  border-radius: 0 0 16px 16px;
}

.dd-footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none !important;
  border-right: 1px solid var(--line);
}

.dd-footer-item:last-child {
  border-right: none;
}

.dd-footer-item:hover {
  background: rgba(17, 18, 20, 0.03);
}

.dd-footer-item:first-child:hover {
  border-radius: 0 0 0 16px;
}

.dd-footer-item:last-child:hover {
  border-radius: 0 0 16px 0;
}

.dd-footer-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 18, 20, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.dd-footer-item .dd-title {
  font-size: 13px;
}

.dd-footer-item .dd-sub {
  font-size: 12px;
  margin-top: 2px;
}

.dd-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 16px 20px;
  background: #111214;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.dd-footer-status:hover {
  background: #2a2b2e;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.dd-section-utils {
  background: rgba(17, 18, 20, 0.02);
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.dd-section-utils .dd-section-title {
  display: none;
}

.dd-util-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none !important;
  border-bottom: 1px solid var(--line);
}

.dd-util-item:hover {
  background: rgba(17, 18, 20, 0.03);
}

.dd-util-item:first-child {
  padding-top: 18px;
}

.dd-util-item:first-child:hover {
  border-radius: 0 16px 0 0;
}

.dd-util-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 18, 20, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--muted);
}

.dd-util-item .dd-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.dd-util-item .dd-sub {
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.4;
}

.dd-status-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin: auto 20px 20px 20px;
  background: #111214;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.15s ease;
  justify-content: center;
}

.dd-status-btn:hover {
  background: #2a2b2e;
}

/* CTA Card Section (Mega menu) */
.dd-cta-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 0 16px 16px 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 260px;
}

.dd-cta-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.dd-cta-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 20px;
}

.dd-cta-card-visual {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.dd-cta-card-metrics {
  display: flex;
  gap: 16px;
}

.dd-cta-metric {
  text-align: center;
}

.dd-cta-metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #c6ef4e;
}

.dd-cta-metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dd-cta-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.15s ease;
  margin-top: auto;
}

.dd-cta-card-btn:hover {
  background: #f0f0f0;
}

.dd-cta-card-btn svg {
  width: 16px;
  height: 16px;
}

/* Page overlay when dropdown is open */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 18, 20, 0.4);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* "Hover bridge" so moving from summary -> panel doesn't close it */
.dd-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

/* Hide when details is closed */
details.nav-dd:not([open]) .dd-panel {
  display: none;
}

.dd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none !important;
}
.dd-item:hover {
  background: rgba(17, 18, 20, 0.04);
}
.dd-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.dd-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex: 1;
  justify-content: flex-end;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.7);
  text-decoration: none !important;
  padding: 10px 20px;
  border: 1px solid rgba(17, 18, 20, 0.2);
  border-radius: 999px;
  transition: all 0.15s ease;
}
.nav-signin:hover {
  color: var(--text);
  border-color: rgba(17, 18, 20, 0.4);
  background: rgba(17, 18, 20, 0.03);
}
.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.7);
  text-decoration: none !important;
  padding: 10px 20px;
  border: 1px solid rgba(17, 18, 20, 0.2);
  border-radius: 999px;
}
.phone {
  font-size: 14px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
}
.btn:hover {
  background: rgba(17, 18, 20, 0.05);
}
.btn.primary {
  background: #111214;
  color: #fff;
  border-color: #111214;
  font-weight: 500;
  transition: all 0.15s ease;
}
.btn.primary:hover {
  background: #c6ef4e;
  color: #111214;
  border-color: #c6ef4e;
}

/* CENTER PANEL (starts immediately after navbar) */
.page {
  padding: var(--navH) 0 34px;
}

/* Sections (no separators) */
section {
  padding: 80px 0;
  border-top: none !important;
}

@media (max-width: 520px) {
  section {
    padding: 20px 0;
  }
}

section[id] {
  scroll-margin-top: calc(var(--navH) + 18px);
}

/* Typography */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c6ef4e;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Section divider line */
.section-divider {
  height: 1px;
  background: rgba(17, 18, 20, 0.08);
  margin: 16px 0 32px;
  border: none;
}

/* Remove default h2 top margin after section divider */
.section-divider + h2 {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navH);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--panelSolid);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  display: block !important;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100%;
}
.mobile-menu-links {
  padding: 0;
  flex: 1;
}

/* Accordion items */
.mobile-accordion {
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}
.mobile-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}
.mobile-accordion summary:hover {
  background: rgba(17, 18, 20, 0.03);
}
.mobile-accordion[open] summary {
  background: rgba(17, 18, 20, 0.03);
}
.mobile-accordion summary::-webkit-details-marker {
  display: none;
}
.mobile-accordion .mobile-chevron {
  color: rgba(17, 18, 20, 0.4);
  transition: transform 0.2s ease;
  width: 16px;
  height: 16px;
}
.mobile-accordion[open] .mobile-chevron {
  transform: rotate(180deg);
}
.mobile-accordion-content {
  padding: 0 24px 20px 24px;
  background: rgba(17, 18, 20, 0.02);
}
.mobile-accordion-content a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(17, 18, 20, 0.7);
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 18, 20, 0.06);
}
.mobile-accordion-content a:last-child {
  border-bottom: none;
}
.mobile-accordion-content a:hover {
  color: var(--text);
}
.mobile-section-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(17, 18, 20, 0.5);
  padding: 16px 0 8px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-section-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c6ef4e;
  border-radius: 2px;
  flex-shrink: 0;
}
.mobile-section-title:first-child {
  margin-top: 0;
  padding-top: 12px;
}

/* Bottom CTA */
.mobile-menu-cta {
  padding: 20px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}
.mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  background: #c6ef4e;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.15s ease;
}
.mobile-cta-primary:hover {
  filter: brightness(0.95);
}

/* Mobile footer info */
.mobile-menu-footer {
  padding: 20px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}
.mobile-menu-footer-contact {
  margin-bottom: 16px;
}
.mobile-menu-footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
}
.mobile-menu-footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.mobile-menu-footer-social a {
  color: #111214;
}
.mobile-menu-footer-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(17, 18, 20, 0.5);
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  .mobile-menu {
    display: block;
  }
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid rgba(17, 18, 20, 0.1);
  font-size: 13px;
  color: rgba(17, 18, 20, 0.75);
  font-weight: 500;
}
.chip .mini {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.55);
}

/* Dashboard */
.dash {
  padding: 18px;
  border-radius: 22px;
}
.dash-title {
  font-weight: 600;
  color: rgba(17, 18, 20, 0.84);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.metric {
  border: 1px solid rgba(17, 18, 20, 0.1);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 86px;
}
.metric .label {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.label img {
  width: 15px;
  height: 15px;
}

.metric .value {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--text);
}
.metric .delta {
  font-size: 12px;
  color: rgba(17, 18, 20, 0.55);
  font-weight: 500;
}
@media (max-width: 520px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}
.payers {
  margin-top: 10px;
  padding-top: 10px;
}
.payers .row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid rgba(17, 18, 20, 0.1);
  color: rgba(17, 18, 20, 0.72);
  font-weight: 500;
}

/* Problem */
/* Payers band (logos) - Cursor-style grid */
.payers-band {
  padding: 48px 0 56px;
}
.payers-band h2 {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(17, 18, 20, 0.6);
  margin-bottom: 24px;
}

.aetnaLogo img,
.bcbsLogo img,
.humanaLogo img,

.payer-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 400;
}

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.msg .who {
  font-weight: 600;
}
.msg .meta {
  font-size: 12px;
  color: var(--muted2);
  margin: 4px 0 10px;
  font-weight: 400;
}
.msg .bubble {
  font-size: 14px;
  color: rgba(17, 18, 20, 0.72);
  line-height: 1.5;
  background: rgba(17, 18, 20, 0.04);
  border: 1px solid rgba(17, 18, 20, 0.08);
  padding: 12px;
  border-radius: 14px;
  font-weight: 400;
}
.aetna {
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.aetna .title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 18, 20, 0.78);
}
.aetna .sub {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
  font-weight: 400;
}
.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid rgba(17, 18, 20, 0.1);
  font-size: 12px;
  color: rgba(17, 18, 20, 0.7);
  white-space: nowrap;
  font-weight: 500;
}
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}
.stat .big {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat .txt {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Impact numbers (from operatorlabs.ai) */
.impact-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .impact-metrics {
    grid-template-columns: 1fr;
  }
}

.impact-metric {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}
.impact-metric .num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--text);
}
.impact-metric .title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 18, 20, 0.78);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.impact-metric .desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}

.impact-metric:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(17, 18, 20, 0.16);
}

/* “Everything you need” tab-cards + panel */
.need-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.need-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.tab-card {
  flex: 1 1 220px;
  border-radius: 10px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.45);
  padding: 14px 14px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  min-height: 88px;
}
.tab-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(17, 18, 20, 0.16);
}
.tab-card[aria-selected="true"] {
  /* Keep it identical to normal cards (no active state) */
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(17, 18, 20, 0.12);
  box-shadow: none;
}
.tab-top {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
}
.tab-title {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: rgba(17, 18, 20, 0.85);
}
.tab-sub {
  font-size: 13px;
  color: rgba(17, 18, 20, 0.62);
  font-weight: 400;
  line-height: 1.35;
}

.need-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
  margin-top: 30px;
}
@media (max-width: 980px) {
  .need-inner {
    grid-template-columns: 1fr;
  }
}

.panel-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}
.panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.bullets {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(17, 18, 20, 0.72);
  font-weight: 400;
  font-size: 14px;
}
.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(17, 18, 20, 0.14);
  background: rgba(17, 18, 20, 0.06);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check:before {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(17, 18, 20, 0.75);
  border-bottom: 2px solid rgba(17, 18, 20, 0.75);
  transform: rotate(-45deg);
  display: block;
  margin-top: -1px;
}
.panel-visual {
  border-radius: 18px;
  border: 1px dashed rgba(17, 18, 20, 0.22);
  background: rgba(17, 18, 20, 0.03);
  padding: 16px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(17, 18, 20, 0.55);
  font-size: 13px;
  font-weight: 500;
}

/* Agent demo */
.media {
  margin-top: 14px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 980px) {
  .media {
    grid-template-columns: 1fr;
  }
}
.frame {
  border-radius: 18px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: #000;
  padding: 0;
  min-height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}
.transcript {
  border-radius: 18px;
  padding: 16px;
}
.transcript .line {
  font-size: 13px;
  color: rgba(17, 18, 20, 0.74);
  padding: 10px 0;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  font-weight: 400;
}
.transcript .line:first-child {
  border-top: 0;
  padding-top: 0;
}
.speaker {
  font-weight: 600;
  margin-right: 6px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(17, 18, 20, 0.07);
  border: 1px solid rgba(17, 18, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  font-weight: 400;
}

/* Difference */
.diff {
  margin-top: 24px;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  background: transparent;
  overflow: hidden;
}
.diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
  background: transparent;
}
.diff-head div {
  padding: 20px 0;
  font-weight: 500;
  font-size: 14px;
  color: rgba(17, 18, 20, 0.5);
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
}
.diff-row:last-child {
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
}
.diff-cell {
  padding: 20px 0;
  padding-right: 24px;
  font-size: 15px;
  color: rgba(17, 18, 20, 0.7);
  font-weight: 400;
  line-height: 1.5;
}
.diff-cell:first-child {
  border-right: none;
  color: rgba(17, 18, 20, 0.85);
  font-weight: 500;
}

/* Who we serve */
.serve {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px) {
  .serve {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .serve {
    grid-template-columns: 1fr;
  }
}
.card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}
.serve h3 {
  font-size: 14px;
  font-weight: 600;
}
.serve p {
  font-size: 13px;
  font-weight: 400;
}

/* Customer Stories hover panel */
.stories {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}
@media (max-width: 980px) {
  .stories {
    grid-template-columns: 1fr;
  }
}
.people {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.person-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}
.person-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(17, 18, 20, 0.16);
}
.person-btn[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 18, 20, 0.18);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(17, 18, 20, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(17, 18, 20, 0.72);
  font-size: 12px;
  flex: 0 0 auto;
}
.pmeta .name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.pmeta .role {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
  font-weight: 400;
}
.story-card {
  border-radius: 26px;
  padding: 18px;
  min-height: 180px;
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.06);
}
.story-card .quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17, 18, 20, 0.78);
  font-weight: 400;
  margin-top: 8px;
}
.story-card .hint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(17, 18, 20, 0.52);
  font-weight: 400;
}

/* Compliance (end section) */
.confidence {
  overflow: hidden;
}
.confidence-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) {
  .confidence-inner {
    grid-template-columns: 1fr;
  }
}
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .badge-grid {
    gap: 12px;
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .badge-grid {
    gap: 30px;
  }
}
.badge-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
  max-width: 140px;
}

.badge-box {
  width: 120px;
  height: 120px;
  background: #f7f5f2;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-mark {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.badge-mark svg {
  width: 100%;
  height: 100%;
  stroke: rgba(17, 18, 20, 0.4);
  fill: none;
  stroke-width: 1.2;
}

.badge-mark svg text {
  fill: rgba(17, 18, 20, 0.4);
  stroke: none;
  font-family: inherit;
}

.badge-name {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.4);
  text-align: center;
}

/* Footer (4x2 grid layout) */
.footer-wrapper {
  width: min(1850px, calc(100% - max(48px, 2vw)));
  max-width: 100%;
  margin: 96px auto 0;
}

@media (max-width: 520px) {
  .footer-wrapper {
    width: 95%;
  }
}

footer {
  padding: 0;
  background: var(--bg);
  border: 1px solid #cdc9c7;
  border-radius: 16px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
}

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

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

.footer-cell {
  padding: 32px 28px;
  border-right: 1px solid rgba(17, 18, 20, 0.1);
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
}

@media (max-width: 520px) {
  .footer-cell {
    padding: 32px 20px;
  }
}

.footer-cell:nth-child(4n) {
  border-right: none;
}

.footer-cell:nth-last-child(-n + 4) {
  border-bottom: none;
}

/* Rounded corners for bottom row */
.footer-cell:nth-child(5) {
  border-bottom-left-radius: 16px;
}

.footer-cell:nth-child(8) {
  border-bottom-right-radius: 16px;
}

@media (max-width: 980px) {
  .footer-cell:nth-child(4n) {
    border-right: 1px solid rgba(17, 18, 20, 0.1);
  }
  .footer-cell:nth-child(2n) {
    border-right: none;
  }
  .footer-cell:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(17, 18, 20, 0.1);
  }
  .footer-cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .footer-cell:nth-child(5) {
    border-bottom-left-radius: 0;
  }
  .footer-cell:nth-child(8) {
    border-bottom-right-radius: 0;
  }
  .footer-cell:nth-child(7) {
    border-bottom-left-radius: 16px;
  }
  .footer-cell:nth-child(8) {
    border-bottom-right-radius: 16px;
  }
}

@media (max-width: 520px) {
  .footer-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(17, 18, 20, 0.1);
    border-radius: 0 !important;
  }
  .footer-cell:last-child {
    border-bottom: none;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
  }
}

/* Dark cell (company info) - now matching footer bg */
.footer-cell-dark {
  background: var(--bg);
  color: var(--text);
}

.footer-cell-dark .footer-logo {
  height: 45px;
  margin-bottom: 16px;
}

.footer-cell-dark .foot-blurb {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-cell-dark .foot-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-cell-dark .foot-contact a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-cell-dark .foot-contact a:hover {
  color: var(--muted);
}

.footer-cell-dark h4 {
  color: var(--muted);
}

.foot-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(17, 18, 20, 0.1);
  margin: 16px 0;
}

.foot-section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.foot-social {
  display: flex;
  gap: 12px;
}

.foot-social a {
  color: #111214;
  transition: color 0.15s ease;
}

.foot-social a:hover {
  color: var(--muted);
}

.foot-phone {
  margin-top: 10px;
}

.foot-phone a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.foot-phone a:hover {
  color: var(--muted);
}

.foot-ai-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.foot-ai-logo {
  width: 28px;
  height: 28px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s ease;
}

.foot-ai-logo:hover {
  background: rgba(17, 18, 20, 0.1);
  color: var(--text);
}

.foot-ai-logo img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.foot-ai-logo:hover img {
  opacity: 1;
}

/* Certifications cell */
/* Certs cell - now matching footer bg */
.footer-cell-certs {
  background: var(--bg);
  color: var(--text);
}

.footer-cell-certs h4 {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-certs-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-cert-badge {
  width: 56px;
  height: 56px;
  background: rgba(17, 18, 20, 0.06);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease;
}

.footer-cert-badge:hover {
  background: rgba(17, 18, 20, 0.1);
}

.footer-cert-badge svg {
  width: 36px;
  height: 36px;
}

.footer-cert-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-cell-certs .foot-tagline {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.footer-cell-certs .trust-link {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-cell-certs .trust-link:hover {
  text-decoration: underline;
}

/* CTA cell - solid dark teal, no gradient */
.footer-cell-cta {
  background: #3a5a5a;
  color: #fff;
}

.footer-cell-cta h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-cell-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.footer-cta-btn:hover {
  background: #f5f5f5;
}

.footer-cta-btn svg {
  width: 12px;
  height: 12px;
}

/* CTA cell - white background version */
.footer-cell-cta-white {
  background: #f5f3f2;
  color: var(--text);
}

@media (max-width: 520px) {
  .footer-cell-cta-white {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.footer-cell-cta-white h4 {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-cell-cta-white p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-cta-btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #c6ef4e;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  cursor: pointer;
}

.footer-cta-btn-lime:hover {
  background: #b8e040;
}

.footer-cta-btn-lime svg {
  width: 12px;
  height: 12px;
}

/* Link cells */
.footer-cell h4 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-cell .foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cell .foot-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-cell .foot-links a:hover {
  color: var(--muted);
}

.foot-bottom {
  padding: 20px 28px;
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(17, 18, 20, 0.5);
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  background: var(--bg);
}

@media (max-width: 520px) {
  .foot-bottom {
    padding: 20px 0px;
  }
}

.foot-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.foot-bottom-links a {
  color: rgba(17, 18, 20, 0.5);
  text-decoration: none;
  padding: 0 8px;
  border-right: 1px solid rgba(17, 18, 20, 0.15);
}
.foot-bottom-links a:last-child {
  border-right: none;
  padding-right: 0;
}
.foot-bottom-links a:first-child {
  padding-left: 0;
}
.foot-bottom-links a:hover {
  color: var(--text);
}
.foot-bottom-right {
  white-space: nowrap;
  display: inline-flex;
  gap: 4px;
}

@media (max-width: 980px) {
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .foot-bottom-links {
    order: 2;
  }
  .foot-bottom-right {
    order: 3;
  }
}

.foot-links a:hover {
  text-decoration: underline !important;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.mini-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.62);
  text-decoration: none !important;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  background: rgba(255, 255, 255, 0.45);
}
.mini-link:hover {
  background: rgba(255, 255, 255, 0.62);
}

/* Footer CTA Banner (Mega menu) */
.foot-cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
}

.foot-cta-banner-left {
  background: #111214;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foot-cta-banner-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.foot-cta-banner-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}

.foot-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  align-self: flex-start;
}

.foot-cta-banner-btn:hover {
  background: #f0f0f0;
}

.foot-cta-banner-btn svg {
  width: 14px;
  height: 14px;
}

.foot-cta-banner-right {
  background: linear-gradient(
    135deg,
    #3a6a7a 0%,
    #5a8a9a 30%,
    #c6a070 70%,
    #e8c090 100%
  );
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.foot-cta-banner-stat {
  margin-bottom: 16px;
}

.foot-cta-banner-stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.foot-cta-banner-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .foot-cta-banner {
    grid-template-columns: 1fr;
  }
  .foot-cta-banner-left,
  .foot-cta-banner-right {
    padding: 36px 24px;
  }
  .foot-cta-banner-stat-value {
    font-size: 36px;
  }
}

/* Cookie consent ribbon - bottom banner style */
.cookie-ribbon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(205, 201, 199, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  color: var(--text);
  padding: 20px 24px 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cookie-ribbon.active {
  display: flex;
}
.cookie-ribbon-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(17, 18, 20, 0.72);
  text-align: center;
}
.cookie-ribbon-text a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.cookie-ribbon-text a:hover {
  text-decoration: underline;
}
.cookie-ribbon-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.cookie-ribbon-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  text-align: center;
}
.cookie-ribbon-btn-primary {
  background: #111214;
  color: #fff;
}
.cookie-ribbon-btn-primary:hover {
  background: #2a2d32;
}
.cookie-ribbon-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(17, 18, 20, 0.2);
}
.cookie-ribbon-btn-secondary:hover {
  background: rgba(17, 18, 20, 0.06);
  border-color: rgba(17, 18, 20, 0.3);
}
.cookie-ribbon-btn-tertiary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(17, 18, 20, 0.15);
}
.cookie-ribbon-btn-tertiary:hover {
  color: var(--text);
  border-color: rgba(17, 18, 20, 0.25);
}
@media (min-width: 600px) {
  .cookie-ribbon {
    padding: 20px 32px 24px;
  }
  .cookie-ribbon-actions {
    flex-direction: row;
    justify-content: center;
  }
  .cookie-ribbon-btn {
    width: auto;
    min-width: 160px;
  }
}

/* Lead capture popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 18, 20, 0.6);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup-overlay.active {
  display: flex;
  opacity: 1;
}
.popup-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 80px rgba(17, 18, 20, 0.25);
  animation: popupSlideIn 0.3s ease;
}
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(17, 18, 20, 0.4);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.popup-close:hover {
  background: rgba(17, 18, 20, 0.05);
  color: rgba(17, 18, 20, 0.7);
}
.popup-modal h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}
.popup-subtitle {
  font-size: 15px;
  color: rgba(17, 18, 20, 0.6);
  margin: 0 0 28px;
  line-height: 1.5;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.popup-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border: 1px solid rgba(17, 18, 20, 0.15);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s ease;
}
.popup-input:focus {
  border-color: rgba(17, 18, 20, 0.4);
}
.popup-input::placeholder {
  color: rgba(17, 18, 20, 0.4);
}
.popup-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #111214;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.popup-btn:hover {
  background: #2a2b2e;
}
.popup-disclaimer {
  font-size: 12px;
  color: rgba(17, 18, 20, 0.5);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.5;
}
.popup-disclaimer a {
  color: rgba(17, 18, 20, 0.6);
  text-decoration: underline;
}
.popup-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}
.popup-stat {
  text-align: center;
}
.popup-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
.popup-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(17, 18, 20, 0.5);
  margin-top: 4px;
}
@media (max-width: 480px) {
  .popup-modal {
    padding: 32px 24px;
  }
  .popup-modal h2 {
    font-size: 20px;
  }
  .popup-stats {
    gap: 24px;
  }
}

/* --- Utility: remove the white panel background for specific sections/cards --- */
.no-bg {
  background: transparent !important;
  box-shadow: none !important;
}

/* 1) Sarah Chen card */
.msg.no-bg {
  background: transparent !important;
}

/* 2,3,5) The large “need-panel” boxes (Solution / Impact / CTA) */
.need-panel.no-bg {
  background: transparent !important;
  box-shadow: none !important;
}

/* 4) Difference table container */
.diff.no-bg {
  background: transparent !important;
}
.diff.no-bg .diff-head {
  background: transparent !important;
}

.confidence.no-bg {
  background: transparent !important;
  box-shadow: none !important;
}

/* --- FAQ (left intro + right accordion) --- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 28px;
  align-items: start;
}

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

.faq-left {
  max-width: 46ch;
  position: sticky;
  top: calc(var(--navH) + 24px);
}

@media (max-width: 980px) {
  .faq-left {
    position: static;
  }
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

details.faq-item {
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  border-top: 1px solid var(--line);
  transition: background 0.12s ease;
}

details.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

details.faq-item:hover {
  background: rgba(17, 18, 20, 0.02);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary:hover {
  background: transparent;
}

details.faq-item summary:focus-visible {
  outline: 2px solid rgba(17, 18, 20, 0.2);
  outline-offset: 3px;
  border-radius: 4px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  border: none;
  background: transparent;
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  display: none;
}

details.faq-item[open] .faq-icon::before {
  content: "−";
}

details.faq-item[open] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  /* typography */
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 80ch;

  /* smooth animation */
  padding: 0 0 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    height 260ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    padding 220ms ease;
  will-change: height;
}

details.faq-item[open] .faq-answer {
  padding: 0 0 20px;
  opacity: 1;
  transform: translateY(0);
}

/* while closing, fade + remove padding even though [open] is still true */
details.faq-item.closing .faq-answer {
  padding: 0 0 0;
  opacity: 0;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none !important;
  }
}

/* Print styles */
@media print {
  .nav,
  .mobile-menu,
  .nav-overlay,
  .cookie-ribbon,
  .hamburger,
  .btn {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .page {
    padding-top: 0;
  }
  .page-shell {
    background: #fff;
    box-shadow: none;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}

/* Modal Styles */
.modal-dialog-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  height: 70vh;
  border: none;
}

.modal-body {
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}
