/* ============================================================================
   be.solid — shared design system
   Reconciled from the two standalone redesign pages (homepage + VMaaS) into one
   canonical stylesheet. All pages use these classes; per-page CSS should be rare.
   ========================================================================== */

/* ── FONTS (self-hosted — see migration.md GDPR note) ─────────────────────── */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/barlow-semi-condensed-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/fonts/barlow-semi-condensed-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('/fonts/barlow-semi-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/barlow-semi-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal; font-weight: 800; font-display: swap;
  src: url('/fonts/barlow-semi-condensed-800.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('/fonts/dm-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/fonts/dm-sans-500.woff2') format('woff2');
}

/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  --blue:      #008CCE;
  --blue-dark: #2E6098;
  --navy:      #0E2841;
  --navy-mid:  #1A3A5C;
  --blue-lt:   #DAE9F7;
  --blue-pale: #EBF5FC;
  --white:     #FFFFFF;
  --gray:      #6B7A8D;
  --gray-lt:   #F4F8FC;
  --text:      #1A2B3C;
  --r:         12px;
  --r-lg:      20px;
  --maxw:      1100px;
  --header-h:  68px;
}

/* ── RESET / BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Barlow Semi Condensed', sans-serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }

/* ── SITE HEADER / NAV ────────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 34px; width: auto; display: block; }

.site-nav .nav-list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-block; padding: 10px 14px;
  font-size: 14px; font-weight: 500; color: rgba(218,233,247,0.82);
  text-decoration: none; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-item > a:hover { color: var(--white); background: rgba(0,140,206,0.12); }
.nav-item > a.active { color: var(--white); }

.has-children > a::after {
  content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .7;
}

.submenu {
  list-style: none; position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--blue-lt);
  border-radius: var(--r); padding: 8px; margin-top: 6px;
  box-shadow: 0 12px 32px rgba(14,40,65,0.16);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-children:hover .submenu,
.has-children:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none;
  transition: background .15s, color .15s;
}
.submenu a:hover, .submenu a.active { background: var(--blue-pale); color: var(--blue-dark); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: none; cursor: pointer;
  background: transparent; padding: 10px; border-radius: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: var(--white);
  padding: 96px 40px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 75% 25%, rgba(0,140,206,0.2) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  border: 1.5px solid rgba(0,140,206,0.12);
  border-radius: 50%; pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,140,206,0.18);
  border: 1px solid rgba(0,140,206,0.35);
  color: var(--blue-lt);
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 800; letter-spacing: 0;
  margin-bottom: 20px; max-width: 820px;
}
.hero h1 em, .hero h1 span { color: var(--blue); font-style: normal; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(218,233,247,0.82);
  font-weight: 300; margin-bottom: 52px;
  max-width: 540px; line-height: 1.72;
}

.hero-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border-radius: var(--r); overflow: hidden; max-width: 800px;
}
.pillar { padding: 20px 24px; background: rgba(255,255,255,0.04); transition: background .2s; }
.pillar:hover { background: rgba(0,140,206,0.11); }
.pillar-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.pillar-val { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.35; }
.pillar-sub { margin-top: 5px; font-size: 12px; color: rgba(230, 236, 243, 0.55); font-weight: 400; }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--blue); padding: 16px 40px; }
.trust-bar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
  font-size: 15px; font-weight: 500; color: var(--white);
  letter-spacing: 0.01em; white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── SECTION SHELL ────────────────────────────────────────────────────────── */
.section { padding: 88px 40px; }
.bg-gray { background: var(--gray-lt); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; flex-shrink: 0; }

.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.bg-navy .section-title { color: var(--white); }

.section-lead { font-size: 16px; color: var(--gray); max-width: 600px; font-weight: 300; line-height: 1.75; }
.bg-navy .section-lead { color: rgba(218,233,247,0.72); }

/* ── CARDS (shared) ───────────────────────────────────────────────────────── */
.services-grid, .cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 48px;
}
/* 2-column variant for overview pages that show four service cards */
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { border-color: var(--blue-lt); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,140,206,0.08); }
.card:hover::before { transform: scaleX(1); }

