/* ═══════════════════════════════════════════════════════════════
   BRAINPOWER — BRUTALIST WEBSITE
   CSS extracted from v0-brutalist-ai-saa-s-landing-page
   Accent: Electric Blue #0611FF
   ═══════════════════════════════════════════════════════════════ */

/* ── Input Mono (self-hosted) ── */
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Input Mono'; src: url('../fonts/InputMono-Black.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }

/* ── RESET + VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
hr { border: none; height: 1px; margin: 0; padding: 0; display: block; }


/* Windows Aero cursor */
body { cursor: url('../img/aero-normal.cur'), auto; }
a, button, [role='button'], input[type='submit'] { cursor: url('../img/aero-link.cur'), pointer; }

:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 96%;
  --card: 220 12% 14%;
  --card-foreground: 0 0% 96%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 70%;
  --accent: 237 97% 51%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 30%;
  --primary: 0 0% 96%;
  --primary-foreground: 220 12% 14%;
  --radius: 0rem;
  --font-mono: 'Input Mono', monospace;
  --font-heading: 'Geist', sans-serif;
  --electric-blue: #0611FF;
  --blue-light: #7B8CFF;
  --stone: #CECDCA;
  --true-black: #000000;
  --true-white: #FFFFFF;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-mono);
  background-color: #0a0a0a;
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 13px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; }
a { text-decoration: none; color: inherit; }
button { cursor: url('../img/aero-link.cur'), pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── SQUARE GRID BACKGROUND ── */
.dot-grid-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Crect x='7' y='7' width='2' height='2' fill='rgba(244,244,244,0.15)'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  overflow: clip;
}

