/*
Theme Name: Blue Solvere
Theme URI: https://bluesolvere.com
Author: Building Brands Marketing
Author URI: https://buildingbrandsmarketing.com
Description: Official WordPress theme for Blue Solvere Benefits Solutions — a connected benefits ecosystem delivering smarter solutions and stronger support for brokers, employers, and employees.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: All Rights Reserved
Text Domain: blue-solvere
*/

/* ============ TOKENS ============ */
:root {
  --blue: #0078C8;
  --blue-bright: #1591E0;
  --blue-deep: #004B85;
  --ink: #0A1628;
  --ink-2: #14253D;
  --paper: #FAFAF7;
  --paper-2: #F2F0EA;
  --rule: #E5E2DA;
  --muted: #5A6A7A;
  --muted-2: #8A95A2;
  --black: #000000;
  --white: #FFFFFF;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPOGRAPHY ============ */
.display-xxl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow.on-dark { color: var(--blue-bright); }

/* ============ LAYOUT ============ */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { padding: clamp(80px, 10vw, 140px) 0; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center;
  height: 36px;
}
.nav-logo img {
  height: 100%;
  width: auto;
}
@media (max-width: 480px) {
  .nav-logo { height: 28px; }
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-bright); }

/* WordPress nav menu overrides */
.nav-links ul {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links ul li { margin: 0; }
.nav-links ul li a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links ul li a:hover { color: var(--white); }
.nav-links ul li.nav-cta-item > a {
  display: inline-flex; align-items: center;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-links ul li.nav-cta-item > a:hover { background: var(--blue-bright); }

/* ── Hamburger button ─────────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.2,0.8,0.2,1), opacity 0.2s, transform 0.28s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }

  /* Mobile nav panel */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8,18,34,0.99);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 8px 0 24px;
    z-index: 400;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav.nav-open .nav-links { display: block; }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
    padding: 0 clamp(20px,5vw,40px);
    align-items: stretch;
  }
  .nav-links ul li { display: block !important; }
  .nav-links ul li a {
    display: block;
    padding: 13px 0;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.78);
    text-decoration: none;
  }
  .nav-links ul li a:hover { color: #fff; }

  /* CTA item in mobile: styled as accent link, no button */
  .nav-links ul li.nav-cta-item > a {
    background: none;
    padding: 13px 0;
    border-radius: 0;
    font-size: 16px;
    color: var(--blue-bright);
    border-bottom: none;
    letter-spacing: 0;
    font-weight: 600;
  }

  /* Dropdown sub-menu: always expanded on mobile, indented */
  .nav-links ul li.has-dropdown > .sub-menu {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent;
    border: none;
    box-shadow: none;
    border-top: none;
    padding: 0 0 8px 16px;
    min-width: 0;
  }
  .nav-links ul li.has-dropdown > .sub-menu li a {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-chevron { display: none; }
}

/* ── Nav dropdown ─────────────────────────────────────────────────────────── */
.nav-links ul li.has-dropdown {
  position: relative;
}
.nav-links ul li.has-dropdown > .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;          /* flush — gap covered by padding-top below */
  left: 0;
  width: 260px;       /* fixed width — no more full-width stretching */
  background: rgba(8, 18, 34, 0.98);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--blue);
  list-style: none;
  padding: 14px 0 6px; /* 14px top padding bridges the gap so hover isn't lost */
  margin: 0;
  gap: 0;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 500;
  transform: translateY(4px);
  /* Delay hiding by 150ms so mouse can travel to the dropdown */
  transition: opacity 0.18s cubic-bezier(0.2,0.8,0.2,1), transform 0.18s cubic-bezier(0.2,0.8,0.2,1), visibility 0s 0.35s;
}
.nav-links ul li.has-dropdown:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s cubic-bezier(0.2,0.8,0.2,1), transform 0.18s cubic-bezier(0.2,0.8,0.2,1), visibility 0s 0s;
}
.nav-links ul li.has-dropdown > .sub-menu li {
  display: block;
  margin: 0;
}
.nav-links ul li.has-dropdown > .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  white-space: normal;  /* allow wrapping — no more width blowout */
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-radius: 0;
  line-height: 1.4;
}
.nav-links ul li.has-dropdown > .sub-menu li a:hover {
  color: #fff;
  background: rgba(0,120,200,0.12);
}
.nav-chevron {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.2s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-links ul li.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* ============ HERO ============ */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: clamp(100px, 12vw, 160px);
  padding-bottom: clamp(120px, 14vw, 180px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 120, 200, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(21, 145, 224, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--blue-bright);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 76px);
}
.hero h1 .accent { color: var(--blue-bright); }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin-bottom: 16px;
}
.hero-support {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white);
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.05); }

.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) { .hero-visual { height: 320px; } }

.symbol-stage {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .symbol-stage { width: 260px; height: 260px; }
}

.symbol-stage .ring {
  position: absolute;
  border: 1px solid rgba(0, 120, 200, 0.35);
  transform: rotate(45deg);
}
.symbol-stage .ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(21, 145, 224, 0.18);
}
.symbol-stage .ring-2 {
  width: 76%; height: 76%;
  border-color: rgba(21, 145, 224, 0.3);
}
.symbol-stage .ring-3 {
  width: 52%; height: 52%;
  border-color: rgba(21, 145, 224, 0.5);
}

.symbol-stage .mark {
  position: relative;
  width: 180px;
  height: 180px;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(0, 120, 200, 0.4));
}
@media (max-width: 960px) {
  .symbol-stage .mark { width: 130px; height: 130px; }
}
.symbol-stage .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-meta {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 720px) { .hero-meta { grid-template-columns: repeat(2, 1fr); } }
.meta-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.meta-item .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

/* ============ INTRO ============ */
.intro {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

.intro-eyebrow-block .eyebrow { margin-bottom: 16px; display: block; }
.intro-eyebrow-block .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 32px;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.88);
  display: block;
}
.intro-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,120,200,0.12) 0%, transparent 60%);
}
.intro-content h2 {
  margin-bottom: 32px;
}
.intro-content p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 720px;
}
.intro-content p + p { margin-top: 20px; }

/* ============ PILLARS ============ */
.pillars {
  background: var(--paper);
}
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 880px) { .pillars-header { grid-template-columns: 1fr; } }
.pillars-header h2 { max-width: 580px; }
.pillars-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--paper);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}
.pillar:hover { background: var(--white); }
.pillar:hover .pillar-num { color: var(--blue); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 28px;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.pillar-num::before {
  content: '';
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  display: inline-block;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pillar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pillar-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.pillar:hover .pillar-link { gap: 10px; }

/* ============ WHY ============ */
.why {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 480px; height: 480px;
  background-image: url('https://server5.buildingbrandsmarketing.com/demos/Benefi/Blue%20Solvere%20Logo%20Symbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why h2 { color: var(--white); margin-bottom: 32px; }
.why-eyebrow { margin-bottom: 24px; display: block; }
.why-body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.proof-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.proof-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}
.proof-list .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
}
.proof-list .text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.005em;
}

/* ============ ADMIN HIGHLIGHT ============ */
.admin {
  background: var(--paper-2);
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .admin-card { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; } }

.admin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
}
.admin-content .eyebrow { margin-bottom: 20px; display: block; }
.admin-content h2 { margin-bottom: 28px; }
.admin-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}
.admin-partner {
  padding: 24px;
  background: var(--paper);
  border-left: 3px solid var(--blue);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}