/* Featured / highlight card */
.card.featured {
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--blue-pale) 0%, var(--white) 60%);
}
.card.featured::before { transform: scaleX(1); }
.card.featured:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,140,206,0.18); }

.card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  border: 1px solid rgba(0,140,206,0.25);
  padding: 3px 9px; border-radius: 100px; margin-bottom: 14px;
}
.card-badge::before { content: '★'; font-size: 9px; }

.card-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card.featured .card-icon { background: rgba(0,140,206,0.12); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.card p  { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  text-decoration: none; transition: gap .2s;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* Tag pills (used inside cards) */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.03em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--blue-pale); color: var(--blue-dark);
}

/* ── EXPERTISE (2-col icon list) ──────────────────────────────────────────── */
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 52px; }
.exp-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px; background: var(--gray-lt);
  border-radius: var(--r-lg); border: 1.5px solid transparent;
  transition: border-color .2s, transform .2s;
}
.exp-item:hover { border-color: var(--blue-lt); transform: translateY(-2px); }
.exp-icon {
  width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.exp-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.exp-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.exp-body  { font-size: 14px; color: var(--gray); line-height: 1.68; font-weight: 300; }

/* ── TEAM ─────────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 52px; }
.team-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px;
  padding: 28px; background: var(--gray-lt);
  border-radius: var(--r-lg); border: 1.5px solid transparent;
  transition: border-color .2s, transform .2s;
}
.team-card:hover { border-color: var(--blue-lt); transform: translateY(-2px); }
.team-card > div { width: 100%; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 16px; flex-shrink: 0;
  margin-bottom: 0;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Semi Condensed', sans-serif; font-weight: 800; font-size: 26px;
  letter-spacing: 0.02em;
  object-fit: cover; /* when the avatar is an <img> */
}
.team-name { font-size: 18px; font-weight: 700; color: var(--navy); }
.team-role { font-size: 13px; font-weight: 600; color: var(--blue); margin: 4px 0 8px; }
.team-bio  { font-size: 14px; color: var(--gray); line-height: 1.68; font-weight: 300; }

/* Small team tiles (role only) */
.team-mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 20px; margin-top: 48px; }
.team-mini { background: var(--gray-lt); border-radius: var(--r-lg); border: 1.5px solid transparent; padding: 26px 18px; text-align: center; transition: border-color .2s, transform .2s; }
.team-mini:hover { border-color: var(--blue-lt); transform: translateY(-2px); }
.team-mini-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 14px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; object-fit: cover; }
.team-mini-avatar svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.team-mini-role { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ── COMPETENCIES (labelled tag groups) ───────────────────────────────────── */
.comp-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin: 36px 0 14px;
}
.comp-label:first-child { margin-top: 40px; }
.tags-lg .tag { font-size: 13px; padding: 8px 16px; }

/* ── WHY (numbered grid on navy) ──────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg); overflow: hidden;
}
.why-item { padding: 32px 34px; background: rgba(255,255,255,0.03); transition: background .2s; }
.why-item:hover { background: rgba(0,140,206,0.09); }
.why-num { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 36px; font-weight: 800; color: rgba(0,140,206,0.25); line-height: 1; margin-bottom: 12px; }
.why-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-body  { font-size: 14px; color: rgba(218,233,247,0.65); line-height: 1.68; font-weight: 300; }

/* ── ADVANTAGES (auto-fill grid on navy) ──────────────────────────────────── */
.adv-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2px; margin-top: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg); overflow: hidden;
}
.adv { padding: 26px 28px; background: rgba(255,255,255,0.02); transition: background .2s; display: flex; gap: 16px; }
.adv:hover { background: rgba(0,140,206,0.09); }
.adv-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: rgba(0,140,206,0.14); border: 1px solid rgba(0,140,206,0.28);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.adv-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.adv-title { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.adv-body { font-size: 13px; color: rgba(218,233,247,0.62); line-height: 1.62; font-weight: 300; }

/* ── PROCESS (vertical timeline) ──────────────────────────────────────────── */
.process-track { margin-top: 56px; position: relative; }
.process-track::before {
  content: ''; position: absolute; left: 35px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--blue) 0%, var(--blue-lt) 100%);
}
.process-step { display: grid; grid-template-columns: 72px 1fr; gap: 26px; position: relative; }
.process-step + .process-step { margin-top: 2px; }
.step-num {
  width: 72px; height: 72px; flex-shrink: 0; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.step-num span { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--blue); }