/* ── KEYFRAMES ── */
@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); filter: none; }
  92% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  94% { transform: translate(2px, -1px); filter: hue-rotate(-90deg); }
  96% { transform: translate(-1px, -1px); filter: none; }
  98% { transform: translate(1px, 2px); filter: hue-rotate(45deg); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInBlur {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0px); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-blink { animation: blink 1s step-end infinite; }
.animate-fadeInUp { animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.animate-fadeIn { animation: fadeIn 0.5s ease both; }
.animate-fadeInBlur { animation: fadeInBlur 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-blur {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Section 002 split layout ── */
.section-002-split {
  position: relative;
  min-height: 500px;
}
.section-002-split .section-body {
  max-width: 55%;
}
.section-002-illustration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  display: flex;
  align-items: center;
}
.section-002-illustration video {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .section-002-split {
    min-height: auto;
  }
  .section-002-split .section-body {
    max-width: 100%;
  }
  .section-002-illustration {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 24px;
  }
}

/* ── UTILITY CLASSES ── */
.font-mono { font-family: var(--font-mono); }
.font-pixel { font-family: var(--font-mono); font-weight: 800; letter-spacing: -0.02em; }
.mobile-break { display: none; }
@media (max-width: 767px) { .mobile-break { display: block; } }
.text-bg { color: hsl(var(--background)); }
.bg-bg { background-color: hsl(var(--background)); }
.text-fg { color: hsl(var(--foreground)); }
.bg-fg { background-color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-blue { color: var(--blue-light); }
.bg-blue { background-color: var(--electric-blue); }
.tracking-ultra { letter-spacing: 0.15em; }
.tracking-wide2 { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 0 0;
  transition: padding 0.3s;
}
.navbar-wrap.scrolled {
  padding: 10px 16px 0;
}
@media (min-width: 1024px) { .navbar-wrap.scrolled { padding: 16px 24px 0; } }

.navbar {
  border: 1px solid transparent;
  background: transparent;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
  position: relative;
  overflow: visible;
}
.navbar::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.navbar-wrap.scrolled .navbar::after {
  opacity: 1;
}
.navbar-wrap.scrolled .navbar {
  border: 1px solid rgba(244,244,244,0.4);
  background: rgba(5,5,7,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
.navbar-blur { display: none; }
@media (min-width: 1024px) { .navbar { padding: 28px 32px; } }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  animation: fadeIn 0.4s 0.2s both;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.navbar-logo span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.navbar-logo__img {
  height: 100px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1);
  transition: height 0.3s;
}
.navbar-wrap.scrolled .navbar-logo__img {
  height: 90px;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 900px) { .navbar-links { display: flex; } }

.navbar-links a, .navbar-links button {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  font-family: var(--font-mono);
  background: none;
  border: none;
  cursor: url('../img/aero-link.cur'), pointer;
  padding: 0;
}
.navbar-links a:hover, .navbar-links button:hover { color: hsl(var(--foreground)); }

/* Industries Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 10px;
  margin-left: 2px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  border: 1px solid hsl(var(--foreground) / 0.2);
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  z-index: 50;
}
/* Invisible bridge so hover doesn't break crossing the gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  display: none;
}
.nav-dropdown:hover::after { display: block; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-mono);
}
.nav-dropdown-menu a:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--foreground) / 0.05);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.4s 0.5s both;
}

.btn-cta {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: hsl(var(--background));
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  box-shadow: 2px 2px 0px 0px #a8adff;
  text-decoration: none;
  font-family: var(--font-mono);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
}
.btn-cta:active, .btn-cta.clicked {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.btn-cta .icon-wrap {
  display: grid;
  place-items: center;
  background: var(--electric-blue);
  width: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
}
.btn-cta .icon-wrap svg {
  stroke: #FFFFFF;
  transform: rotate(-45deg) scale(1.08);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-cta:hover .icon-wrap svg { transform: rotate(0deg) scale(1.08); }
.btn-cta .label { padding: 8px 14px; display: flex; align-items: center; white-space: nowrap; }
.btn-cta--nav {
  background: var(--electric-blue);
  color: var(--true-white);
  border-top: 4px solid #4a5aff;
  border-left: 4px solid #4a5aff;
  border-right: 4px solid #0009cc;
  border-bottom: 4px solid #0009cc;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.btn-cta--nav:active, .btn-cta--nav.clicked {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #0009cc;
  border-left-color: #0009cc;
  border-right-color: #4a5aff;
  border-bottom-color: #4a5aff;
}
.btn-cta--nav .icon-wrap {
  background: #050505;
}
.btn-cta--nav .icon-wrap svg {
  stroke: var(--true-white);
}
.btn-cta--nav .label { display: none; }
@media (min-width: 900px) {
  .btn-cta--nav .label { display: flex; align-items: center; }
}

/* Hamburger */
.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: url('../img/aero-link.cur'), pointer;
  padding: 4px;
}
@media (min-width: 900px) { .navbar-hamburger { display: none; } }
.navbar-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: hsl(var(--foreground));
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsl(var(--background));
  flex-direction: column;
  padding: 32px 32px 32px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu > * {
  position: relative;
  z-index: 1;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.mobile-menu__logo {
  height: 72px;
  filter: brightness(0) invert(1);
}
.mobile-menu__header .mobile-menu__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu__close {
  font-size: 28px;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: url('../img/aero-link.cur'), pointer;
  transition: transform 0.2s ease;
}
.mobile-menu__close:active {
  transform: scale(0.85);
}
.mobile-menu__section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  padding-bottom: 2px;
}
.mobile-menu a[href*="for-"] {
  margin-left: 16px;
}
.mobile-menu a {
  font-size: 12.6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  padding: 12px 0;
  border-bottom: 1px solid hsl(var(--foreground) / 0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: hsl(var(--foreground)); }
.mobile-menu__cta {
  margin-top: auto;
  padding-top: 12px;
  padding-bottom: 16px;
}
.mobile-menu__cta .hero-cta {
  font-size: 14.4px;
  max-width: 312px;
  animation: none;
  background: var(--electric-blue);
  color: var(--true-white);
  padding: 0;
  border-top: 4px solid #4a5aff;
  border-left: 4px solid #4a5aff;
  border-right: 4px solid #0009cc;
  border-bottom: 4px solid #0009cc;
  box-shadow: 4px 4px 0px 0px #a8adff;
  outline: none;
  align-self: stretch;
  width: 100%;
  max-width: none;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
}
.mobile-menu__cta .hero-cta:hover {
  transform: scale(1.01);
}
.mobile-menu__cta .hero-cta:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #0009cc;
  border-left-color: #0009cc;
  border-right-color: #4a5aff;
  border-bottom-color: #4a5aff;
}
.mobile-menu__cta .hero-cta:active .icon-wrap svg {
  transform: rotate(0deg) scale(1.08);
}
.mobile-menu__cta .hero-cta .icon-wrap {
  background: #050505;
  width: 64px;
  min-width: 64px;
  min-height: 64px;
}
.mobile-menu__cta .hero-cta .icon-wrap svg {
  stroke: var(--true-white);
  width: 24px;
  height: 24px;
}
.mobile-menu__cta .hero-cta .label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 12px 20px;
  white-space: normal;
  line-height: 1.4;
}

/* Mobile Bottom CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--foreground) / 0.2);
}
@media (max-width: 899px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar .btn-cta { width: 100%; justify-content: center; font-size: 14.4px; }
.mobile-cta-bar .btn-cta .label { flex: 1; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   SECTION LABEL  (// SECTION: NAME ─── ● 001)
   ═══════════════════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-label span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
}
.section-label .line { flex: 1; border-top: 2px solid hsl(var(--border)); }
.section-label .line--blue { border-color: var(--blue-light); }
.blink-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--electric-blue);
  animation: blink 1s step-end infinite;
}
.solution-table--methodology .blink-dot { background: #4a5aff; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — BACKGROUNDS
   ═══════════════════════════════════════════════════════════════ */
.section {
  width: 100%;
  padding: 104px 24px;
}
@media (min-width: 1024px) { .section { padding: 104px 48px; } }

.section--white,
.section--stone,
.section--solution,
.section--about,
.section--methodology,
.section--industries,
.section--five-stages { padding-top: 156px; padding-bottom: 172px; }
.section--solution { padding-top: 133px; padding-bottom: 146px; }

/* Section dividers — zigzag dots straddling section boundaries.
   Top row contrasts with current section bg, bottom row contrasts with next section bg.
   dark→light: white top, dark bottom.  light→dark: dark top, white bottom. */
/* Chevron dividers — marquee (left to right) */
@keyframes chevron-scroll {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 2652px 0, 2652px 0, 0 0; }
}
.hero--fullbleed::before,
.section--solution::before,
.section--methodology::before,
.section--about::before,
.section--industries::before,
.section--comparison::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  bottom: -31px;
  z-index: 1;
  background: rgba(0,0,0,0.5);
  filter: blur(3px);
  pointer-events: none;
}
.hero--fullbleed::after,
.section--solution::after,
.section--methodology::after,
.section--about::after,
.section--industries::after,
.section--comparison::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 107px;
  bottom: -77px;
  z-index: 2;
  animation: chevron-scroll 84s linear infinite;
  filter: drop-shadow(0 7px 3px rgba(0,0,0,0.5));
  clip-path: inset(0 0 47px 0);
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* light → dark chevron: comparison */
.section--comparison::after {
  background:
    url('../img/divider-dark-v2.svg') center / 2652px 107px repeat-x,
    url('../img/divider-light-v2.svg') center / 2652px 107px repeat-x,
    linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
}
/* dark → light chevrons: hero, methodology, industries */
.hero--fullbleed::after,
.section--methodology::after,
.section--industries::after {
  background:
    url('../img/divider-dark-v2.svg') center / 2652px 107px repeat-x,
    url('../img/divider-light-v2.svg') center / 2652px 107px repeat-x,
    linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
}
/* light → dark chevrons: solution, about */
.section--solution::after,
.section--about::after {
  background:
    url('../img/divider-dark-v2.svg') center / 2652px 107px repeat-x,
    url('../img/divider-light-v2.svg') center / 2652px 107px repeat-x,
    linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
}
/* Mobile: smaller dividers, slower animation */
@media (max-width: 767px) {
  @keyframes chevron-scroll-mobile {
    from { background-position: 0 0, 0 0, 0 0; }
    to   { background-position: 2652px 0, 2652px 0, 0 0; }
  }
  .hero--fullbleed::before,
  .section--solution::before,
  .section--methodology::before,
  .section--about::before,
  .section--industries::before,
  .section--comparison::before {
    height: 5px;
    bottom: -25px;
    filter: blur(3px);
  }
  .hero--fullbleed::after,
  .section--solution::after,
  .section--methodology::after,
  .section--about::after,
  .section--industries::after,
  .section--comparison::after {
    height: 86px;
    bottom: -62px;
    animation: chevron-scroll-mobile 143s linear infinite;
    clip-path: inset(0 0 38px 0);
  }
  .section--comparison::after {
    background:
      url('../img/divider-dark-v2.svg') center / 2652px 86px repeat-x,
      url('../img/divider-light-v2.svg') center / 2652px 86px repeat-x,
      linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
  }
  .hero--fullbleed::after,
  .section--methodology::after,
  .section--industries::after {
    background:
      url('../img/divider-dark-v2.svg') center / 2652px 86px repeat-x,
      url('../img/divider-light-v2.svg') center / 2652px 86px repeat-x,
      linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
  }
  .section--solution::after,
  .section--about::after {
    background:
      url('../img/divider-dark-v2.svg') center / 2652px 86px repeat-x,
      url('../img/divider-light-v2.svg') center / 2652px 86px repeat-x,
      linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
  }
}
.hero--fullbleed,
.section--solution,
.section--methodology,
.section--about,
.section--industries,
.section--comparison {
  position: relative;
}
/* Reusable divider utility classes for non-homepage pages */
.divider-d2l,
.divider-l2d {
  position: relative;
}
.divider-d2l::before,
.divider-l2d::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  bottom: -31px;
  z-index: 1;
  background: rgba(0,0,0,0.5);
  filter: blur(3px);
  pointer-events: none;
}
.divider-d2l::after,
.divider-l2d::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 107px;
  bottom: -77px;
  z-index: 2;
  animation: chevron-scroll 84s linear infinite;
  filter: drop-shadow(0 7px 3px rgba(0,0,0,0.5));
  clip-path: inset(0 0 47px 0);
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* dark → light (after dark/stone sections going to white/light) */
.divider-d2l::after {
  background:
    url('../img/divider-dark-v2.svg') center / 2652px 107px repeat-x,
    url('../img/divider-light-v2.svg') center / 2652px 107px repeat-x,
    linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
}
/* light → dark (after white/light sections going to dark/stone) */
.divider-l2d::after {
  background:
    url('../img/divider-dark-v2.svg') center / 2652px 107px repeat-x,
    url('../img/divider-light-v2.svg') center / 2652px 107px repeat-x,
    linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
}
/* Mobile responsive for utility dividers */
@media (max-width: 767px) {
  .divider-d2l::before,
  .divider-l2d::before {
    height: 5px;
    bottom: -25px;
    filter: blur(3px);
  }
  .divider-d2l::after,
  .divider-l2d::after {
    height: 86px;
    bottom: -62px;
    animation: chevron-scroll-mobile 143s linear infinite;
    clip-path: inset(0 0 38px 0);
  }
  .divider-d2l::after {
    background:
      url('../img/divider-dark-v2.svg') center / 2652px 86px repeat-x,
      url('../img/divider-light-v2.svg') center / 2652px 86px repeat-x,
      linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
  }
  .divider-l2d::after {
    background:
      url('../img/divider-dark-v2.svg') center / 2652px 86px repeat-x,
      url('../img/divider-light-v2.svg') center / 2652px 86px repeat-x,
      linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
  }
}
/* Home V2 — full unclipped dividers scaled down 30%, no separate shadow */
@keyframes chevron-scroll-v2 {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 1856px 0, 1856px 0, 0 0; }
}
.home-v2 .hero--fullbleed::before,
.home-v2 .section--solution::before,
.home-v2 .section--methodology::before,
.home-v2 .section--about::before,
.home-v2 .section--industries::before {
  display: none;
}
.home-v2 .hero--fullbleed::after,
.home-v2 .section--solution::after,
.home-v2 .section--methodology::after,
.home-v2 .section--about::after,
.home-v2 .section--industries::after {
  height: 75px;
  bottom: -37px;
  clip-path: none;
  animation: chevron-scroll-v2 70s linear infinite;
}
.home-v2 .hero--fullbleed::after,
.home-v2 .section--methodology::after,
.home-v2 .section--industries::after {
  background:
    url('../img/divider-dark-v2.svg') center / 1856px 75px repeat-x,
    url('../img/divider-light-v2.svg') center / 1856px 75px repeat-x,
    linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
}
.home-v2 .section--solution::after,
.home-v2 .section--about::after {
  background:
    url('../img/divider-dark-v2.svg') center / 1856px 75px repeat-x,
    url('../img/divider-light-v2.svg') center / 1856px 75px repeat-x,
    linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
}
@media (max-width: 767px) {
  @keyframes chevron-scroll-v2-mobile {
    from { background-position: 0 0, 0 0, 0 0; }
    to   { background-position: 1856px 0, 1856px 0, 0 0; }
  }
  .home-v2 .hero--fullbleed::after,
  .home-v2 .section--solution::after,
  .home-v2 .section--methodology::after,
  .home-v2 .section--about::after,
  .home-v2 .section--industries::after {
    height: 60px;
    bottom: -30px;
    animation: chevron-scroll-v2-mobile 108s linear infinite;
  }
  .home-v2 .hero--fullbleed::after,
  .home-v2 .section--methodology::after,
  .home-v2 .section--industries::after {
    background:
      url('../img/divider-dark-v2.svg') center / 1856px 60px repeat-x,
      url('../img/divider-light-v2.svg') center / 1856px 60px repeat-x,
      linear-gradient(to bottom, #0a0a0a 50%, #e7e7e7 50%);
  }
  .home-v2 .section--solution::after,
  .home-v2 .section--about::after {
    background:
      url('../img/divider-dark-v2.svg') center / 1856px 60px repeat-x,
      url('../img/divider-light-v2.svg') center / 1856px 60px repeat-x,
      linear-gradient(to bottom, #e7e7e7 50%, #0a0a0a 50%);
  }
}
/* Hero divider for non-fullbleed heroes (dark bg → next section) */
.hero.divider-d2l, .hero.divider-l2d { position: relative; overflow: visible; }
/* CTA section needs extra top padding on pages with dividers */

.section--methodology,
.section--industries {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect x='11' y='11' width='2' height='2' fill='rgba(244,244,244,0.15)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  background-size: 16px 16px, 100% 100%;
}

.section--dark {
  background: var(--true-black);
  color: var(--true-white);
}
.section--five-stages {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect x='11' y='11' width='2' height='2' fill='rgba(244,244,244,0.15)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  background-size: 16px 16px, 100% 100%;
}
.section--dark .text-muted { color: rgba(255,255,255,0.6); }
.section--dark .section-label span { color: rgba(255,255,255,0.4); }
.section--dark .section-label .line { border-color: rgba(255,255,255,0.15); }
.section--dark .blink-dot { background: var(--electric-blue); }

.section--stone {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect x='11' y='11' width='2' height='2' fill='rgba(244,244,244,0.08)'/%3E%3C/svg%3E"),
    #0a0a0a;
  background-size: 16px 16px, 100% 100%;
  color: var(--true-white);
}
.section--stone .text-muted { color: rgba(255,255,255,0.5); }
.section--stone .section-label span { color: rgba(255,255,255,0.4); }
.section--stone .section-label .line { border-color: rgba(255,255,255,0.15); }

.section--stone-light {
  background: #1E2128;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Crect x='7' y='7' width='2' height='2' fill='rgba(244,244,244,0.15)'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  color: #F4F4F4;
}
.section--stone-light .text-muted { color: rgba(244,244,244,0.5); }
.section--stone-light .section-label span { color: rgba(244,244,244,0.4); }
.section--stone-light .section-label .line { border-color: rgba(244,244,244,0.15); }
.section--stone-light .section-body { color: rgba(244,244,244,0.6); }
.section--stone-light .section-heading { color: #F4F4F4; }

.section--white {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect x='11' y='11' width='2' height='2' fill='rgba(30,33,40,0.2)'/%3E%3C/svg%3E"),
    #e7e7e7;
  background-size: 16px 16px, 100% 100%;
  color: #000000;
}
.section--solution,
.section--about {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect x='11' y='11' width='2' height='2' fill='rgba(30,33,40,0.2)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #e7e7e7 0%, #d8d8d8 100%);
  background-size: 16px 16px, 100% 100%;
}

/* ── Solution Table ── */
.solution-table-wrap {
  position: relative;
  width: 110%;
  margin-left: -5%;
}
.solution-table-wrap::before {
  content: '';
  position: absolute;
  bottom: 0.5px;
  right: 0.5px;
  width: 64px;
  height: 64px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cline x1='64' y1='0' x2='0' y2='64' stroke='%231E2128' stroke-width='2' shape-rendering='geometricPrecision'/%3E%3C/svg%3E") no-repeat;
  pointer-events: none;
  z-index: 2;
}
.solution-table-wrap--methodology::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cline x1='64' y1='0' x2='0' y2='64' stroke='%23F4F4F4' stroke-width='2' shape-rendering='geometricPrecision'/%3E%3C/svg%3E") no-repeat;
}
.solution-table-wrap--cta::before {
  display: none;
}
.solution-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #1E2128;
  position: relative;
  clip-path: polygon(0 0, calc(100% + 1px) 0, calc(100% + 1px) calc(100% - 64px), calc(100% - 64px) calc(100% + 1px), 0 calc(100% + 1px));
}
.solution-table__row:first-child .solution-table__cell {
  padding: 10px 24px;
}
.solution-table__row + .solution-table__row .solution-table__cell {
  border-top: 2px solid #1E2128;
}
.solution-table__cell {
  padding: 24px;
  background: #efefef;
}
.solution-table--methodology .solution-table__cell {
  background: #0a0a0a;
}
.solution-table__cell .section-label {
  margin-bottom: 0;
}
.solution-table--cta .solution-table__row:nth-child(2) .solution-table__cell {
  padding: 30px 24px 18px;
}
.solution-table__cell .section-heading {
  margin-bottom: 0;
}
.solution-table__cell .section-body {
  margin-top: 0;
  font-size: 14.4px;
}
@media (min-width: 1024px) { .solution-table__cell .section-body { font-size: 16.8px; } }
.solution-table__cell .section-body p:last-child {
  margin-bottom: 0;
}
/* ── Solution 3D Split Layout ── */
.solution-content-split {
  display: flex;
  align-items: center;
  gap: 32px;
}
.solution-content-split .section-body {
  flex: 1;
  min-width: 0;
}
.solution-3d {
  flex: 0 0 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-3d canvas {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .solution-3d {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .solution-3d {
    flex: 0 0 260px;
    height: 260px;
  }
}

.solution-table--methodology {
  border-color: #F4F4F4;
}
.solution-table--methodology .solution-table__row + .solution-table__row .solution-table__cell {
  border-top-color: #F4F4F4;
}
.solution-table--methodology .solution-table__row:first-child .section-label span {
  color: #F4F4F4;
}
.solution-table--methodology .solution-table__row:first-child .section-label .line {
  border-color: #E7E7E7;
}
.solution-table__row--cards .solution-table__cell--card + .solution-table__cell--card {
  border-left: 2px solid #F4F4F4;
}
.solution-table__cell--card {
  vertical-align: top;
  width: 25%;
  padding: 32px;
  background: linear-gradient(135deg, #F8F8F8 0%, #E8E8E8 50%, #D8D8D8 100%);
}
.solution-table__row--card-headers .solution-table__cell--card {
  padding-bottom: 24px;
}
.solution-table__row--card-bodies .solution-table__cell--card {
  padding-top: 24px;
}
.solution-table--methodology .solution-table__row--card-bodies .solution-table__cell {
  border-top: 2px solid var(--blue-light);
}
.solution-table__row--card-bodies + .solution-table__row .solution-table__cell {
  border-top: 2px solid #F4F4F4;
}
.solution-table--cta {
  border-color: #1E2128;
  clip-path: none;
}
.solution-table--cta .solution-table__cell {
  background: #e5e5e5;
}
.solution-table--cta .solution-table__row + .solution-table__row .solution-table__cell {
  border-top-color: #1E2128;
}
.blink-cursor {
  animation: blink 1s step-end infinite;
  font-weight: 700;
  margin-left: 2px;
}

/* ── Typewriter Effect ── */
.typewriter {
  font-size: 13.8px;
}
@media (min-width: 1024px) { .typewriter { font-size: 16.1px; } }
.typewriter .blink-cursor {
  font-size: 16.1px;
}
@media (min-width: 1024px) { .typewriter .blink-cursor { font-size: 18.5px; } }
.typewriter .typewriter-char {
  opacity: 0;
}
.typewriter.typewriter--active .typewriter-char {
  opacity: 0;
}
.typewriter.typewriter--active .typewriter-char.typed {
  opacity: 1;
}
.typewriter .blink-cursor {
  opacity: 0;
}
.typewriter.typewriter--active .blink-cursor {
  opacity: 1;
}

.section--white .text-muted { color: rgba(0,0,0,0.85); }
.section--white .section-label span { color: rgba(0,0,0,0.8); }
.section--white .section-label .line { border-color: rgba(0,0,0,0.2); }
.section--white .section-label .line--blue { border-color: var(--electric-blue); }
.section--white .section-label .label--blue { color: var(--electric-blue); }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  color: #F4F4F4;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.16) 0%, transparent 70%);
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 120px 48px 100px; } }
.hero--fullbleed { margin-top: -60px; padding-top: 140px; overflow: visible; }
@media (min-width: 1024px) { .hero--fullbleed { margin-top: -72px; padding-top: 192px; } }
.hero__image {
  max-width: none;
  height: auto;
  margin-top: -300px;
  align-self: flex-start;
  will-change: transform;
  width: calc(100% + 48px);
  margin-left: -24px;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,1));
}
@media (min-width: 1024px) {
  .hero__image {
    width: calc(100% + 96px);
    margin-left: -48px;
  }
}
.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: -140px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--dark {
  background: var(--true-black);
  color: var(--true-white);
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: clamp(3.24rem, 9vw, 6.3rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  padding-bottom: 0.1em;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 40%, #eeeeee 60%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  user-select: none;
  max-width: 1100px;
  animation: fadeInBlur 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero:not(.hero--fullbleed) h1 { max-width: 1100px; margin-bottom: 36px; }
.hero:has(.hero__image) h1 { margin-top: -60px; }
/* Base hero = light bg; hero--dark = dark bg */

.hero-sub {
  font-size: 13.1px;
  color: rgba(244,244,244,0.6);
  max-width: 560px;
  margin-bottom: 16px;
  margin-top: -16px;
  line-height: 1.7;
  animation: fadeInUp 0.5s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero--dark .hero-sub { color: rgba(255,255,255,0.6); }
@media (min-width: 1024px) { .hero-sub { font-size: 15.3px; } }

.hero-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  align-self: center;

  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  box-shadow: 4px 4px 0px 0px #a8adff;
  text-decoration: none;
  animation: fadeInUp 0.5s 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #999999;
  border-bottom: 3px solid #999999;
  outline: 2px solid var(--blue-light);
}
.hero--dark .hero-cta {
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #999999;
  border-bottom: 3px solid #999999;
}
.hero .hero-cta {
  font-size: 13px;
  outline: none;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
}
.hero .hero-cta .icon-wrap {
  width: 56px;
  min-width: 56px;
  min-height: 56px;
}
.hero .hero-cta .icon-wrap svg {
  width: 22px;
  height: 22px;
}
.hero .hero-cta .label {
  padding: 13.8px 28.4px;
}
.hero-cta:active, .hero-cta.clicked {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.hero-cta .icon-wrap {
  display: grid;
  place-items: center;
  background: var(--electric-blue);
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
}
.hero-cta .icon-wrap svg {
  stroke: var(--true-white);
  transform: rotate(-45deg) scale(1.08);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-cta:hover .icon-wrap svg { transform: rotate(0deg) scale(1.08); }
.hero-cta .label { padding: 12px 24px; display: flex; align-items: center; white-space: nowrap; }

.hero-micro {
  font-size: 10px;
  color: rgba(244,244,244,0.35);
  margin-top: 16px;
  letter-spacing: 0.05em;
  animation: fadeIn 0.5s 0.7s both;
}
.hero--dark .hero-micro { color: rgba(255,255,255,0.35); }

/* ── Hero Scenario (Homepage V4 — 3 scenario lines + punchline) ── */
.hero-scenario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.hero-scenario__line {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(244,244,244,0.55);
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-scenario__line:nth-child(1) { animation-delay: 0.2s; }
.hero-scenario__line:nth-child(2) { animation-delay: 0.5s; }
.hero-scenario__line:nth-child(3) { animation-delay: 0.8s; color: rgba(244,244,244,0.75); font-weight: 600; }
@media (min-width: 1024px) { .hero-scenario__line { font-size: 17px; } }
.hero-scenario__punchline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  padding-bottom: 0.1em;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 40%, #eeeeee 60%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 800px;
  text-align: center;
  user-select: none;
  opacity: 0;
  animation: fadeInBlur 0.7s 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════════ */
.section-heading {
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .section-heading { font-size: 4.12rem; } }

.section-body {
  font-size: 12px;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  max-width: 640px;
}
@media (min-width: 1024px) { .section-body { font-size: 14px; } }
.section--dark .section-body { color: rgba(255,255,255,0.6); }
.section--white .section-body { color: rgba(0,0,0,0.9); }
.section--stone .section-body { color: rgba(255,255,255,0.6); }

.section-body p { margin-bottom: 16px; }
.section-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   METHODOLOGY CARDS (3-step)
   ═══════════════════════════════════════════════════════════════ */
.methodology-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  width: 110%;
  margin-left: -5%;
  padding-right: 8px;
}

/* Card styling (same beveled look) */
.methodology-card {
  flex: 1;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  border-radius: var(--radius);
  outline: none;
  box-shadow: 4px 4px 0px 0px #a8adff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.8rem;
  position: relative;
}
.methodology-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.methodology-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 54px;
}
.methodology-card__number {
  font-size: 0.875rem;
  color: var(--electric-blue);
}
.methodology-card__title {
  font-family: var(--font-heading);
  font-size: 2.14rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--true-black);
}
.methodology-card__divider {
  width: calc(100% + 3.6rem);
  margin-left: -1.8rem;
  height: 0;
  border-top: 1px solid #4a5aff;
}
.methodology-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.methodology-card__list li {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.9);
  padding-left: 1.5rem;
  position: relative;
}
.methodology-card__list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
}
.methodology-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--electric-blue);
  margin: 0.5rem 0 0;
}
@media (min-width: 1024px) { .methodology-card__price { font-size: 1.75rem; } }
.methodology-card__tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--electric-blue);
  color: var(--true-white);
  padding: 3px 8px;
  border-radius: 2px;
  align-self: flex-start;
}
.methodology-card__body {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.9);
}