.admin-partner strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.admin-list {
  list-style: none;
}
.admin-list-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.admin-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-2);
  align-items: start;
}
.admin-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
  margin-top: 7px;
}
.admin-list li:last-child { border-bottom: none; }

/* ============ PARTNERS ============ */
.partners {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.partners-header {
  text-align: center;
  margin-bottom: 60px;
}
.partners-header .eyebrow { margin-bottom: 16px; display: block; }
.partners-header h2 { max-width: 720px; margin: 0 auto; }
.partners-group {
  margin-bottom: 50px;
}
.partners-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.partners-group-label::before, .partners-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 200px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 880px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-grid.tech { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .logo-grid.tech { grid-template-columns: repeat(2, 1fr); } }

.logo-cell {
  background: var(--paper);
  aspect-ratio: 3 / 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background 0.2s;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  letter-spacing: -0.01em;
}
.logo-cell:hover {
  background: var(--white);
  color: var(--ink);
}

/* ============ COMPANIES ============ */
.companies {
  background: var(--paper);
}
.companies-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.companies-header .eyebrow { margin-bottom: 16px; display: block; }
.companies-header h2 { margin-bottom: 24px; }
.companies-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) { .companies-grid { grid-template-columns: 1fr; } }

.company-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.company-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background-image: url('https://bluesolvere.newclientdemo.com/wp-content/uploads/2026/05/Blue-Solvere-Logo-Symbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: rotate(15deg) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.2,0.8,0.2,1), transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
}
.company-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,120,200,0.12);
}
.company-card:hover::after {
  opacity: 0.07;
  transform: rotate(0deg) scale(1);
}
.company-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}
.company-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.company-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.company-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blue);
  transition: gap 0.2s;
}
.company-card:hover .company-link { gap: 14px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 520px; height: 520px;
  background-image: url('https://bluesolvere.newclientdemo.com/wp-content/uploads/2026/05/Blue-Solvere-Logo-Symbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  animation: finalDiamondSpin 80s linear infinite;
  transform-origin: center;
}
@keyframes finalDiamondSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.final-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 700px; height: 700px;
  border: 1px solid rgba(0, 120, 200, 0.15);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta .eyebrow { margin-bottom: 24px; display: block; }
.final-cta .eyebrow.on-dark { color: var(--blue-bright); }
.final-cta h2 {
  color: var(--white);
  margin-bottom: 32px;
}
.final-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
}
.final-cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  display: inline-block;
  height: 44px;
  margin-bottom: 28px;
}
.footer-brand .footer-logo img {
  height: 100%;
  width: auto;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .legal-entity {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-support, .hero-cta-row {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.25s; }
.hero-support { animation-delay: 0.4s; }
.hero-cta-row { animation-delay: 0.55s; }

@keyframes symbolFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.symbol-stage .mark {
  animation: symbolFloat 5s ease-in-out infinite;
}
@keyframes ringRotate {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}
.symbol-stage .ring-1 { animation: ringRotate 80s linear infinite; }
.symbol-stage .ring-2 { animation: ringRotate 60s linear infinite reverse; }

/* ============ INNER PAGE HERO ============ */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(72px, 9vw, 120px) 0 clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 120, 200, 0.14), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(21, 145, 224, 0.06), transparent 50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 820px; }
.page-hero-eyebrow { display: block; margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 24px; }
.page-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb .sep { opacity: 0.4; }

/* ============ TWO-COL LAYOUTS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col.balanced { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) { .two-col.balanced { grid-template-columns: 1fr; } }

.label-col .eyebrow { display: block; margin-bottom: 16px; }
.label-col .section-num { font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); }

.content-block h2 { margin-bottom: 28px; }
.content-block p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}
.content-block p + p { margin-top: 18px; }

/* ============ BENEFI CALLOUT ============ */
.benefi-callout {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--blue);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.benefi-callout-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  padding-top: 4px;
}
.benefi-callout p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.benefi-callout strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

/* ============ CAPABILITIES GRID ============ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 720px) { .capabilities-grid { grid-template-columns: 1fr; } }
.capability-item {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.25s;
}
.capability-item:hover { background: var(--white); }
.cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cap-num::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  transform: rotate(45deg);
  display: inline-block;
}
.capability-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.capability-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ============ FEATURE LIST ============ */
.feature-list { list-style: none; border-top: 1px solid var(--rule); }
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  align-items: start;
}
.feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
  margin-top: 7px;
}
.feature-list.on-dark { border-top-color: rgba(255,255,255,0.12); }
.feature-list.on-dark li { border-bottom-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.feature-list.on-dark li::before { background: var(--blue-bright); }

/* ============ BENEFITS (DARK) SECTION ============ */
.benefits-section { background: var(--ink); color: var(--white); position: relative; }
.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 120, 200, 0.12), transparent 55%);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; gap: 40px; } }
.benefits-section h2 { color: var(--white); margin-bottom: 28px; }
.benefits-section .eyebrow { display: block; margin-bottom: 24px; }
.benefits-section .lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ============ RELATED SOLUTIONS ============ */
.related-solutions { background: var(--paper-2); }
.related-solutions h2 { margin-bottom: 48px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.25s;
  display: block;
  color: inherit;
}
.related-card:hover { background: var(--paper); }
.related-card .rel-num { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-bottom: 14px; display: block; }
.related-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.related-card .rel-link { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--blue); }

/* ============ PAGE CTA ============ */
.page-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px,10vw,140px) 0;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 520px; height: 520px;
  background-image: url('https://bluesolvere.newclientdemo.com/wp-content/uploads/2026/05/Blue-Solvere-Logo-Symbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  animation: finalDiamondSpin 80s linear infinite;
  transform-origin: center;
}
.page-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 700px; height: 700px;
  border: 1px solid rgba(0, 120, 200, 0.15);
  pointer-events: none;
}
.page-cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-cta .eyebrow { margin-bottom: 20px; display: block; }
.page-cta h2 { color: var(--white); margin-bottom: 24px; }
.page-cta p { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin-bottom: 40px; }
.page-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ SOLUTIONS FULL LISTING ============ */
.solutions-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.solution-row {
  background: var(--paper);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 260px 1fr 140px;
  gap: 48px;
  align-items: center;
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
}
.solution-row:hover { background: var(--white); }
@media (max-width: 880px) { .solution-row { grid-template-columns: 1fr; gap: 20px; padding: 36px; } }
.solution-row-meta .sol-num { font-family: var(--font-mono); font-size: 11px; color: var(--blue); letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
.solution-row-meta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.solution-row p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.solution-row-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  white-space: nowrap;
  justify-self: end;
  transition: gap 0.2s;
}
@media (max-width: 880px) { .solution-row-link { justify-self: start; } }
.solution-row:hover .solution-row-link { gap: 14px; }