.step-body { padding: 10px 0 42px; }
.process-step:last-child .step-body { padding-bottom: 0; }
.step-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.step-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.step-body p  { font-size: 15px; color: var(--gray); max-width: 580px; line-height: 1.72; }

/* ── ONBOARDING ACCORDION ─────────────────────────────────────────────────── */
.onboarding { background: var(--gray-lt); }
.ob-phases { margin-top: 52px; display: flex; flex-direction: column; gap: 20px; }
.ob-phase { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--blue-lt); transition: border-color .2s; }
.ob-phase:hover { border-color: rgba(0,140,206,0.4); }
.ob-phase-header { display: flex; align-items: center; gap: 20px; padding: 24px 28px; cursor: pointer; position: relative; user-select: none; }
.ob-phase-header::after { content: ''; position: absolute; bottom: 0; left: 28px; right: 28px; height: 1px; background: var(--blue-pale); opacity: 0; transition: opacity .25s; }
.ob-phase.open .ob-phase-header::after { opacity: 1; }
.ob-chevron { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.ob-chevron svg { width: 16px; height: 16px; stroke: var(--blue-dark); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.ob-phase.open .ob-chevron { background: var(--blue); }
.ob-phase.open .ob-chevron svg { stroke: var(--white); transform: rotate(180deg); }
.ob-phase-num { width: 44px; height: 44px; border-radius: 10px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ob-phase-num span { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 17px; font-weight: 800; color: var(--white); }
.ob-phase-meta { flex: 1; }
.ob-phase-title { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.ob-phase-sub { font-size: 12px; color: var(--gray); margin-top: 2px; font-weight: 300; }
.ob-phase-badge { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.badge-blue  { background: var(--blue-pale); color: var(--blue-dark); }
.badge-navy  { background: rgba(14,40,65,0.08); color: var(--navy); }
.badge-green { background: #E6F5EC; color: #1A6633; }
.badge-amber { background: #FFF4E0; color: #8A5200; }
.ob-steps { padding: 0 28px; display: flex; flex-direction: column; gap: 2px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.ob-phase.open .ob-steps { max-height: 2000px; padding: 20px 28px 24px; }
.ob-step { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--blue-pale); }
.ob-step:last-child { border-bottom: none; padding-bottom: 0; }
.ob-step-id { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue); padding-top: 2px; letter-spacing: 0.02em; }
.ob-step-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.ob-step-desc { font-size: 13px; color: var(--gray); line-height: 1.62; font-weight: 300; }
.ob-step-note { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 11px; color: #8A5200; background: #FFF4E0; padding: 3px 9px; border-radius: 100px; font-weight: 500; }
.ob-step-note::before { content: '⚑'; font-size: 10px; }

/* Launch banner (final onboarding phase) */
.ob-launch { background: var(--navy); border-radius: var(--r-lg); padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 20px; border: 1px solid rgba(0,140,206,0.25); }
.launch-item { display: flex; gap: 14px; align-items: flex-start; }
.launch-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 4px; }
.launch-title { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.launch-desc { font-size: 12px; color: rgba(218,233,247,0.62); font-weight: 300; line-height: 1.5; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.cta { background: var(--blue); padding: 80px 40px; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 34px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: transform .15s, opacity .15s;
  border: none; letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn-white   { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-blue    { background: var(--blue); color: var(--white); }

/* ── CLIENT LOGOS (reference strip) ───────────────────────────────────────── */
.clients-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 32px 56px; margin-top: 44px;
}
.clients-strip img {
  height: 56px; width: auto; max-width: 170px; object-fit: contain;
  opacity: 1
}

/* ── SERVICE LISTS (check-bullet lists inside cards/sections) ──────────────── */
.svc-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.svc-list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--gray); line-height: 1.6; font-weight: 300; }
.svc-list li::before {
  content: ''; position: absolute; left: 1px; top: 6px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.svc-list strong { color: var(--navy); font-weight: 600; }

/* ── SLA / SERVICE TABLE ──────────────────────────────────────────────────── */
.table-wrap { margin-top: 44px; overflow-x: auto; }
.svc-table {
  width: 100%; border-collapse: collapse; min-width: 520px;
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--blue-lt);
}
.svc-table th, .svc-table td { text-align: left; padding: 16px 22px; font-size: 14px; border-bottom: 1px solid var(--blue-pale); }
.svc-table th { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); background: var(--gray-lt); }
.svc-table td { color: var(--gray); font-weight: 300; }
.svc-table td:first-child { color: var(--navy); font-weight: 600; }
.svc-table .sla-react { color: var(--navy); font-weight: 600; white-space: nowrap; }
.svc-table tr:last-child td { border-bottom: none; }

/* ── PRICE TAG + SOLO (single centred) CARD ───────────────────────────────── */
.solo-card { max-width: 560px; margin: 48px auto 0; }
.price { font-family: 'Barlow Semi Condensed', sans-serif; font-weight: 800; color: var(--navy); font-size: 34px; line-height: 1; }
.price small { display: block; font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 13px; color: var(--gray); margin-top: 6px; letter-spacing: 0; }

/* ── LEGAL / TEXT PAGES ───────────────────────────────────────────────────── */
.legal-hero { background: var(--navy); color: var(--white); padding: 72px 40px 56px; position: relative; overflow: hidden; }
.legal-hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 480px; height: 480px;
  background: radial-gradient(circle at 75% 25%, rgba(0,140,206,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.legal-hero .inner { max-width: 760px; }
.legal-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; }
.legal-hero p { margin-top: 10px; font-size: 15px; font-weight: 300; color: rgba(218,233,247,0.8); }

.legal { padding: 64px 40px 88px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 24px; color: var(--navy); font-weight: 700; margin: 44px 0 14px; }
.legal h3 { font-size: 20px; color: var(--navy); font-weight: 700; margin: 36px 0 12px; }
.legal h4 { font-size: 16px; color: var(--navy); font-weight: 700; margin: 26px 0 8px; }
.legal > .legal-inner > :first-child { margin-top: 0; }
.legal p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 10px; }
.legal a { color: var(--blue); text-decoration: underline; word-break: break-word; }
.legal strong { color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 40px; text-align: center; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-line { font-size: 12px; color: rgba(218,233,247,0.38); }
.footer-nav { margin-top: 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; color: rgba(218,233,247,0.55); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--blue-lt); }

/* ── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge::before { animation: none; }
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .ob-launch { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 20px 20px; display: none;
  }
  .site-nav.open { display: block; }
  .site-nav .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-item > a { padding: 12px 14px; }
  .has-children > a::after { float: right; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: rgba(255,255,255,0.04);
    margin: 4px 0 8px; padding: 6px;
  }
  .submenu a { color: var(--blue-lt); }
  .submenu a:hover, .submenu a.active { background: rgba(0,140,206,0.16); color: var(--white); }
}

@media (max-width: 600px) {
  .hero, .section, .cta, .legal, .legal-hero { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding: 0 20px; }
  .trust-bar { padding: 12px 20px; }
  .trust-item { padding: 4px 16px; font-size: 12px; }
  .services-grid, .cards-grid, .services-grid.cols-2 { grid-template-columns: 1fr; }
  .hero-pillars { grid-template-columns: 1fr; }
  .process-track::before { left: 30px; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-num { width: 60px; height: 60px; }
  .ob-phase-header { flex-wrap: wrap; gap: 12px; }
  .clients-strip { gap: 22px 34px; }
  .clients-strip img { height: 32px; }
  .price { font-size: 28px; }
}