.methodology-row--vertical { flex-direction: column; }
/* Split methodology card — two columns below divider */
.methodology-card--split {
  padding: 0;
  gap: 0;
}
.methodology-card--split > .methodology-card__divider {
  margin-left: 0;
  width: 100%;
}
.methodology-card__columns {
  display: flex;
  flex-direction: column;
}
.methodology-card__col-left {
  padding: 1.8rem;
}
.methodology-card__col-right {
  padding: 1.8rem;
  border-top: 1px solid #4a5aff;
}
@media (min-width: 768px) {
  .methodology-card__columns {
    flex-direction: row;
  }
  .methodology-card__col-left {
    flex: 1;
    padding: 1.8rem;
  }
  .methodology-card__col-right {
    flex: 1;
    padding: 1.8rem;
    border-top: none;
    border-left: 1px solid #4a5aff;
  }
}
/* Blue methodology cards on white backgrounds */
.section--white .methodology-card {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  color: #ffffff;
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.section--white .methodology-card__number { color: rgba(255,255,255,0.5); }
.section--white .methodology-card__title { color: #ffffff; }
.section--white .methodology-card__divider { border-top-color: rgba(255,255,255,0.2); }
.section--white .methodology-card__list li { color: rgba(255,255,255,0.8); }
.section--white .methodology-card__list li::before { color: rgba(255,255,255,0.4); }
.section--white .methodology-card__body { color: rgba(255,255,255,0.8); }
/* Mobile: stack cards, no animation */
@media (max-width: 767px) {
  .methodology-row { flex-direction: column; overflow: visible; width: 100%; margin-left: 0; padding-right: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   DIFFERENCE CARD (single card with 3 columns)
   ═══════════════════════════════════════════════════════════════ */
.difference-card {
  background: linear-gradient(135deg, #F8F8F8 0%, #E8E8E8 50%, #D8D8D8 100%);
  border: 1px solid var(--electric-blue);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px 0px #a8adff;
  padding: 1.8rem;
  margin-top: 1rem;
}
.difference-card__columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .difference-card__columns { flex-direction: row; gap: 2rem; }
  .difference-card__col { flex: 1; }
}
.difference-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.difference-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.difference-card__list li {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.9);
  padding-left: 1em;
  position: relative;
}
.difference-card__list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
}
.difference-card .methodology-card__divider {
  width: 100%;
  margin-left: 0;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY CARDS (2×2 grid, methodology style)
   ═══════════════════════════════════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 110%;
  margin-left: -5%;
}
@media (min-width: 768px) { .industry-grid { grid-template-columns: 1fr 1fr; } }

.industry-card {
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  border-radius: var(--radius);
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.8rem;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.industry-card:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.industry-card__header { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.industry-card__top { display: flex; flex-direction: column; gap: 0.4rem; }
.industry-card__number { font-size: 0.875rem; color: var(--electric-blue); }
.industry-card__title { font-size: 1.78rem; line-height: 1; font-weight: 400; letter-spacing: -0.04em; color: var(--true-black); font-family: var(--font-mono); }
.industry-card__divider { width: calc(100% + 3.6rem); margin-left: -1.8rem; height: 0; border-top: 1px solid #4a5aff; }
.industry-card__body { font-size: 0.875rem; color: rgba(0,0,0,0.9); }

/* ═══════════════════════════════════════════════════════════════
   SYSTEM ACCORDION (beveled card style)
   ═══════════════════════════════════════════════════════════════ */
.sys-accordion-cards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 110%;
  margin-left: -5%;
}
/* Twin accordion (two separate side-by-side accordions) */
.sys-accordion-twin {
  display: flex;
  gap: 12px;
  width: 110%;
  margin-left: -5%;
}
.sys-accordion-twin > .sys-accordion-cards {
  flex: 1;
  width: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .sys-accordion-twin {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
  .sys-accordion-twin > .sys-accordion-cards {
    display: contents;
  }
}

.sys-acc-card {
  display: block;
  color: #ffffff;
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px 0px #a8adff;
  overflow: hidden;
}
.sys-acc-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: url('../img/aero-link.cur'), pointer;
}
.sys-acc-card__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sys-acc-card__number {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
}
.sys-acc-card__title {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-family: var(--font-mono);
}
@media (min-width: 1024px) {
  .sys-acc-card__title { font-size: 1.6rem; }
}
.sys-acc-card__icon {
  color: #8B8BFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.sys-acc-card.open .sys-acc-card__icon {
  transform: rotate(45deg);
  color: #ffffff;
}
.sys-acc-card__divider {
  width: 100%;
  height: 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sys-acc-card.open .sys-acc-card__divider {
  opacity: 1;
}
.sys-acc-card__body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sys-acc-card.open .sys-acc-card__body-wrap {
  transition: max-height 0.4s ease;
}
.sys-acc-card__body {
  padding: 20px 28px 24px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.sys-acc-card__body + .sys-acc-card__body {
  padding-top: 0;
}
/* Align bullet lists with body text inside accordion cards */
.sys-acc-card__body-wrap .methodology-card__list {
  padding: 0 28px 24px;
}
.sys-acc-card__body-wrap .sys-acc-card__body + .methodology-card__list {
  padding-top: 0;
}
.sys-acc-card__body-wrap .methodology-card__list + .sys-acc-card__body {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .sys-acc-card__body { font-size: 0.95rem; }
  .methodology-card__list li { font-size: 0.95rem; }
  .methodology-card__body { font-size: 0.95rem; }
}

/* Grey/silver accordion variant for dark/stone backgrounds */
.section--stone .sys-acc-card,
.section--dark .sys-acc-card,
.section--industries .sys-acc-card {
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  box-shadow: 4px 4px 0px 0px #a8adff;
  color: var(--true-black);
}
.section--stone .sys-acc-card__number,
.section--dark .sys-acc-card__number,
.section--industries .sys-acc-card__number {
  color: var(--electric-blue);
}
.section--stone .sys-acc-card__title,
.section--dark .sys-acc-card__title,
.section--industries .sys-acc-card__title {
  color: var(--true-black);
}
.section--stone .sys-acc-card__icon,
.section--dark .sys-acc-card__icon,
.section--industries .sys-acc-card__icon {
  color: #777777;
}
.section--stone .sys-acc-card.open .sys-acc-card__icon,
.section--dark .sys-acc-card.open .sys-acc-card__icon,
.section--industries .sys-acc-card.open .sys-acc-card__icon {
  color: var(--true-black);
}
.section--stone .sys-acc-card__divider,
.section--dark .sys-acc-card__divider {
  border-top-color: #4a5aff;
}
.section--industries .sys-acc-card__divider {
  border-top-color: #4a5aff;
}
.section--stone .sys-acc-card__body,
.section--dark .sys-acc-card__body,
.section--industries .sys-acc-card__body {
  color: rgba(0,0,0,0.9);
}
/* Fix bullet list colors inside grey accordion on dark bg */
.section--stone .sys-acc-card .methodology-card__list li,
.section--dark .sys-acc-card .methodology-card__list li,
.section--industries .sys-acc-card .methodology-card__list li {
  color: rgba(0,0,0,0.7) !important;
}
.section--stone .sys-acc-card .methodology-card__list li strong,
.section--dark .sys-acc-card .methodology-card__list li strong,
.section--industries .sys-acc-card .methodology-card__list li strong {
  color: var(--true-black) !important;
}

/* Grey/silver ben-spot variant for dark/stone backgrounds — matches homepage silver planes */
.section--stone .ben-spot__btn,
.section--dark .ben-spot__btn {
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.section--stone .ben-spot__btn:active,
.section--dark .ben-spot__btn:active {
  box-shadow: 0px 0px 0px 0px #a8adff;
}
.section--stone .ben-spot__btn.active,
.section--dark .ben-spot__btn.active {
  box-shadow: 0px 0px 0px 0px #a8adff;
}
.section--stone .ben-spot__panel,
.section--dark .ben-spot__panel {
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.section--stone .ben-spot__panel-divider,
.section--dark .ben-spot__panel-divider {
  border-top-color: rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════════════════════════
   BENEFITS SPOTLIGHT (beveled card tabs)
   ═══════════════════════════════════════════════════════════════ */
.ben-spot {
  margin-top: 1.5rem;
  width: 110%;
  margin-left: -5%;
}
.ben-spot__nav {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.ben-spot__btn {
  flex: 1;
  padding: 16px 16px;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px 0px #a8adff;
  cursor: url('../img/aero-link.cur'), pointer;
  text-align: left;
  transition: transform 0.1s, box-shadow 0.1s;
}
.ben-spot__btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.ben-spot__btn.active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.ben-spot__btn-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 6px;
}
.ben-spot__btn.active .ben-spot__btn-number { color: var(--electric-blue); }
.ben-spot__btn-label {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(0,0,0,0.65);
  transition: color 0.2s ease;
}
@media (min-width: 1024px) { .ben-spot__btn-label { font-size: 15px; } }
.ben-spot__btn.active .ben-spot__btn-label { color: var(--true-black); }
.ben-spot__btn:hover .ben-spot__btn-label { color: rgba(0,0,0,0.7); }
.ben-spot__panel {
  display: none;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px 0px #a8adff;
  padding: 36px 32px;
}
.ben-spot__panel.active { display: block; }
.ben-spot__panel-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--electric-blue);
  margin-bottom: 8px;
}
.ben-spot__panel-title {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--true-black);
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 1024px) { .ben-spot__panel-title { font-size: 1.8rem; } }
.ben-spot__panel-divider {
  width: calc(100% + 64px);
  margin-left: -32px;
  height: 0;
  border-top: 1px solid #4a5aff;
  margin-bottom: 16px;
}
.ben-spot__panel-body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.85);
  max-width: 700px;
}
@media (min-width: 1024px) { .ben-spot__panel-body { font-size: 0.95rem; } }
@media (max-width: 768px) {
  .ben-spot__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ben-spot__btn {
    padding: 10px 12px;
  }
  .ben-spot__btn-number {
    font-size: 9px;
    margin-bottom: 3px;
  }
  .ben-spot__btn-label {
    font-size: 11.5px;
  }
}

/* Blue ben-spot variant — matches sys-accordion-cards blue style */
.ben-spot--blue .ben-spot__btn {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.ben-spot--blue .ben-spot__btn-number {
  color: rgba(255,255,255,0.5);
}
.ben-spot--blue .ben-spot__btn-label {
  color: rgba(255,255,255,0.8);
}
.ben-spot--blue .ben-spot__btn:active {
  border-top-color: #040b99;
  border-left-color: #040b99;
  border-right-color: #a8adff;
  border-bottom-color: #a8adff;
  box-shadow: 0px 0px 0px 0px #a8adff;
}
.ben-spot--blue .ben-spot__btn.active {
  border-top-color: #040b99;
  border-left-color: #040b99;
  border-right-color: #a8adff;
  border-bottom-color: #a8adff;
  box-shadow: 0px 0px 0px 0px #a8adff;
}
.ben-spot--blue .ben-spot__btn.active .ben-spot__btn-number { color: rgba(255,255,255,0.7); }
.ben-spot--blue .ben-spot__btn.active .ben-spot__btn-label { color: #ffffff; }
.ben-spot--blue .ben-spot__btn:hover .ben-spot__btn-label { color: rgba(255,255,255,0.95); }
.ben-spot--blue .ben-spot__panel {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.ben-spot--blue .ben-spot__panel-number { color: rgba(255,255,255,0.7); }
.ben-spot--blue .ben-spot__panel-title { color: #ffffff; }
.ben-spot--blue .ben-spot__panel-divider { border-top-color: rgba(255,255,255,0.3); }
.ben-spot--blue .ben-spot__panel-body { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════════
   COLLAPSED INDUSTRY CARDS (expandable on hover)
   ═══════════════════════════════════════════════════════════════ */
.ind-collapsed-cards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 110%;
  margin-left: -5%;
}
.ind-collapsed-card {
  display: block;
  text-decoration: none;
  color: var(--true-black);
  cursor: url('../img/aero-normal.cur'), auto;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px 0px #a8adff;
  overflow: hidden;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s ease;
}
.section--white .ind-collapsed-card {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  color: #ffffff;
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.section--white .ind-collapsed-card__number { color: rgba(255,255,255,0.5); }
.section--white .ind-collapsed-card__title { color: #ffffff; }
.section--white .ind-collapsed-card__divider { border-top-color: rgba(255,255,255,0.2); }
.section--white .ind-collapsed-card__text { color: rgba(255,255,255,0.8); }
.section--white .ind-collapsed-card__icon { color: rgba(255,255,255,0.3); }
.section--white .ind-collapsed-card__hint { color: rgba(255,255,255,0.5); }
.section--white .ind-collapsed-card__arrow { stroke: #ffffff; color: #ffffff; }
.section--white .ind-collapsed-card__toggle-icon { color: rgba(255,255,255,0.3); }
.section--white .ind-collapsed-card.open .ind-collapsed-card__toggle-icon { color: #ffffff; }
.ind-collapsed-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}
.ind-collapsed-card__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ind-collapsed-card__number {
  font-size: 0.875rem;
  color: var(--electric-blue);
  font-family: var(--font-mono);
}
.ind-collapsed-card__title {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--true-black);
  font-family: var(--font-mono);
}
@media (min-width: 1024px) {
  .ind-collapsed-card__title { font-size: 1.6rem; }
}
/* Arrow wrap — becomes a hero-cta-style button on desktop hover */
.ind-collapsed-card__arrow-wrap {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
}
.ind-collapsed-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
}
.ind-collapsed-card__hint {
  display: none;
}
.ind-collapsed-card__arrow {
  color: rgba(0, 0, 0, 0.25);
  stroke: currentColor;
  transform: rotate(-45deg);
  transition: color 0.3s ease, transform 0.3s ease, stroke 0.3s ease;
}
/* Desktop: arrow-wrap is always-visible "Learn more" button */
@media (min-width: 769px) {
  .ind-collapsed-card__arrow-wrap {
    background: var(--true-black);
    color: var(--true-white);
    border-top: 4px solid #444444;
    border-left: 4px solid #444444;
    border-right: 4px solid #000000;
    border-bottom: 4px solid #000000;
    box-shadow: 4px 4px 0px 0px #a8adff;
    opacity: 1;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  }
  .ind-collapsed-card:hover .ind-collapsed-card__arrow-wrap {
    opacity: 1;
    transform: scale(1.02);
  }
  .ind-collapsed-card:hover .ind-collapsed-card__arrow {
    transform: rotate(0deg);
  }
  .ind-collapsed-card__arrow-wrap:active,
  .ind-collapsed-card:hover .ind-collapsed-card__arrow-wrap:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px #a8adff;
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #444444;
    border-bottom-color: #444444;
  }
  .ind-collapsed-card__icon-wrap {
    background: var(--electric-blue);
    width: 48px;
    min-width: 48px;
    min-height: 48px;
  }
  .ind-collapsed-card__arrow {
    color: var(--true-white);
    stroke: var(--true-white);
    transform: rotate(-45deg);
  }
  .ind-collapsed-card__arrow-wrap:hover .ind-collapsed-card__arrow {
    transform: rotate(0deg);
  }
  .section--white .ind-collapsed-card__arrow-wrap {
    background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
    color: hsl(var(--background));
    border-top: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    border-right: 4px solid #999999;
    border-bottom: 4px solid #999999;
    box-shadow: 2px 2px 0px 0px #a8adff;
  }
  .section--white .ind-collapsed-card__arrow-wrap:active,
  .section--white .ind-collapsed-card:hover .ind-collapsed-card__arrow-wrap:active {
    border-top-color: #999999;
    border-left-color: #999999;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
  }
  .section--white .ind-collapsed-card__hint {
    color: hsl(var(--background));
  }
  .ind-collapsed-card__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 44px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--true-white);
  }
}
.ind-collapsed-card__divider {
  width: 100%;
  height: 0;
  border-top: 1px solid #4a5aff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ind-collapsed-card:hover .ind-collapsed-card__divider {
  opacity: 1;
}
.ind-collapsed-card__body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ind-collapsed-card:hover .ind-collapsed-card__body-wrap {
  /* max-height set by JS for accurate animation timing */
}
.ind-collapsed-card__body {
  padding: 20px 28px 24px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s 0.1s ease, transform 0.35s 0.1s ease;
}
.ind-collapsed-card:hover .ind-collapsed-card__body {
  opacity: 1;
  transform: translateY(0);
}
.ind-collapsed-card__body-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.ind-collapsed-card__text { flex: 1; }
.ind-collapsed-card__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-blue);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
  display: none;
}
/* Legacy — kept for mobile where cta-btn is still shown */
.ind-collapsed-card__cta-btn { display: none; }
/* Toggle icon — hidden on desktop, shown on mobile */
.ind-collapsed-card__toggle-icon { display: none; }

/* ═══════════════════════════════════════════════════════════════
   SHADCN CARD (from v0 sketchpad)
   ═══════════════════════════════════════════════════════════════ */
.card-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  width: 110%;
  margin-left: -5%;
}
@media (max-width: 767px) { .card-row { flex-direction: column; } }
.card-row--vertical { flex-direction: column; }
.card-row--4 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-row--4 { grid-template-columns: 1fr 1fr; } }

.card {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #1a2aff 50%, #0a1acc 100%);
  color: #ffffff;
  border-top: 4px solid #a8adff;
  border-left: 4px solid #a8adff;
  border-right: 4px solid #040b99;
  border-bottom: 4px solid #040b99;
  border-radius: var(--radius);
  outline: none;
  box-shadow: 4px 4px 0px 0px #a8adff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.8rem;
  flex: 1;
}
.card--light {
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  border-right: 4px solid #999;
  border-bottom: 4px solid #999;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.card--light .card-title { color: var(--true-black); }
.card--light .card-description { color: #1a1a1a; }
.card--light .card-divider { background: #4a5aff; }
.card-header { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.card-header__top { display: flex; flex-direction: column; gap: 0.4rem; }
.card-divider { width: calc(100% + 3.6rem); margin-left: -1.8rem; height: 1px; border: none; margin-top: 0; margin-bottom: 0; padding: 0; background: rgba(255,255,255,0.3); box-sizing: border-box; display: block; }
.card-title { font-weight: 400; line-height: 1; letter-spacing: -0.04em; color: #ffffff; font-family: var(--font-mono); }
.card-description { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.card-content { }
.card-footer { display: flex; align-items: center; }

.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.ml-auto { margin-left: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius); cursor: url('../img/aero-link.cur'), pointer; transition: all 0.15s;
  white-space: nowrap; border: 1px solid transparent;
  height: 2.25rem; padding: 0 1rem;
}
.btn-ghost { background: transparent; color: var(--true-black); }
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-sm { height: 2rem; padding: 0 0.75rem; font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════════
   PROOF POINTS / STATS GRID
   ═══════════════════════════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .proof-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.proof-point {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .proof-point { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
  .proof-point:nth-child(3) { border-right: none; }
  .proof-point:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.2); }
  .proof-point:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.2); }
  .proof-point:nth-child(5) { border-right: none; }
}

.proof-point__stat {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 1024px) { .proof-point__stat { font-size: 2.25rem; } }
.proof-point__description {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* Proof points on white background */
.section--white .proof-grid { border-color: rgba(0,0,0,0.2); }
.section--white .proof-point { border-color: rgba(0,0,0,0.2); }
.section--white .proof-point__description { color: rgba(0,0,0,0.9); }

/* ═══════════════════════════════════════════════════════════════
   DIFFERENTIATOR CARDS
   ═══════════════════════════════════════════════════════════════ */
.differentiator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--electric-blue);
}
@media (min-width: 768px) { .differentiator-grid { grid-template-columns: repeat(3, 1fr); } }

.differentiator-card {
  padding: 32px 24px;
  border-bottom: 1px solid var(--electric-blue);
}
@media (min-width: 768px) {
  .differentiator-card { border-bottom: none; border-right: 1px solid var(--electric-blue); }
  .differentiator-card:last-child { border-right: none; }
}
.differentiator-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--electric-blue);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.differentiator-card__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--true-black);
  font-family: var(--font-mono);
}
.differentiator-card__body {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0,0,0,0.9);
}
@media (min-width: 1024px) { .differentiator-card__body { font-size: 13px; } }