/* ============ VALUES GRID ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--paper); padding: 40px 32px; }
.value-card .v-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card .v-num::before { content: ''; width: 6px; height: 6px; background: var(--blue); transform: rotate(45deg); display: inline-block; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 14px; letter-spacing: -0.01em; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ============ PARTNERS PAGE ============ */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 760px) { .partner-logo-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-logo-grid.six-col { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 960px) { .partner-logo-grid.six-col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partner-logo-grid.six-col { grid-template-columns: repeat(2, 1fr); } }
.partner-cell {
  background: var(--paper);
  aspect-ratio: 3 / 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  transition: background 0.2s;
  text-align: center;
  gap: 10px;
}
.partner-cell:hover { background: var(--white); }
.partner-cell img { max-height: 40px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.55); transition: filter 0.25s; }
.partner-cell:hover img { filter: grayscale(0) opacity(1); }
.partner-cell .partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.partner-cell:hover .partner-name { color: var(--ink); }
.partner-cell .partner-placeholder {
  width: 48px; height: 48px;
  background: var(--rule);
  border-radius: 0;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-cell .partner-placeholder::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--muted-2);
  transform: rotate(45deg);
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-row { margin-bottom: 24px; }
.contact-form .form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .contact-form .form-two { grid-template-columns: 1fr; } }
.contact-form .form-note { font-size: 13px; color: var(--muted-2); margin-top: 16px; }

.contact-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 16px; letter-spacing: -0.01em; }
.contact-info p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 32px; }
.contact-ways { list-style: none; border-top: 1px solid var(--rule); }
.contact-ways li { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: flex-start; }
.contact-ways .way-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-2); min-width: 80px; padding-top: 2px; }
.contact-ways .way-value { font-size: 15px; color: var(--ink-2); line-height: 1.5; }

/* ============ COMPANIES FULL PAGE ============ */
.company-card-full {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  margin-bottom: 32px;
  transition: border-color 0.3s;
}
.company-card-full:last-child { margin-bottom: 0; }
.company-card-full:hover { border-color: var(--blue); }
.company-card-full::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--blue); }
.company-card-full-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
@media (max-width: 880px) { .company-card-full-inner { grid-template-columns: 1fr; gap: 32px; } }
.company-card-full .company-tag { margin-bottom: 16px; }
.company-card-full h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.company-card-full .co-desc { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6; color: var(--muted); margin-bottom: 28px; }
.company-card-full .company-link { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--blue); display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid var(--blue); transition: gap 0.2s; }
.company-card-full:hover .company-link { gap: 14px; }

/* ============ LEGAL PAGES ============ */
.legal-content { max-width: 800px; }
.legal-content .last-updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 48px; display: block; }
.legal-content h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 48px 0 16px; letter-spacing: -0.01em; color: var(--ink); }
.legal-content h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 32px 0 12px; color: var(--ink); }
.legal-content p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 8px; }

/* ============ ENHANCED INNER PAGE COMPONENTS ============ */

/* Stat bar — dark row of 4 numbers (reusable across pages) */
.stat-bar {
  background: var(--ink);
  padding: clamp(36px, 4vw, 56px) 0;
}
.stat-bar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
@media (max-width: 700px) { .stat-bar .wrap { grid-template-columns: repeat(2, 1fr); gap: 1px; } }
.stat-item {
  padding: clamp(20px, 2.5vw, 36px) clamp(16px, 2vw, 28px);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Photo card grid — Who We Serve, 4-up */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
@media (max-width: 900px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: default;
}
.serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.7);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.serve-card:hover img { transform: scale(1.04); filter: saturate(0.9) brightness(0.6); }
.serve-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background 0.4s;
}
.serve-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
}
.serve-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.serve-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.serve-card:hover .serve-card-desc { max-height: 200px; opacity: 1; }

/* Split section — text left, photo right */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
@media (max-width: 860px) { .split-section { grid-template-columns: 1fr; } }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-text {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-2);
}
.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.88);
}
.split-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,120,200,0.18) 0%, transparent 60%);
}

/* Pull quote */
.pull-quote {
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
  background: var(--ink);
}
.pull-quote blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}
.pull-quote blockquote::before {
  content: '\201C';
  color: var(--blue-bright);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 6px;
}
.pull-quote blockquote::after {
  content: '\201D';
  color: var(--blue-bright);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-left: 6px;
}
.pull-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* Photo band — wide image strip with text overlay */
.photo-band {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.photo-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.photo-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.5);
}
.photo-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.65) 55%, transparent 100%);
}
.photo-band-content {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 6vw, 96px) 0;
  max-width: 600px;
}
.photo-band-content .eyebrow { color: var(--blue-bright); margin-bottom: 20px; display: block; }
.photo-band-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.photo-band-content p { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.65; color: rgba(255,255,255,0.75); }

/* Solution icon card grid (Solutions listing page) */
.solution-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
@media (max-width: 900px) { .solution-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .solution-cards-grid { grid-template-columns: 1fr; } }
.solution-icon-card {
  background: #fff;
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.solution-icon-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.solution-icon-card:hover { background: var(--paper); }
.solution-icon-card:hover::after { transform: scaleX(1); }
.solution-icon-card .sol-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,120,200,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-icon-card .sol-icon svg { width: 26px; height: 26px; color: var(--blue); }
.solution-icon-card .sol-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.solution-icon-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.solution-icon-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}
.solution-icon-card .card-link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.solution-icon-card:hover .card-link-arrow { gap: 14px; }

/* Page hero with background image */
.page-hero--image {
  position: relative;
  overflow: hidden;
}
.page-hero--image .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero--image .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.45);
}
.page-hero--image .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.96) 0%, rgba(0,75,133,0.55) 55%, rgba(0,120,200,0.2) 100%);
}
.page-hero--image .page-hero-inner { position: relative; z-index: 1; }

/* Enhanced solution subpage layout */
.solution-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .solution-overview { grid-template-columns: 1fr; } }
.solution-overview-text .lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 28px;
  font-weight: 400;
}
.solution-overview-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.solution-overview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}
.solution-overview-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,120,200,0.15) 0%, transparent 60%);
}

/* Visual capability cards */
.capability-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 860px) { .capability-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .capability-cards-grid { grid-template-columns: 1fr; } }
.capability-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 36px 28px;
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}
.capability-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.capability-card .cap-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,120,200,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.capability-card .cap-icon svg { width: 22px; height: 22px; color: var(--blue); }
.capability-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.capability-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* Company feature card (photo right) */
.company-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  margin-bottom: 32px;
  transition: border-color 0.3s;
  position: relative;
}
.company-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  z-index: 1;
}
.company-feature:hover { border-color: var(--blue); }
.company-feature:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .company-feature { grid-template-columns: 1fr; } }
.company-feature-text {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-feature-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.company-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.6s ease;
}
.company-feature:hover .company-feature-photo img { transform: scale(1.04); }
.company-feature-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,75,133,0.25) 0%, transparent 60%);
}