/* ═══════════════════════════════════════════════════════════════
   SEGMENT ROUTING CARDS
   ═══════════════════════════════════════════════════════════════ */
.segment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid hsl(var(--foreground));
}
@media (min-width: 768px) { .segment-grid { grid-template-columns: 1fr 1fr; } }

.segment-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-bottom: 1px solid hsl(var(--foreground));
  background: var(--stone);
  transition: background 0.2s;
  text-decoration: none;
  color: var(--true-black);
}
@media (min-width: 768px) {
  .segment-card { border-right: 1px solid hsl(var(--foreground)); border-bottom: none; }
  .segment-card:nth-child(2) { border-right: none; }
  .segment-card:nth-child(n+3) { border-top: 1px solid hsl(var(--foreground)); }
  .segment-card:nth-child(3) { border-right: 1px solid hsl(var(--foreground)); }
  .segment-card:nth-child(4) { border-right: none; }
}
.segment-card:hover { background: #c0bfbb; }

.segment-card__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
}
.segment-card__title svg {
  width: 16px;
  height: 16px;
  stroke: var(--electric-blue);
  fill: none;
  stroke-width: 2;
}
.segment-card__body {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0,0,0,0.9);
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION (full-width dark)
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  width: 100%;
  padding: 172px 24px 104px;
  background: linear-gradient(180deg, #e7e7e7 0%, #c8c8c8 100%);
  color: #000000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) { .cta-section { padding: 172px 48px 130px; } }

.cta-section__heading {
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
}
@media (min-width: 1024px) { .cta-section__heading { font-size: 4.4rem; } }

.cta-section__body {
  font-size: 14.4px;
  line-height: 1.7;
  color: rgba(0,0,0,0.9);
  max-width: 560px;
  margin-top: 2rem;
  margin-bottom: 32px;
}
@media (min-width: 1024px) { .cta-section__body { font-size: 16.8px; } }

.cta-section__micro {
  font-size: 10px;
  color: rgba(0,0,0,0.35);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.cta-section .hero-cta {
  background: var(--true-black);
  color: var(--true-white);
  animation: none;
  font-size: 15.1px;
  border-top: 4px solid #444444;
  border-left: 4px solid #444444;
  border-right: 4px solid #000000;
  border-bottom: 4px solid #000000;
  outline: none;
}
/* cta-section hero-cta inherits box-shadow from .hero-cta */
.cta-section .hero-cta .icon-wrap {
  width: 56px;
  min-width: 56px;
  min-height: 56px;
}
.cta-section .hero-cta .icon-wrap svg {
  width: 22px;
  height: 22px;
}
.cta-section .hero-cta .label {
  padding: 13.8px 28.4px;
}
.cta-section .hero-cta:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #000000;
  border-left-color: #000000;
  border-right-color: #444444;
  border-bottom-color: #444444;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.comparison-table {
  border: 2px solid rgba(255,255,255,0.2);
  width: 100%;
  overflow-x: auto;
}
.comparison-table__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.comparison-table__header span {
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.comparison-table__header span:first-child { color: rgba(255,255,255,0.4); }
.comparison-table__header span:nth-child(2) { color: var(--blue-light); border-left: 1px solid rgba(255,255,255,0.2); }
.comparison-table__header span:nth-child(3) { color: rgba(255,255,255,0.4); border-left: 1px solid rgba(255,255,255,0.2); }

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row span {
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.6;
}
.comparison-row span:first-child { color: rgba(255,255,255,0.4); }
.comparison-row span:nth-child(2) { font-weight: 600; border-left: 1px solid rgba(255,255,255,0.2); }
.comparison-row span:nth-child(3) { color: rgba(255,255,255,0.4); font-style: italic; border-left: 1px solid rgba(255,255,255,0.2); }

/* Mobile: stack comparison table */
@media (max-width: 767px) {
  .comparison-table__header { display: none; }
  .comparison-row {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .comparison-row span { padding: 0; }
  .comparison-row span:nth-child(2) { border-left: none; }
  .comparison-row span:nth-child(3) { border-left: none; }
  .comparison-row span:first-child::before { content: '✗ '; }
  .comparison-row span:nth-child(2)::before { content: '→ '; color: var(--blue-light); }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #F4F4F4;
  width: 110%;
  margin-left: -5%;
  margin-top: -2px;
}

.faq-item {
  border-top: 2px solid #F4F4F4;
  background: #0a0a0a;
}
.faq-item:first-child { border-top: none; }
.section--white .faq-list { border-color: #1E2128; }
.section--white .faq-item { border-top-color: #1E2128; background: #efefef; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: url('../img/aero-link.cur'), pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-mono);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: background 0.2s;
}
@media (min-width: 1024px) { .faq-question { font-size: 13px; } }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question .toggle {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item.active .faq-question .toggle { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 1024px) { .faq-answer { font-size: 13px; } }
.faq-item.active .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════════
   FEATURE LIST (bullet with bold lead)
   ═══════════════════════════════════════════════════════════════ */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list__item {
  font-size: 12px;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 1024px) { .feature-list__item { font-size: 13px; } }
.feature-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
}
.feature-list__item strong { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   FEATURE ITEMS (workflow capability cards for industry pages)
   ═══════════════════════════════════════════════════════════════ */
.feature-items { display: flex; flex-direction: column; gap: 0; border: 2px solid rgba(255,255,255,0.2); }
.section--white .feature-items { border-color: #1E2128; }
.feature-item {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.feature-item:first-child { border-top: none; }
.section--white .feature-item { border-top-color: #1E2128; background: #efefef; }
.feature-item__title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section--white .feature-item__title { color: var(--true-black); }
.feature-item__body,
.feature-item__description {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 1024px) { .feature-item__body, .feature-item__description { font-size: 13px; } }
.section--white .feature-item__body,
.section--white .feature-item__description { color: rgba(0,0,0,0.9); }

/* ═══════════════════════════════════════════════════════════════
   DELIVERABLES LIST (numbered)
   ═══════════════════════════════════════════════════════════════ */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #1E2128;
  width: 110%;
  margin-left: -5%;
  margin-top: -2px;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-top: 2px solid #1E2128;
  background: #efefef;
}
.deliverable-item:first-child { border-top: none; }
.deliverable-item__number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--electric-blue);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 1px;
}
.deliverable-item__content {
  flex: 1;
}
.deliverable-item__label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--true-black);
  margin-bottom: 4px;
}
.deliverable-item__content p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0,0,0,0.9);
  margin: 0;
}
@media (min-width: 1024px) { .deliverable-item__content p { font-size: 13px; } }

/* ═══════════════════════════════════════════════════════════════
   BEFORE / AFTER (two-column narrative)
   ═══════════════════════════════════════════════════════════════ */
.before-after {
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) { .before-after { flex-direction: row; } }

.before-after__col {
  flex: 1;
  padding: 32px 24px;
}
.before-after__col--before {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .before-after__col--before { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.2); }
}
.before-after__col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.4);
}
.before-after__col--after .before-after__col-label { color: var(--blue-light); }
.before-after__col p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
@media (min-width: 1024px) { .before-after__col p { font-size: 13px; } }
.before-after__col p:last-child { margin-bottom: 0; }
.before-after__col p strong { font-weight: 700; color: var(--true-white); }

/* ── Before/After 3-Column Variant ── */
.before-after--three-col {
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) { .before-after--three-col { flex-direction: row; } }
.before-after--three-col .before-after__col { flex: 1; padding: 32px 24px; }
.before-after--three-col .before-after__col--before {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.before-after--three-col .before-after__col--after-week1 {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .before-after--three-col .before-after__col--before { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.2); }
  .before-after--three-col .before-after__col--after-week1 { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.2); }
}
.before-after--three-col .before-after__col--after-week1 .before-after__col-label { color: #7B8FFF; }
.before-after--three-col .before-after__col--after-month3 .before-after__col-label { color: var(--blue-light); }

/* ═══════════════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════════════ */
/* Featured pricing layout: main card (2/3) + sidebar (1/3) */
.pricing-featured {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 110%;
  margin-left: -5%;
}
@media (min-width: 1024px) {
  .pricing-featured {
    flex-direction: row;
    align-items: stretch;
  }
  .pricing-card--main {
    flex: 2;
  }
  .pricing-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: -2px;
  }
  .pricing-sidebar .pricing-card {
    margin-top: -2px;
  }
  .pricing-sidebar .pricing-card:first-child {
    margin-top: 0;
  }
  .pricing-sidebar .pricing-card:last-child {
    flex: 1;
  }
}