/* Enhanced partner cells */
.partner-logo-grid.enhanced {
  display: grid;
  gap: 2px;
}
.partner-logo-grid.enhanced.six-col { grid-template-columns: repeat(6, 1fr); }
.partner-logo-grid.enhanced.four-col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .partner-logo-grid.enhanced.six-col { grid-template-columns: repeat(3, 1fr); }
  .partner-logo-grid.enhanced.four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .partner-logo-grid.enhanced.six-col,
  .partner-logo-grid.enhanced.four-col { grid-template-columns: repeat(2, 1fr); }
}
.partner-cell-enhanced {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
}
.partner-cell-enhanced:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,120,200,0.08);
}
.partner-cell-enhanced .partner-diamond {
  width: 44px;
  height: 44px;
  background: rgba(0,120,200,0.07);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.partner-cell-enhanced:hover .partner-diamond { background: rgba(0,120,200,0.14); }
.partner-cell-enhanced .partner-diamond-inner {
  width: 20px;
  height: 20px;
  background: var(--blue);
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.partner-cell-enhanced:hover .partner-diamond-inner { transform: rotate(45deg); }
.partner-cell-enhanced .partner-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
}

/* Contact: dark sidebar with photo */
.contact-grid-enhanced {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  min-height: 640px;
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid-enhanced { grid-template-columns: 1fr; } }
.contact-form-panel {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--paper);
}
.contact-dark-sidebar {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}
.contact-dark-sidebar .sidebar-bg {
  position: absolute;
  inset: 0;
}
.contact-dark-sidebar .sidebar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.3);
}
.contact-dark-sidebar .sidebar-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(0,75,133,0.7) 0%, rgba(10,22,40,0.97) 65%);
}
.contact-sidebar-content {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
}
@media (max-width: 900px) { .contact-sidebar-content { padding: 40px 32px; } }
.contact-sidebar-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.contact-sidebar-content .sidebar-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.sidebar-ways { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.sidebar-ways li {}
.sidebar-ways .way-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 4px;
  display: block;
}
.sidebar-ways .way-value { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.75); }
.sidebar-ways a { color: rgba(255,255,255,0.85); }
.sidebar-ways a:hover { color: var(--blue-bright); }
.sidebar-benefi-note {
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--blue-bright);
  background: rgba(255,255,255,0.04);
}
.sidebar-benefi-note .note-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
  display: block;
}
.sidebar-benefi-note p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* Section eyebrow spacing helper */
.section-intro { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-intro .eyebrow { display: block; margin-bottom: 16px; }
.section-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-intro p { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; color: var(--muted); }
.section-intro.on-dark h2 { color: #fff; }
.section-intro.on-dark p { color: rgba(255,255,255,0.65); }
.section-intro.on-dark .eyebrow { color: var(--blue-bright); }

/* Related solutions card row */
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 860px) { .related-cards { grid-template-columns: 1fr; } }
.related-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.related-card:hover { border-color: var(--blue-bright); background: rgba(0,120,200,0.07); }
.related-card .rc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.related-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.related-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); flex-grow: 1; }
.related-card .rc-arrow { font-size: 18px; color: var(--blue-bright); align-self: flex-start; }

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  PREMIUM DESIGN SYSTEM — Blue Solvere v2                               ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/* ─── Marquee accent strip ────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--blue);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeRun 40s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ─── Editorial solution list ─────────────────────────────────────────────── */
.sol-dir { border-top: 1px solid var(--rule); }
.sol-dir-row {
  display: grid;
  grid-template-columns: 64px 1fr 200px 40px;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 0.3s ease;
}
.sol-dir-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.sol-dir-row:hover { padding-left: 20px; background: var(--paper-2); }
.sol-dir-row:hover::before { transform: scaleY(1); }
.sol-dir-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.sol-dir-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.sol-dir-row:hover .sol-dir-name { color: var(--blue); }
.sol-dir-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s;
}
.sol-dir-row:hover .sol-dir-tag { color: var(--blue); }
.sol-dir-arrow {
  font-size: 18px;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.sol-dir-row:hover .sol-dir-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 760px) {
  .sol-dir-row { grid-template-columns: 44px 1fr; }
  .sol-dir-tag, .sol-dir-arrow { display: none; }
}

/* ─── Bento grid ──────────────────────────────────────────────────────────── */
.bento { display: grid; gap: 16px; }
.bento-2col { grid-template-columns: 1.5fr 1fr; }
.bento-3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .bento-2col, .bento-3col { grid-template-columns: 1fr; } }

.bento-cell {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.bento-cell:hover { border-color: var(--blue); transform: translateY(-2px); }
.bento-cell.dark {
  background: var(--ink);
  border-color: rgba(255,255,255,0.07);
  color: #fff;
}
.bento-cell.dark:hover { border-color: rgba(0,120,200,0.5); }
.bento-cell.accent { background: var(--blue); border-color: var(--blue); color: #fff; }
.bento-cell.wide { grid-column: span 2; }
@media (max-width: 860px) { .bento-cell.wide { grid-column: span 1; } }

.bento-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.bento-cell.dark .bento-num { color: rgba(255,255,255,0.35); }
.bento-cell.accent .bento-num { color: rgba(255,255,255,0.6); }

.bento-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}
.bento-cell.dark h3, .bento-cell.accent h3 { color: #fff; }

.bento-cell p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex-grow: 1;
}
.bento-cell.dark p { color: rgba(255,255,255,0.55); }
.bento-cell.accent p { color: rgba(255,255,255,0.8); }

.bento-ghost-num {
  position: absolute;
  bottom: -14px; right: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 110px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
}
.bento-cell.dark .bento-ghost-num { color: rgba(255,255,255,0.04); }
.bento-cell.accent .bento-ghost-num { color: rgba(255,255,255,0.08); }

/* ─── Proof metric cards ──────────────────────────────────────────────────── */
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 860px) { .proof-row { grid-template-columns: 1fr; } }
.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.proof-card:hover { border-color: rgba(0,120,200,0.35); transform: translateY(-3px); }
.proof-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.04em;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.proof-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ─── Company showcase (full-height alternating) ──────────────────────────── */
.co-showcase {}
.co-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 55vw, 640px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.co-feature:last-child { border-bottom: none; }
.co-feature.flip > .co-photo { order: -1; }
@media (max-width: 900px) {
  .co-feature, .co-feature.flip { grid-template-columns: 1fr; }
  .co-feature.flip > .co-photo { order: 0; }
}
.co-photo {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.co-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.7);
  transition: transform 0.8s ease;
}
.co-feature:hover .co-photo img { transform: scale(1.04); }
.co-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,75,133,0.4) 0%, transparent 55%);
}
.co-content {
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.co-content::after {
  content: attr(data-index);
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(100px, 14vw, 180px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}
.co-content.light { background: var(--paper); }
.co-content.light::after { color: rgba(0,0,0,0.04); }
.co-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.co-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--blue-bright);
}
.co-content.light .co-eyebrow { color: var(--blue); }
.co-content.light .co-eyebrow::before { background: var(--blue); }
.co-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.co-content.light .co-heading { color: var(--ink); }
.co-body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.co-content.light .co-body { color: var(--muted); }
.co-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.co-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.co-feats li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--blue-bright);
  flex-shrink: 0;
}
.co-content.light .co-feats li { color: var(--muted); }
.co-content.light .co-feats li::before { background: var(--blue); }