/* Legacy grid (kept for other uses) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 110%;
  margin-left: -5%;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; } }

.pricing-card {
  display: flex;
  flex-direction: column;
  border: 2px solid #F4F4F4;
  background: rgba(0,0,0,0.3);
  color: var(--true-white);
}
.pricing-grid .pricing-card {
  margin-top: -2px;
}
.pricing-grid .pricing-card:first-child { margin-top: 0; }
@media (min-width: 768px) {
  .pricing-grid .pricing-card { margin-left: -2px; }
  .pricing-grid .pricing-card:nth-child(2n+1) { margin-left: 0; }
  .pricing-grid .pricing-card:nth-child(1), .pricing-grid .pricing-card:nth-child(2) { margin-top: 0; }
}
@media (min-width: 1200px) {
  .pricing-grid .pricing-card { margin-left: -2px; margin-top: 0; }
  .pricing-grid .pricing-card:nth-child(2n+1) { margin-left: -2px; }
  .pricing-grid .pricing-card:first-child { margin-left: 0; }
}

.pricing-card.highlighted {
  background: var(--electric-blue);
  color: var(--true-white);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #F4F4F4;
}
.pricing-card.highlighted .pricing-card-header { border-bottom-color: #F4F4F4; }
.pricing-card-header .name { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-mono); }
.pricing-card-header .right { display: flex; align-items: center; gap: 8px; }
.pricing-card-header .tag {
  background: var(--electric-blue);
  color: var(--true-white);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
}

.pricing-price { padding: 24px 20px 16px; }
.pricing-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .pricing-price .amount { font-size: 1.75rem; } }
.pricing-price .period {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 4px;
}
.pricing-card:not(.highlighted) .pricing-price .period { color: rgba(255,255,255,0.4); }
.pricing-card.highlighted .pricing-price .period { color: rgba(255,255,255,0.5); }
.pricing-split {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.5;
  font-family: var(--font-mono);
}
.pricing-unit {
  font-size: 0.75em;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-desc {
  font-size: 12px;
  line-height: 1.7;
  padding: 0 20px 16px;
}
.pricing-card:not(.highlighted) .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-card.highlighted .pricing-desc { color: rgba(255,255,255,0.6); }

.pricing-features {
  flex: 1;
  padding: 16px 20px;
  border-top: 1px solid #F4F4F4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  line-height: 1.6;
}
.pricing-card.highlighted .pricing-features { border-top-color: #F4F4F4; }
.pricing-card:not(.highlighted) .pricing-features { color: rgba(255,255,255,0.7); }
.pricing-card.highlighted .pricing-features { color: rgba(255,255,255,0.7); }

.pricing-outcome {
  font-size: 11px;
  font-style: italic;
  padding: 0 20px 16px;
}
.pricing-card:not(.highlighted) .pricing-outcome { color: rgba(255,255,255,0.4); }
.pricing-card.highlighted .pricing-outcome { color: rgba(255,255,255,0.4); }

.pricing-cta-wrap { padding: 12px 20px 20px; }
.pricing-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  box-shadow: 3px 3px 0px 0px #a8adff;
  font-family: var(--font-mono);
  text-decoration: none;
  position: relative;
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #999999;
  border-bottom: 4px solid #999999;
}
.pricing-cta:active {
  transform: translate(3px, 3px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #999999;
  border-left-color: #999999;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.pricing-card.highlighted .pricing-cta {
  background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
  color: var(--true-black);
}
.pricing-cta .arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--electric-blue);
}
.pricing-cta .arrow-wrap svg { stroke: var(--true-white); transform: scale(1.08); }
.pricing-cta .cta-label { flex: 1; padding: 10px 0; text-align: center; }

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-row svg { width: 12px; height: 12px; margin-top: 2px; flex-shrink: 0; }
.feature-row .check-icon { stroke: #7B8FFF; }
.feature-row .minus-icon { stroke: rgba(255,255,255,0.2); }
.pricing-card.highlighted .feature-row .check-icon { stroke: var(--true-white); }
.pricing-card.highlighted .feature-row .minus-icon { stroke: rgba(255,255,255,0.3); }
.feature-row .text { font-size: 12px; line-height: 1.6; }
.feature-row .text.excluded { text-decoration: line-through; }
.pricing-card:not(.highlighted) .feature-row .text.excluded { color: rgba(255,255,255,0.25); }
.pricing-card.highlighted .feature-row .text.excluded { color: rgba(255,255,255,0.3); }

.pricing-card-header .index { font-size: 10px; letter-spacing: 0.2em; opacity: 0.5; }

.pricing-note {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-note span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.pricing-note .line { flex: 1; border-top: 1px solid var(--true-black); opacity: 0.2; }
.section--stone .pricing-note span { color: rgba(255,255,255,0.4); }
.section--stone .pricing-note .line { border-color: var(--true-white); opacity: 0.15; }

.pricing-addon {
  background: var(--true-white);
  color: var(--true-black);
  width: 110%;
  margin-left: -5%;
}

.section--stone .pricing-note {
  width: 110%;
  margin-left: -5%;
}

/* ═══════════════════════════════════════════════════════════════
   ROI MATH (two-column)
   ═══════════════════════════════════════════════════════════════ */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--true-black);
}
@media (min-width: 768px) { .roi-grid { grid-template-columns: 1fr 1fr; } }