/* ─── Carrier table grid ──────────────────────────────────────────────────── */
.carrier-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 48px;
}
@media (max-width: 860px) { .carrier-table { grid-template-columns: repeat(2, 1fr); } }
.carrier-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
  position: relative;
}
.carrier-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}
.carrier-cell:hover { background: rgba(0,120,200,0.04); }
.carrier-cell:hover::after { width: 100%; }
.carrier-mark {
  width: 38px; height: 38px;
  background: rgba(0,120,200,0.08);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.carrier-cell:hover .carrier-mark { background: rgba(0,120,200,0.18); }
.carrier-mark-inner {
  width: 14px; height: 14px;
  background: var(--blue);
  transition: transform 0.3s;
}
.carrier-cell:hover .carrier-mark-inner { transform: rotate(45deg); }
.carrier-cell-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
}

/* ─── Tech platform cards ─────────────────────────────────────────────────── */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 600px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--ink);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.tech-card:hover { transform: translateY(-4px); }
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.tech-card-ghost {
  position: absolute;
  bottom: -16px; right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 90px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.tech-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.tech-card-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.tech-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

/* ─── KBA spotlight band ──────────────────────────────────────────────────── */
.kba-band {
  background: var(--ink-2);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.kba-band::before {
  content: 'KBA';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 18vw, 240px);
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}
.kba-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .kba-inner { grid-template-columns: 1fr; } }
.kba-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kba-label::before { content: ''; width: 32px; height: 1px; background: var(--blue-bright); }
.kba-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.kba-body { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.kba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.kba-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kba-list li:last-child { border-bottom: none; }
.kba-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── Decorative section divider ──────────────────────────────────────────── */
.blue-rule {
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, transparent 100%);
}

/* ─── Contact premium ─────────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}
@media (max-width: 960px) { .contact-split { grid-template-columns: 1fr; min-height: auto; } }

.contact-form-side {
  padding: clamp(64px, 8vw, 100px) clamp(40px, 6vw, 88px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-dark-side {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-dark-side-bg {
  position: absolute; inset: 0;
}
.contact-dark-side-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.25);
}
.contact-dark-side-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,75,133,0.5) 0%, rgba(10,22,40,0.97) 70%);
}
.contact-info-content {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 72px) clamp(40px, 5vw, 64px);
}
.contact-info-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}
.contact-info-content .sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.contact-ways-v2 { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.contact-ways-v2 li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-ways-v2 li:last-child { border-bottom: none; }
.contact-ways-v2 .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 6px;
}
.contact-ways-v2 .val { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.75); }
.contact-ways-v2 a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-ways-v2 a:hover { color: var(--blue-bright); }

/* ─── Form header area ────────────────────────────────────────────────────── */
.form-header { margin-bottom: 44px; }
.form-header .eyebrow { display: block; margin-bottom: 14px; }
.form-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.form-header p { font-size: 16px; line-height: 1.65; color: var(--muted); }

/* ─── Large statement section ─────────────────────────────────────────────── */
.statement-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink-2);
  text-align: center;
}
.statement-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.statement-eyebrow::before,
.statement-eyebrow::after { content: ''; width: 48px; height: 1px; background: rgba(255,255,255,0.2); }
.statement-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 40px;
}
.statement-quote em { font-style: normal; color: var(--blue-bright); }
.statement-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Premium about story row ─────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.about-story-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.82);
  transition: transform 0.7s ease;
}
.about-story:hover .about-story-photo img { transform: scale(1.03); }
.about-story-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,75,133,0.3) 0%, transparent 55%);
}
.about-story-text {
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 72px);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 860px) { .about-story { grid-template-columns: 1fr; } }

/* ─── Who We Serve — horizontal scroll cards ──────────────────────────────── */
.serve-cards-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}
@media (max-width: 900px) { .serve-cards-h { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .serve-cards-h { grid-template-columns: 1fr; } }
.serve-card-v2 {
  border: 1px solid var(--rule);
  border-right: none;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 36px);
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}
.serve-cards-h > .serve-card-v2:last-child { border-right: 1px solid var(--rule); }
.serve-card-v2:hover { background: var(--ink); }
.serve-card-v2:hover .serve-v2-num,
.serve-card-v2:hover .serve-v2-title,
.serve-card-v2:hover .serve-v2-desc { color: rgba(255,255,255,0.85); }
.serve-card-v2:hover .serve-v2-title { color: #fff; }
.serve-card-v2:hover .serve-v2-num { color: var(--blue-bright); }
.serve-card-v2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.serve-card-v2:hover::after { transform: scaleX(1); }
.serve-v2-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.25s;
}
.serve-v2-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.25s;
}
.serve-v2-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  transition: color 0.25s;
}

/* ─── Section label strip (dark with left rule) ───────────────────────────── */
.section-label-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}
.section-label-strip::before {
  display: none;
}
.section-label-strip span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-label-strip.on-dark span { color: var(--blue-bright); }
.section-label-strip.on-dark::before { background: var(--blue-bright); }

/* ─── Solution hero oversize number ──────────────────────────────────────── */
.hero-ghost-num {
  position: absolute;
  right: -10px; bottom: -20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 20vw, 280px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─── Premium page hero inner ─────────────────────────────────────────────── */
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-top: 6px;
}

/* ─── Feature check list ──────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,120,200,0.2);
  border: 1.5px solid var(--blue-bright);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231591E0' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============ NAV LOGO SIZING ============ */
.nav-logo { height: auto; align-items: center; }
.nav-logo img,
.nav-logo .site-logo { height: 36px !important; width: auto; display: block; }
@media (max-width: 480px) {
  .nav-logo img,
  .nav-logo .site-logo { height: 28px !important; }
}

/* Footer logo slightly taller */
.footer-logo img,
.footer-logo .site-logo { height: 42px !important; width: auto; display: block; }