.roi-col {
  padding: 32px 24px;
}
.roi-col:first-child {
  border-bottom: 1px solid var(--true-black);
}
@media (min-width: 768px) {
  .roi-col:first-child { border-bottom: none; border-right: 1px solid var(--true-black); }
}
.roi-col__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.roi-col p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0,0,0,0.9);
}
@media (min-width: 1024px) { .roi-col p { font-size: 13px; } }

/* ═══════════════════════════════════════════════════════════════
   STEPS SECTIONS (How We Work)
   ═══════════════════════════════════════════════════════════════ */
.step-section {
  padding: 48px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.step-section:last-child { border-bottom: none; }
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-body p {
  font-size: 12px;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 12px;
}
@media (min-width: 1024px) { .step-body p { font-size: 13px; } }
.step-result {
  font-size: 12px;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   PRINCIPLES (About page)
   ═══════════════════════════════════════════════════════════════ */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid hsl(var(--foreground));
}
@media (min-width: 768px) { .principles-grid { grid-template-columns: 1fr 1fr 1fr; } }

.principle-card {
  padding: 32px 24px;
  border-bottom: 1px solid hsl(var(--foreground));
}
@media (min-width: 768px) {
  .principle-card { border-bottom: none; border-right: 1px solid hsl(var(--foreground)); }
  .principle-card:last-child { border-right: none; }
}
.principle-card__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.principle-card__body {
  font-size: 12px;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid hsl(var(--foreground));
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-copy {
  padding: 32px 24px;
  border-bottom: 1px solid hsl(var(--foreground));
}
@media (min-width: 768px) { .contact-copy { border-bottom: none; border-right: 1px solid hsl(var(--foreground)); } }

.contact-embed {
  padding: 32px 24px;
  min-height: 400px;
}

.self-qualifier {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.self-qualifier__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 8px;
}
.self-qualifier__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid hsl(var(--foreground) / 0.2);
  cursor: url('../img/aero-link.cur'), pointer;
  font-size: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.self-qualifier__option:hover { border-color: hsl(var(--foreground) / 0.4); }
.self-qualifier__option.active {
  border-color: var(--blue-light);
  background: hsl(var(--foreground) / 0.03);
}
.self-qualifier__option input { display: none; }
.self-qualifier__radio {
  width: 14px;
  height: 14px;
  border: 2px solid hsl(var(--foreground) / 0.3);
  flex-shrink: 0;
}
.self-qualifier__option.active .self-qualifier__radio {
  border-color: var(--blue-light);
  background: var(--blue-light);
}

.trust-signals {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.trust-signal {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-signal::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SUBSIDIES SECTION
   ═══════════════════════════════════════════════════════════════ */
.subsidy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid hsl(var(--foreground));
}
@media (min-width: 768px) { .subsidy-grid { grid-template-columns: 1fr 1fr 1fr; } }

.subsidy-card {
  padding: 24px;
  border-bottom: 1px solid hsl(var(--foreground));
}
@media (min-width: 768px) {
  .subsidy-card { border-bottom: none; border-right: 1px solid hsl(var(--foreground)); }
  .subsidy-card:last-child { border-right: none; }
}
.subsidy-card__title { font-size: 12px; font-weight: 500; margin-bottom: 8px; font-family: var(--font-mono); }
.subsidy-card__body { font-size: 12px; line-height: 1.7; color: hsl(var(--muted-foreground)); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #000000 0%, #050505 40%, #0a0a0a 100%);
  color: var(--true-white);
  padding: 64px 24px 32px;
}
@media (min-width: 1024px) { .site-footer { padding: 64px 48px 32px; } }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }

.footer-logo {
  height: 112px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  margin-left: 0;
  margin-right: auto;
}
.footer-brand .footer-name {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand .footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--true-white); }

.footer-contact {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}
.footer-contact a { color: var(--stone); transition: color 0.2s; }
.footer-contact a:hover { color: var(--true-white); }

/* Email capture */
.footer-email h3 {
  font-family: 'Geist', sans-serif;
  font-size: 64.7px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.footer-email p {
  font-size: 19.6px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-email-form {
  display: flex;
  gap: 12px;
  border: none;
  align-items: stretch;
}
.footer-email-input {
  flex: 1;
  padding: 0 22px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--true-white);
  font-family: var(--font-mono);
  font-size: 16.8px;
  outline: none;
  box-sizing: border-box;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-email-submit {
  margin-bottom: 6px;
  padding: 13.8px 27.5px;
  background: var(--electric-blue);
  color: var(--true-white);
  font-family: var(--font-mono);
  font-size: 15.3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 4px solid #4a5aff;
  border-left: 4px solid #4a5aff;
  border-right: 4px solid #0009cc;
  border-bottom: 4px solid #0009cc;
  cursor: url('../img/aero-link.cur'), pointer;
  position: relative;
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  box-shadow: 4px 4px 0px 0px #a8adff;
}
.footer-email-submit:active, .footer-email-submit.clicked {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #a8adff;
  border-top-color: #0009cc;
  border-left-color: #0009cc;
  border-right-color: #4a5aff;
  border-bottom-color: #4a5aff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT CONTAINER (max-width)
   ═══════════════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 899px) {
  body { padding-bottom: 0; }
}

/* ── Small screens (phones) ── */
@media (max-width: 767px) {

  /* Kill all 110%/-5% overflow patterns */
  .solution-table,
  .solution-table-wrap,
  .sys-accordion-cards,
  .industry-grid,
  .ben-spot,
  .ind-collapsed-cards,
  .card-row,
  .methodology-row,
  .faq-list,
  .feature-list,
  .deliverables-list,
  .pricing-grid,
  .subsidy-grid,
  .roi-grid {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* Prevent horizontal overflow — only on body, not sections (keeps table borders visible) */

  /* Hero on mobile */
  .hero--fullbleed {
    padding-top: 20px;
    margin-top: 0;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    max-width: 100%;
    margin-bottom: 16px;
  }
  .hero:has(.hero__image) h1 {
    margin-top: 0;
  }
  .hero__image {
    margin-top: -24px;
    width: 125%;
    margin-left: -12.5%;
  }
  .hero--fullbleed {
    overflow-x: clip;
    overflow-y: visible;
  }
  .hero-bottom {
    margin-top: 0;
  }
  .hero-sub {
    font-size: 11.5px;
    margin-top: 0;
    padding: 0 4px;
  }

  /* Section headings: scale down */
  .section-heading {
    font-size: 2.2rem;
  }

  /* CTA section heading */
  .cta-section__heading {
    font-size: 3.08rem;
  }
  .cta-section .solution-table {
    margin: 0 auto;
  }
  .cta-section .solution-table__cell {
    padding: 4px 0;
  }

  /* Benefits spotlight: buttons stack vertically (already done), reduce panel padding */
  .ben-spot__panel {
    padding: 24px 20px;
  }
  .ben-spot__panel-title {
    font-size: 1.2rem;
  }
  .ben-spot__panel-divider {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  /* Accordion cards: reduce padding */
  .sys-acc-card__header {
    padding: 16px 16px;
  }
  .sys-acc-card__body {
    padding: 16px 16px 20px;
    padding-left: 16px;
  }
  .sys-acc-card__title {
    font-size: 1.1rem;
  }
  .sys-acc-card__left {
    gap: 12px;
  }

  /* Industry cards: ensure text doesn't cramp */
  .ind-collapsed-card__header {
    padding: 16px 16px;
  }
  .ind-collapsed-card__body {
    padding: 16px 16px 20px;
    padding-left: 16px;
  }
  .ind-collapsed-card__title {
    font-size: 1.1rem;
  }

  /* Industry cards: stack body content vertically on mobile */
  .ind-collapsed-card__body-inner {
    flex-direction: column;
    gap: 0;
  }

  /* Industry cards: accordion on mobile (click to expand, not hover) */
  /* Neutralize all desktop :hover effects */
  .ind-collapsed-card:hover .ind-collapsed-card__body-wrap { max-height: 0; }
  .ind-collapsed-card:hover .ind-collapsed-card__body { opacity: 1; transform: none; }
  .ind-collapsed-card:hover .ind-collapsed-card__divider { opacity: 0; }
  /* Accordion: .open class controls expand/collapse */
  .ind-collapsed-card__body-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .ind-collapsed-card.open .ind-collapsed-card__body-wrap { transition: max-height 0.4s ease; }
  .ind-collapsed-card__body { opacity: 1; transform: none; transition: none; }
  .ind-collapsed-card__divider { opacity: 0; transition: opacity 0.3s ease; }
  .ind-collapsed-card.open .ind-collapsed-card__divider { opacity: 1; }
  .ind-collapsed-card__arrow-wrap {
    display: flex;
    background: var(--true-black);
    color: var(--true-white);
    border-top: 4px solid #444444;
    border-left: 4px solid #444444;
    border-right: 4px solid #000000;
    border-bottom: 4px solid #000000;
    box-shadow: 4px 4px 0px 0px #a8adff;
    cursor: pointer;
    margin-top: 16px;
    transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
  }
  .ind-collapsed-card__arrow-wrap:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px #a8adff;
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #444444;
    border-bottom-color: #444444;
  }
  .ind-collapsed-card__icon-wrap {
    background: var(--electric-blue);
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .ind-collapsed-card__arrow {
    color: var(--true-white);
    stroke: var(--true-white);
    transform: rotate(-45deg);
  }
  .ind-collapsed-card__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 44px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--true-white);
  }
  /* Toggle icon (plus/cross) */
  .ind-collapsed-card__toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .ind-collapsed-card.open .ind-collapsed-card__toggle-icon {
    transform: rotate(45deg);
    color: rgba(0, 0, 0, 0.8);
  }
  .ind-collapsed-card__cta-btn { display: none; }
  .section--white .ind-collapsed-card__arrow-wrap {
    background: linear-gradient(135deg, #F4F4F4 0%, #DCDCDC 50%, #C0C0C0 100%);
    color: hsl(var(--background));
    border-top: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    border-right: 4px solid #999999;
    border-bottom: 4px solid #999999;
    box-shadow: 2px 2px 0px 0px #a8adff;
  }
  .section--white .ind-collapsed-card__arrow-wrap:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px 0px #a8adff;
    border-top-color: #999999;
    border-left-color: #999999;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
  }
  .ind-collapsed-card__arrow-wrap:active .ind-collapsed-card__arrow {
    transform: rotate(0deg);
  }
  .section--white .ind-collapsed-card__hint {
    color: hsl(var(--background));
  }
  .section--white .ind-collapsed-card__toggle-icon { color: rgba(255,255,255,0.3); }
  .section--white .ind-collapsed-card.open .ind-collapsed-card__toggle-icon { color: #ffffff; }

  /* Footer: prevent overflow */
  .footer-brand .footer-tagline,
  .footer-nav {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .footer-nav {
    gap: 12px 16px;
  }

  /* Solution table: keep within bounds */
  .solution-table {
    table-layout: fixed;
    word-wrap: break-word;
  }
  .solution-table__cell {
    padding: 16px 20px;
  }

  /* Section padding: match navbar's 20px side padding so tables align with navbar */
  .section {
    padding: 81px 20px;
  }
  .section--white,
  .section--stone,
  .section--solution,
  .section--about,
  .section--methodology,
  .section--industries,
  .section--five-stages {
    padding-top: 131px;
    padding-bottom: 145px;
  }
  .section--solution {
    padding-top: 111px;
    padding-bottom: 123px;
  }
  .cta-section {
    padding: 120px 20px 94px;
  }

  /* Hero scenario lines */
  .hero-scenario__line {
    font-size: 13px;
  }

  /* Methodology cards if still used */
  .methodology-card {
    padding: 20px 20px;
  }
  .methodology-card__header {
    gap: 12px;
  }
  .methodology-card__divider {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .methodology-card--split > .methodology-card__divider {
    width: 100%;
    margin-left: 0;
  }
  .methodology-card--split .methodology-card__top {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .methodology-card__col-left,
  .methodology-card__col-right {
    padding: 24px 20px;
  }

  /* Before-after columns */
  .before-after {
    flex-direction: column;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* CTA buttons: two-line label on mobile, proportionally bigger */
  .hero-cta,
  .hero .hero-cta,
  .cta-section .hero-cta {
    font-size: 14.4px;
    max-width: 312px;
  }
  .hero .hero-cta {
    transform: scale(0.9);
    transform-origin: center center;
  }
  .hero-cta .label,
  .hero .hero-cta .label,
  .cta-section .hero-cta .label {
    white-space: normal;
    padding: 12px 20px;
    line-height: 1.4;
  }
  .hero .hero-cta .icon-wrap,
  .cta-section .hero-cta .icon-wrap {
    width: 64px;
    min-width: 64px;
    min-height: 64px;
  }
  .hero .hero-cta .icon-wrap svg,
  .cta-section .hero-cta .icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  /* Footer: newsletter above other elements on mobile */
  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-email h3 {
    font-size: 2.64rem;
  }
  .footer-email p {
    font-size: 14px;
  }
  .footer-email-form {
    flex-direction: column;
  }
  .footer-email-input {
    padding: 12px 16px;
    font-size: 14px;
  }
  .footer-email-submit {
    padding: 15.8px 20px;
    font-size: 14.4px;
  }
  .footer-brand .footer-tagline {
    font-size: 11px;
  }
  .footer-nav {
    gap: 10px 14px;
  }
  .footer-nav a {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 48px;
    padding-bottom: 16px;
  }
  .footer-inner {
    margin-bottom: 24px;
  }

  /* Navbar: fixed on mobile so it stays visible on scroll */
  .navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  /* Offset content below fixed navbar */
  main {
    padding-top: 80px;
  }

  /* Navbar: only logo + hamburger on mobile, hamburger on right */
  .btn-cta--nav {
    display: none;
  }
  .navbar-inner {
    flex-direction: row;
  }
  .navbar-logo {
    order: 1;
  }
  .navbar-links {
    order: 2;
  }
  .navbar-right {
    order: 3;
    margin-left: auto;
  }

  /* Logo on mobile */
  .navbar-logo__img {
    height: 75px;
  }
  .navbar-wrap.scrolled .navbar-logo__img {
    height: 65px;
  }
}

/* ── Medium screens (tablets) ── */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Reduce the 110% bleed to a gentler amount */
  .solution-table,
  .sys-accordion-cards,
  .ben-spot,
  .ind-collapsed-cards,
  .card-row {
    width: 105%;
    margin-left: -2.5%;
  }

  .section-heading {
    font-size: 3rem;
  }

  .cta-section__heading {
    font-size: 3.2rem;
  }

  .ben-spot__panel-title {
    font-size: 1.5rem;
  }
}