/* ============ ENTRANCE ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.page-hero-inner .breadcrumb {
  animation: bsFadeIn 0.45s ease both;
}
.page-hero-inner .page-hero-eyebrow {
  animation: fadeUp 0.55s ease 0.08s both;
}
.page-hero-inner h1 {
  animation: fadeUp 0.6s ease 0.18s both;
}
.page-hero-inner .page-hero-sub {
  animation: fadeUp 0.6s ease 0.3s both;
}

/* Hero grid stagger */
.hero h1     { animation: fadeUp 0.65s ease 0.05s both; }
.hero-sub    { animation: fadeUp 0.65s ease 0.18s both; }
.hero-support{ animation: fadeUp 0.65s ease 0.28s both; }
.hero-cta-row{ animation: fadeUp 0.65s ease 0.38s both; }
.hero-meta   { animation: bsFadeIn 0.8s ease 0.5s both; }

/* ============ IMPROVED FORM FOCUS ============ */
.contact-form input,
.contact-form select,
.contact-form textarea {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 120, 200, 0.12);
}
.contact-form .form-submit { align-items: flex-start; }

/* Custom select arrow */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6A7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ============ BREADCRUMB POLISH ============ */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.breadcrumb a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb span:not(.sep) {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.breadcrumb .sep {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ============ PILLAR CARD POLISH ============ */
.pillar {
  position: relative;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.35s ease;
}
.pillar:hover::after { width: 100%; }

/* ============ FOOTER LINK HOVER ============ */
.footer-col ul li a {
  position: relative;
  padding-left: 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a::before {
  content: '–';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--blue-bright);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}
.footer-col ul li a:hover::before { opacity: 1; }

/* ============ LEGAL PAGE TOC LAYOUT ============ */
.legal-wrapper {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .legal-wrapper { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

.legal-toc {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blue);
  padding: 28px 24px;
  border-radius: 0 0 2px 2px;
}
.legal-toc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
  display: block;
}
.legal-toc ul { list-style: none; display: flex; flex-direction: column; }
.legal-toc ul li { border-bottom: 1px solid var(--rule); }
.legal-toc ul li:last-child { border-bottom: none; }
.legal-toc ul li a {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  display: block;
  padding: 10px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.legal-toc ul li a:hover {
  color: var(--blue);
  padding-left: 6px;
}

/* ============ SECTION ACCENT — blue left cap on dark sections ============ */
.why::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 40%, transparent 100%);
}

/* ============ HOMEPAGE COMPANY CARDS POLISH ============ */
.company-card {
  transition: border-color 0.25s, transform 0.25s;
}
.company-card:hover { transform: translateY(-4px); }

/* ============ SOLUTION ICON CARD POLISH ============ */
.solution-icon-card {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.solution-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,120,200,0.1);
}

/* ============ CAPABILITY CARD POLISH ============ */
.capability-card {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.capability-card:hover {
  box-shadow: 0 8px 28px rgba(0,120,200,0.08);
}

/* ============ RELATED CARD POLISH ============ */
.related-card {
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.related-card:hover { transform: translateY(-3px); }

/* ============ SERVE CARD — reveal on mobile too ============ */
@media (max-width: 700px) {
  .serve-card-desc { max-height: 200px !important; opacity: 1 !important; }
}

/* ============ PARTNER CELL HOVER REFINEMENT ============ */
.partner-cell-enhanced {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.partner-cell-enhanced:hover { transform: translateY(-3px); }

/* ============ SPLIT SECTION IMAGE ZOOM ============ */
.split-photo img {
  transition: transform 0.7s ease;
}
.split-section:hover .split-photo img { transform: scale(1.03); }

/* ============ PHOTO BAND PARALLAX-LIKE ============ */
.photo-band-bg img {
  transition: transform 8s ease;
}

/* ============ STAT BAR NUMBER COLOR ============ */
.stat-item:hover .stat-num {
  color: var(--white);
  transition: color 0.2s;
}

/* ============ COMPANY FEATURE CARD LABEL ============ */
.company-feature:hover .company-feature-text > span:first-child {
  color: var(--blue-bright);
  transition: color 0.2s;
}

/* ============ WP ADMIN BAR OFFSET ============ */
.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}

/* ============ FOOTER UTILITY LINKS ============ */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }
.footer-legal-sep { color: rgba(255,255,255,0.2); }

/* Fix seam between dark sections and footer */
html { background: var(--black); }
body { background: var(--paper); }

/* ============ SCROLL REVEAL (IntersectionObserver) ============ */
.bs-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.2,0.8,0.2,1), transform 0.65s cubic-bezier(0.2,0.8,0.2,1);
}
.bs-reveal.bs-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HERO DIAMOND NODES ============ */
.hero-spoke-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hd-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  opacity: 0;
  animation: hdNodeIn 0.4s cubic-bezier(0.2,0.8,0.2,1) both, hdNodePulse 2.5s ease-in-out infinite;
}
/* 6 nodes at clock positions — symbol-stage is 360×360, center 180,180 */
.hd-n1 { top: calc(50% - 164px); left: calc(50% - 4px); animation-delay: 0.55s, 1.4s; }
.hd-n2 { top: calc(50% - 82px);  left: calc(50% + 130px); animation-delay: 0.7s, 1.6s; }
.hd-n3 { top: calc(50% + 74px);  left: calc(50% + 130px); animation-delay: 0.85s, 1.8s; }
.hd-n4 { top: calc(50% + 156px); left: calc(50% - 4px);   animation-delay: 1.0s, 2.0s; }
.hd-n5 { top: calc(50% + 74px);  left: calc(50% - 138px); animation-delay: 1.15s, 2.2s; }
.hd-n6 { top: calc(50% - 82px);  left: calc(50% - 138px); animation-delay: 1.3s, 2.4s; }
@keyframes hdNodeIn {
  from { opacity: 0; transform: rotate(45deg) scale(0); }
  to   { opacity: 1; transform: rotate(45deg) scale(1); }
}
@keyframes hdNodePulse {
  0%, 100% { opacity: 0.6; transform: rotate(45deg) scale(1); }
  50%       { opacity: 1;   transform: rotate(45deg) scale(1.6); box-shadow: 0 0 6px rgba(21,145,224,0.5); }
}
@media (max-width: 960px) {
  .hd-n1 { top: calc(50% - 118px); left: calc(50% - 4px); }
  .hd-n2 { top: calc(50% - 59px);  left: calc(50% + 94px); }
  .hd-n3 { top: calc(50% + 55px);  left: calc(50% + 94px); }
  .hd-n4 { top: calc(50% + 114px); left: calc(50% - 4px); }
  .hd-n5 { top: calc(50% + 55px);  left: calc(50% - 100px); }
  .hd-n6 { top: calc(50% - 59px);  left: calc(50% - 100px); }
}

/* ============ WHO WE SERVE PHOTO CARDS (Homepage) ============ */
.who-serve-section {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.who-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.who-serve-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.who-serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.who-serve-card:hover img { transform: scale(1.05); }
.who-serve-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,50,120,0.8) 0%, rgba(10,22,40,0.3) 55%, transparent 100%);
}
.who-serve-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px,2.5vw,28px);
}
.who-serve-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 6px;
}
.who-serve-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px,1.5vw,19px);
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.who-serve-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
@media (max-width: 860px) {
  .who-serve-grid { grid-template-columns: repeat(2, 1fr); }
  .who-serve-card { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .who-serve-grid { grid-template-columns: 1fr 1fr; }
  .who-serve-card { aspect-ratio: 1/1; }
}

/* ============ PILLAR ICON SVG ============ */
.pillar-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.pillar-icon path,
.pillar-icon rect,
.pillar-icon polygon,
.pillar-icon circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.pillar:hover .pillar-icon { transform: rotate(45deg); }
.pillar:hover .pillar-icon path   { fill: #0078C8; stroke: none; }
.pillar:hover .pillar-icon rect   { fill: #0078C8; stroke: none; }
.pillar:hover .pillar-icon polygon { fill: #0078C8; stroke: none; }
.pillar:hover .pillar-icon circle { fill: #0078C8; stroke: none; }

/* ============ ECOSYSTEM SPOKE VIZ ============ */
.eco-section {
  background: var(--ink-2);
  padding: clamp(72px,9vw,120px) 0;
  overflow: hidden;
}
.eco-header {
  text-align: center;
  margin-bottom: 56px;
}
.eco-viz-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-svg {
  width: 100%;
  max-width: 1050px;
  overflow: visible;
}
.eco-spoke {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.eco-spoke.drawn { stroke-dashoffset: 0; }
.eco-node-g {
  opacity: 0;
  transform: scale(0.6);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.4s cubic-bezier(0.2,0.8,0.2,1), transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.eco-node-g.visible { opacity: 1; transform: scale(1); }
@keyframes ecoHubPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.45; }
}
.eco-hub-glow { animation: ecoHubPulse 2.8s ease-in-out infinite; }
@keyframes ecoNodeGlow {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.6; }
}
.eco-node-ring { animation: ecoNodeGlow 2.2s ease-in-out infinite; }

/* ============ MINI BRAND VIZ ============ */
.mini-viz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.mini-viz-pane {
  padding: 16px;
  border: 1px solid var(--rule);
}
.mini-viz-pane.is-before { background: var(--paper-2); }
.mini-viz-pane.is-after  { background: #fff; border-color: var(--blue); }
.mini-viz-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
  margin-bottom: 10px;
}
.mini-viz-pane.is-after .mini-viz-label { color: var(--blue); }
.mini-viz-pane svg { display: block; width: 100%; height: auto; }

/* ============ SOLUTION CAPABILITY CARDS ============ */
.sol-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}
@media (max-width: 860px) { .sol-caps { grid-template-columns: 1fr; } }

.sol-cap-card {
  background: #fff;
  padding: clamp(28px,3.5vw,44px) clamp(24px,3vw,36px);
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color 0.25s cubic-bezier(0.2,0.8,0.2,1), transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.25s;
}
.sol-cap-card:hover {
  border-top-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,120,200,0.1);
  z-index: 1;
}
.sol-cap-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sol-cap-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 2px;
}
.sol-cap-icon {
  width: 28px; height: 28px;
  color: var(--blue);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sol-cap-card:hover .sol-cap-icon { opacity: 1; }
.sol-cap-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px,1.6vw,20px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.sol-cap-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.sol-cap-ghost {
  position: absolute;
  bottom: -14px; right: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  color: rgba(0,120,200,0.04);
  pointer-events: none;
  user-select: none;
  transition: color 0.25s;
}
.sol-cap-card:hover .sol-cap-ghost { color: rgba(0,120,200,0.07); }

/* ============ SOLUTION PROOF / WHY IT WORKS ============ */
.sol-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px,6vw,96px);
  align-items: start;
}
@media (max-width: 860px) { .sol-proof-grid { grid-template-columns: 1fr; } }

.sol-proof-left {
  position: sticky;
  top: 48px;
}
.sol-proof-right {
  display: flex;
  flex-direction: column;
}
.sol-proof-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sol-proof-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.sol-proof-item-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  padding-top: 3px;
  flex-shrink: 0;
}
.sol-proof-item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ============ CONTACT PAGE V3 ============ */
.contact-v3-body {
  background: var(--ink);
  padding: clamp(72px,9vw,120px) 0;
}
.contact-v3-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px,5vw,72px);
  align-items: start;
}
@media (max-width: 900px) { .contact-v3-grid { grid-template-columns: 1fr; } }

.contact-v3-form-card {
  background: var(--paper);
  padding: clamp(36px,4.5vw,56px);
}
.contact-v3-form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px,2.4vw,34px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-v3-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}
.contact-v3-info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.contact-v3-info-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-v3-info-block:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.contact-v3-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 8px;
}
.contact-v3-info-val {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}
.contact-v3-info-link {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-v3-info-link:hover { color: var(--blue-bright); }
.contact-v3-steps {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-v3-steps-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact-v3-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
}
.contact-v3-step:first-of-type { padding-top: 0; }
.contact-v3-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  padding-top: 3px;
}
.contact-v3-step strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 3px;
}
.contact-v3-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin: 0;
}
.contact-v3-note {
  padding: 22px 0;
}
.contact-v3-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}
.contact-v3-explore {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.contact-v3-explore-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
  font-family: var(--font-display);
}
.contact-v3-explore-link:last-child { border-bottom: none; }
.contact-v3-explore-link:hover { color: var(--blue-bright); }

/* ============ SOLUTION PAGE — OVERVIEW GRID ============ */
.sol-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,80px);
  align-items: start;
}
@media (max-width: 768px) {
  .sol-overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============ MOBILE FIXES — SOLUTION PAGES ============ */
/* Fix sticky proof-left overlapping content on mobile */
@media (max-width: 860px) {
  .sol-proof-left {
    position: static;
  }
}

/* Sol-caps: single column on small mobile */
@media (max-width: 480px) {
  .sol-caps { grid-template-columns: 1fr; }
}

/* Hero on mobile: reduce padding */
@media (max-width: 600px) {
  .page-hero {
    padding-top: clamp(56px,8vw,80px);
    padding-bottom: clamp(32px,5vw,48px);
  }
  .page-hero h1 { font-size: clamp(28px,7vw,40px); }
  .page-hero-sub { font-size: 15px; }
}

/* Proof items on mobile */
@media (max-width: 480px) {
  .sol-proof-item {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 18px 0;
  }
}

/* Related cards: reduce gap on mobile */
@media (max-width: 480px) {
  .related-cards { gap: 12px; }
  .related-card { padding: clamp(20px,4vw,32px); }
}

/* Prevent body overflow on mobile */
@media (max-width: 880px) {
  body { overflow-x: hidden; }
}

/* Contact form on mobile */
@media (max-width: 600px) {
  .contact-v3-form-card { padding: clamp(24px,5vw,36px); }
}

/* Footer bottom on mobile */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal-sep { display: none; }
  .footer-legal-links { display: flex; flex-direction: column; gap: 8px; align-items: center; }
}

/* Section padding on small mobile */
@media (max-width: 480px) {
  section { padding: clamp(48px,8vw,80px) 0; }
}

/* ============ SOLUTIONS PAGE ============ */
.sol-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,100px);
  align-items: center;
}
@media (max-width: 720px) {
  .sol-intro-grid { grid-template-columns: 1fr; gap: 28px; }
}

.sol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--rule);
}
@media (max-width: 800px) {
  .sol-cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .sol-cards-grid { grid-template-columns: 1fr; }
}

.sol-card {
  background: var(--paper);
  padding: clamp(28px,4vw,52px) clamp(20px,3vw,40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.sol-card:hover { background: #fff; }
.sol-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.sol-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px,1.7vw,22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.sol-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sol-card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.sol-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,96px);
  align-items: start;
}
@media (max-width: 720px) {
  .sol-why-grid { grid-template-columns: 1fr; gap: 36px; }
}

.sol-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sol-why-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sol-why-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--blue-bright);
  flex-shrink: 0;
  padding-top: 3px;
}
.sol-why-list li span:last-child {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ============ SITE-WIDE MOBILE SWEEP ============ */

/* Images never overflow */
img { max-width: 100%; height: auto; }

/* Breadcrumb wraps */
.breadcrumb { flex-wrap: wrap; }

/* Hero grid stacks on mobile */
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding-top: clamp(80px,12vw,120px); padding-bottom: clamp(60px,10vw,100px); }
  .hero h1 { font-size: clamp(36px,8vw,56px) !important; }
  .hero-sub { font-size: 16px; }
  .hero-support { font-size: 14px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-meta { grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 40px; }
}

/* Intro grid on homepage stacks */
@media (max-width: 720px) {
  .intro-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Pillars */
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr !important; }
  .pillars-header { grid-template-columns: 1fr !important; }
}

/* Why grid */
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Admin card */
@media (max-width: 600px) {
  .admin-card { grid-template-columns: 1fr !important; padding: 36px 24px !important; gap: 32px; }
}

/* Company cards */
@media (max-width: 600px) {
  .companies-grid { grid-template-columns: 1fr !important; }
  .company-card-full-inner { grid-template-columns: 1fr !important; gap: 24px; }
}

/* Two-col sections across all pages */
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Footer grid */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}

/* Page CTA buttons */
@media (max-width: 480px) {
  .page-cta-buttons { flex-direction: column; align-items: center; }
  .page-cta-buttons .btn-primary,
  .page-cta-buttons .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}

/* Proof row (metric cards) */
@media (max-width: 720px) {
  .proof-row { grid-template-columns: 1fr !important; gap: 12px; }
}

/* Solution icon cards grid */
@media (max-width: 480px) {
  .solution-cards-grid { grid-template-columns: 1fr !important; }
}

/* Benefits grid */
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Serve grid */
@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr !important; }
}

/* Who serve photo cards */
@media (max-width: 480px) {
  .who-serve-grid { grid-template-columns: 1fr 1fr !important; }
}

/* Stat bar */
@media (max-width: 480px) {
  .stat-bar .wrap { grid-template-columns: repeat(2,1fr) !important; }
}

/* Ecosystem viz */
@media (max-width: 600px) {
  .eco-svg { max-width: 100%; }
  .eco-header h2 { font-size: clamp(22px,6vw,32px); }
}

/* Table/form overflow */
@media (max-width: 600px) {
  .contact-v3-grid { grid-template-columns: 1fr !important; }
  .contact-form .form-two { grid-template-columns: 1fr !important; }
  .contact-v3-form-card h2 { font-size: clamp(20px,5vw,28px); }
}

/* Legal pages */
@media (max-width: 720px) {
  .legal-wrapper { grid-template-columns: 1fr !important; }
  .legal-toc { display: none; }
}

/* Solution overview image: hide on very small screens */
@media (max-width: 480px) {
  .sol-overview-grid > div:last-child { display: none; }
}

/* ============================================================
   ABOUT PAGE — layout & component classes
   ============================================================ */

/* Section label tighter gap on about page */
.about-label-strip { margin-bottom: 16px; }

/* Benefi callout: allow label to wrap on narrow screens */
@media (max-width: 600px) {
  .benefi-callout { flex-direction: column; gap: 12px; }
  .benefi-callout-label { white-space: normal; }
}

/* About story photo: reduce min-height on mobile */
@media (max-width: 600px) {
  .about-story-photo { min-height: 280px; }
}

/* ─── Ecosystem six-card grid ───────────────────────────── */
.about-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Card 01 (wide) spans first two columns */
.about-eco-card.wide { grid-column: span 2; }
/* Card 04 (tall) spans two rows */
.about-eco-card.tall { grid-row: span 2; }

.about-eco-card {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-eco-card.dark  { background: var(--ink);  color: #fff; }
.about-eco-card.light { background: #fff; border: 1px solid var(--rule); color: var(--ink); }
.about-eco-card.accent { background: var(--blue); color: #fff; }

/* Ghost number watermark */
.about-eco-ghost {
  position: absolute;
  top: -20px; right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 8vw, 120px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.about-eco-card.light .about-eco-ghost { color: rgba(10, 22, 40, 0.05); }

/* Eco card inner elements */
.about-eco-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 4px;
}
.about-eco-card.light  .about-eco-num  { color: var(--blue); }
.about-eco-card.accent .about-eco-num  { color: rgba(255, 255, 255, 0.75); }

.about-eco-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: inherit;
  margin: 0;
}

.about-eco-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.about-eco-card.light  .about-eco-desc { color: var(--muted); }
.about-eco-card.accent .about-eco-desc { color: rgba(255, 255, 255, 0.82); }

/* Tablet: 2-col, cancel spans */
@media (max-width: 900px) {
  .about-eco-grid { grid-template-columns: 1fr 1fr; }
  .about-eco-card.wide,
  .about-eco-card.tall { grid-column: auto; grid-row: auto; }
}
/* Mobile: 1-col */
@media (max-width: 560px) {
  .about-eco-grid { grid-template-columns: 1fr; }
}

/* ─── Our Companies grid ────────────────────────────────── */
.about-companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .about-companies-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .about-companies-grid { grid-template-columns: 1fr; }
}

.about-company-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.about-company-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.about-company-accent {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 8px;
}

.about-company-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-company-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.about-company-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   PARTNERS PAGE — responsive grids
   ============================================================ */

.partners-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}
.partners-intro-grid--tight { margin-bottom: 16px; }

@media (max-width: 768px) {
  .partners-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .partners-intro-grid--tight { margin-bottom: 16px; }
}

/* ============================================================
   OUR COMPANIES PAGE — responsive grids
   ============================================================ */

/* Intro dark section */
.companies-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 768px) {
  .companies-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Individual company rows (01, 02, 03) */
.company-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 768px) {
  .company-row-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Benefi name note section */
.companies-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 768px) {
  .companies-note-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Stack benefi callout below text on mobile */
  .companies-note-grid .benefi-callout {
    align-self: auto;
  }
}
