/* ══════════════════════════════════════════════
   SASTAVA — Design System v2
   McKinsey-inspired editorial style
   Fonts: Playfair Display (display) + Inter (body) + Montserrat (labels)
══════════════════════════════════════════════ */

/* ── Contact Modal ── */
.cmodal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,34,56,.72);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.cmodal-overlay.open { display: flex; }
.cmodal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: cmodalIn .22s ease;
}
@keyframes cmodalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cmodal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: .2rem .4rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.cmodal-close:hover { color: var(--navy-dark); background: var(--off-white); }
.cmodal-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy-dark);
  margin-bottom: .25rem;
  padding-right: 2rem;
}
.cmodal-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.cmodal-strip {
  display: flex;
  gap: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: .85rem 1.25rem;
  margin-bottom: 1.75rem;
}
.cmodal-strip-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  font-family: var(--font-label);
  font-weight: 600;
}
.cmodal-strip-item span { color: var(--green); font-size: .9rem; }

/* ── Google Fonts loaded via HTML ── */

/* ── Tokens ── */
:root {
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label:    'Montserrat', sans-serif;

  --navy:          #1B3A5C;
  --navy-dark:     #0F2238;
  --navy-mid:      #243F65;
  --brand:         #F4A825;
  --brand-dark:    #D4891A;
  --brand-light:   #FEF3DC;
  --green:         #2D7A4F;
  --green-light:   #EAF5EE;

  --white:         #FFFFFF;
  --off-white:     #F7F7F5;
  --light-gray:    #E8E8E6;
  --mid-gray:      #B0B0AD;
  --text:          #1a1a1a;
  --text-muted:    #555550;

  --max-width:     1200px;
  --nav-h:         72px;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --shadow:        0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.12);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1.05rem; color: var(--text); line-height: 1.8; background: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
strong { font-weight: 700; }

/* ── Container ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── Section spacing ── */
section { padding: 6rem 0; }

/* ── Typography helpers ── */
.section-eyebrow {
  font-family: var(--font-label);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
  display: block; margin-bottom: 1rem;
}
.section-eyebrow.green { color: var(--green); }
.section-eyebrow.white { color: var(--brand); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}
.display-title.white { color: var(--white); }
.display-title span { color: var(--brand); font-style: italic; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); letter-spacing: -.01em;
}
.section-title.white { color: var(--white); }

.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.85; max-width: 640px;
  margin-top: .85rem;
}

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Divider ── */
.rule { border: none; border-top: 1px solid var(--light-gray); }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  height: var(--nav-h);
  overflow: visible;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; gap: 2.5rem;
  overflow: visible;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1px; text-decoration: none; line-height: 1; flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-label); font-weight: 900;
  font-size: 1.7rem; color: var(--brand);
  letter-spacing: .04em; line-height: 1;
}
.nav-logo-tagline {
  font-family: var(--font-body); font-size: .52rem;
  font-weight: 600; color: var(--navy);
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 0; list-style: none;
  margin-left: auto; align-items: center;
  overflow: visible;
  position: relative;
}
.nav-links a {
  font-family: var(--font-label); font-size: .78rem;
  font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0 1.25rem; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  margin-top: 3px;
}
.nav-links a:hover { color: var(--navy); border-bottom-color: var(--light-gray); }
.nav-links a.active { color: var(--navy); border-bottom-color: var(--brand); }
.nav-cta {
  margin-left: 1rem; flex-shrink: 0;
  font-family: var(--font-label); font-size: .75rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .65rem 1.4rem; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--white);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--brand); color: var(--navy); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--navy); display: block; }

/* ── NAV DROPDOWN ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: .35rem; cursor: pointer; }
.nav-has-dropdown > a::after { content: '▾'; font-size: .6rem; opacity: .6; margin-top: 1px; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 0px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 360px; padding: .75rem; z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--light-gray); border-top: 1px solid var(--light-gray);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-section { margin-bottom: .5rem; }
.nav-dropdown-section:last-child { margin-bottom: 0; }
.nav-dropdown-heading {
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); padding: .3rem .65rem .3rem; margin-bottom: .25rem;
}
.nav-dropdown-divider { border-top: 1px solid var(--light-gray); margin: .5rem 0; }
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: .85rem; padding: .6rem .75rem;
  border-radius: 8px; text-decoration: none; transition: background .15s;
  cursor: pointer;
}
.nav-dropdown-item:hover { background: var(--off-white); }
.nav-dropdown-item--soon { opacity: .5; pointer-events: none; }
.nav-dropdown-icon { font-size: 1.3rem; width: 32px; text-align: center; flex-shrink: 0; margin-top: .1rem; }
.nav-dropdown-item > span:last-child { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ndi-hd { display: flex; align-items: center; gap: .35rem; flex-wrap: nowrap; }
.nav-dropdown-item strong { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); font-family: var(--font-label); letter-spacing: .02em; line-height: 1.3; white-space: nowrap; }
.nav-dropdown-item small { display: block; font-size: .72rem; color: var(--text-muted); margin-top: .2rem; line-height: 1.4; }
.nav-dropdown-item .nd-tag { font-size: .6rem; background: var(--brand); color: var(--navy); font-weight: 700; padding: .1rem .4rem; border-radius: 10px; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; white-space: nowrap; }
.nav-dropdown-item .nd-soon { font-size: .6rem; background: var(--light-gray); color: var(--text-muted); font-weight: 600; padding: .1rem .4rem; border-radius: 10px; flex-shrink: 0; white-space: nowrap; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-label); font-weight: 700;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .8rem 1.75rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all .22s ease; text-decoration: none;
}
.btn-primary { background: var(--brand); color: var(--navy); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,168,37,.35); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #236040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,79,.3); }
.btn-lg { padding: 1rem 2.25rem; font-size: .88rem; }
.btn-arrow::after { content: ' →'; }

/* ══════════════════════════════════════
   HERO — full-bleed navy
══════════════════════════════════════ */
.hero {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
  padding: 0;
}
/* Subtle geometric accent */
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  position: relative; z-index: 1;
}
.hero-content { padding: 5.5rem 0 4rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-label); font-size: .68rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 2rem;
}
.hero-badge svg { flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); letter-spacing: -.02em;
  margin-bottom: 1.75rem;
}
.hero-title span { color: var(--brand); font-style: italic; }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  line-height: 1.85; max-width: 500px;
  margin-bottom: 0;
}

/* Stats strip */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat {
  flex: 1; padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
  margin-right: 1.5rem;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--brand); line-height: 1;
  margin-bottom: .3rem;
}
.hero-stat-label {
  font-family: var(--font-label);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Right column — service cards */
.hero-visual {
  padding: 4rem 0 3.5rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.hero-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  transition: background .22s, transform .22s, border-color .22s;
  cursor: default;
}
.hero-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(244,168,37,.4);
  transform: translateX(4px);
}
.hero-card-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-card-title {
  font-family: var(--font-label);
  font-weight: 700; font-size: .9rem; color: var(--white);
  margin-bottom: .2rem;
}
.hero-card-sub { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.hero-card-tag {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--font-label);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
}

/* ══════════════════════════════════════
   WHO WE SERVE
══════════════════════════════════════ */
.segments { background: var(--off-white); }
.segments .container > .center { margin-bottom: 3.5rem; }
.segments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--light-gray);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-lg); overflow: hidden;
}
.segment-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background .2s;
}
.segment-card:hover { background: var(--off-white); }
.segment-icon { font-size: 2rem; margin-bottom: 1rem; }
.segment-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: .75rem;
  line-height: 1.3;
}
.segment-desc {
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   4-STEP PROCESS (on dark bg)
══════════════════════════════════════ */
.cta-banner {
  background: var(--navy); padding: 6rem 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -150px; right: -150px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-label {
  font-family: var(--font-label); font-size: .72rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); display: block; margin-bottom: .75rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 1rem; letter-spacing: -.01em;
}
.cta-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 0; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-actions .btn { transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.cta-actions .btn:hover { transform: translateY(-4px); }
.cta-actions .btn-primary:hover { box-shadow: 0 12px 32px rgba(244,168,37,.4); }

/* Process row */
.process-row { display: flex; align-items: stretch; gap: 1rem; flex-wrap: nowrap; overflow-x: auto; }
.process-step {
  flex: 1; min-width: 200px; padding: 2rem 1.5rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); text-align: center;
  position: static;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.process-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: var(--navy);
  font-family: var(--font-label); font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.process-step:hover .process-num { transform: scale(1.15); box-shadow: 0 6px 18px rgba(244,168,37,.5); }
.process-step-title { font-family: var(--font-label); font-weight: 700; color: var(--white); font-size: .92rem; margin-bottom: .45rem; }
.process-step-desc { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.process-arrow { display: flex; align-items: center; color: var(--brand); font-size: 1.4rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════ */
.page-header {
  background: var(--navy-dark); padding: 5rem 0 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin: .75rem 0 1rem;
  letter-spacing: -.02em;
}
.page-header-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 600px; margin: 0 auto; line-height: 1.8;
}

/* ══════════════════════════════════════
   PBS CARD (Services page)
══════════════════════════════════════ */
.pbs-section { background: var(--white); padding: 5rem 0; }
.pbs-card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--navy-dark); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.pbs-left {
  padding: 3.5rem; border-right: 1px solid rgba(255,255,255,.08);
}
.pbs-eyebrow {
  font-family: var(--font-label); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
}
.pbs-main-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.pbs-value {
  font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem;
}
.pbs-segments-label {
  font-family: var(--font-label); font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .85rem;
}
.pbs-segments { display: flex; flex-wrap: wrap; gap: .5rem; }
.pbs-seg {
  font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .9rem; border-radius: 100px;
}

.pbs-right { padding: 3.5rem; }
.pbs-tabs-header { margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.pbs-tabs-eyebrow {
  font-family: var(--font-label); font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .6rem;
}
.pbs-tabs-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); line-height: 1.25; margin-bottom: .65rem;
}
.pbs-tabs-sub { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.pbs-tabs { display: flex; flex-direction: column; gap: .5rem; }
.pbs-tab {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: 0;
  cursor: pointer; text-align: left; width: 100%;
  overflow: hidden;
  transition: background .2s, border-color .2s;
}
.pbs-tab:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13); }
.pbs-tab:hover .pbs-tab-num { opacity: 1; }
.pbs-tab.active { background: var(--card-bg, rgba(244,168,37,.12)); border-color: var(--card-col, var(--brand)); }
.pbs-tab.active .pbs-tab-num { opacity: 1; }
.pbs-tab-num {
  font-family: var(--font-label); font-size: .68rem; font-weight: 700;
  color: var(--white);
  background: var(--card-col, rgba(255,255,255,.25));
  min-width: 3.25rem;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem .75rem;
  opacity: .82;
  flex-shrink: 0;
  transition: opacity .2s;
}
.pbs-tab-name { flex: 1; font-size: .88rem; font-weight: 600; color: var(--white); padding: 1rem 1rem; align-self: center; }
.pbs-tab-arrow { color: var(--card-col, var(--brand)); font-size: .9rem; flex-shrink: 0; padding: 1rem 1.25rem 1rem 0; align-self: center; }

/* ══════════════════════════════════════
   MODALS
══════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,40,.75); backdrop-filter: blur(4px);
  z-index: 999; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--white); border-radius: var(--radius-xl);
  max-width: 880px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.08); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; z-index: 2;
  transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.16); }
.modal-header { padding: 2.5rem; }
.modal-eyebrow {
  font-family: var(--font-label); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: .75rem;
}
.modal-title {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem; line-height: 1.2;
}
.modal-subtitle { font-size: .95rem; color: rgba(255,255,255,.75); }
.modal-body { padding: 2.5rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.modal-section-label {
  font-family: var(--font-label); font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
}
.modal-problem { font-size: .9rem; color: var(--text-muted); line-height: 1.8; }
.modal-delivers-full { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; padding-left: 0; list-style: none; }
.modal-delivers-full li {
  font-size: .88rem; color: var(--text-muted); line-height: 1.7;
  padding-left: 1rem; position: relative;
}
.modal-delivers-full li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--brand); font-weight: 700;
}
.modal-sectors { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .5rem; }
.modal-badge {
  font-size: .78rem; font-weight: 600;
  background: var(--brand-light); color: var(--brand-dark);
  padding: .3rem .8rem; border-radius: 100px;
}
.modal-timeline { display: flex; flex-direction: column; gap: .65rem; margin-top: .5rem; }
.modal-timeline-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.modal-timeline-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.modal-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.75rem;
  border-top: 1px solid var(--light-gray);
}
.modal-cta-text { font-size: .92rem; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════
   SMART SUPPORT SERVICES (Vypar)
══════════════════════════════════════ */
.sss-section { background: var(--off-white); padding: 5rem 0; }
.sss-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--light-gray);
  overflow: hidden;
}
.sss-header {
  background: var(--brand); padding: 1rem 2.5rem;
  display: flex; align-items: center;
}
.sss-header-label {
  font-family: var(--font-label); font-weight: 800;
  font-size: 1rem; color: #1a1a1a;
  letter-spacing: .04em; text-transform: uppercase;
}
.sss-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; padding: 3rem 2.5rem; align-items: start;
}
.sss-title {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--navy); font-weight: 700; margin-bottom: 1rem; line-height: 1.25;
}
.sss-desc { font-size: .95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.sss-right { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; }
.sss-features { display: flex; flex-direction: column; gap: 1.25rem; }
.sss-feature { display: flex; gap: .9rem; align-items: flex-start; }
.sss-feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.sss-feature-title { font-weight: 700; font-size: .9rem; color: var(--white); margin-bottom: .25rem; }
.sss-feature-desc { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--white); padding: 6rem 0; }
.faq-section details {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s;
}
.faq-section details[open] { border-color: var(--brand); background: var(--white); }
.faq-section summary {
  font-family: var(--font-label); font-weight: 700;
  color: var(--navy); font-size: .95rem;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-section summary span { color: var(--brand); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
.faq-section details p {
  margin-top: 1rem; font-size: .92rem;
  color: var(--text-muted); line-height: 1.8;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: rgba(255,255,255,.3); }

.about-hero {
  background: var(--navy-dark); padding: 5rem 0 6rem;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; }

/* Full-width intro */
.about-intro { text-align: center; max-width: 820px; margin: 0 auto 4.5rem; }
.about-eyebrow {
  font-family: var(--font-label); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); display: inline-block; margin-bottom: 1rem;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -.02em;
}
.about-heading-accent { color: var(--brand); font-style: italic; }
.about-lead { font-size: 1.1rem; color: rgba(255,255,255,.65); line-height: 1.85; max-width: 680px; margin: 0 auto; }

/* Two-column grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.about-diff-label {
  font-family: var(--font-label); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.1rem;
  padding-bottom: .65rem; border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.about-body-text { font-size: .98rem; color: rgba(255,255,255,.65); line-height: 1.9; margin-bottom: 1.1rem; }
.about-stats-row {
  display: flex; margin-top: 2.5rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); overflow: hidden;
}
.about-stat { flex: 1; padding: 1.5rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--brand); line-height: 1; margin-bottom: .3rem;
}
.about-stat-lbl {
  font-family: var(--font-label); font-size: .65rem; color: rgba(255,255,255,.5);
  font-weight: 600; letter-spacing: .06em;
}

/* Promise card */
.about-promise-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.about-promise-header {
  background: var(--brand); padding: 1rem 1.75rem;
  display: flex; align-items: center; gap: .65rem;
}
.about-promise-icon { font-size: 1.1rem; }
.about-promise-title {
  font-family: var(--font-label); font-weight: 800;
  font-size: .9rem; color: #1a1a1a;
  letter-spacing: .04em; text-transform: uppercase;
}
.about-promise-list { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-promise-item { display: flex; gap: 1rem; align-items: flex-start; }
.about-promise-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,168,37,.15); border: 1.5px solid var(--brand);
  color: var(--brand); font-family: var(--font-label);
  font-weight: 800; font-size: .82rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.about-promise-name { font-family: var(--font-label); font-weight: 700; font-size: .92rem; color: var(--white); margin-bottom: .3rem; line-height: 1.3; }
.about-promise-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* Pillars section */
.about-pillars { background: var(--white); padding: 6rem 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.pillar-card {
  padding: 2.25rem; border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand); }
.pillar-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.pillar-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.pillar-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }

/* Contact section */
.contact { background: var(--off-white); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: .5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-label { font-family: var(--font-label); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.contact-item-val { font-size: .9rem; color: var(--text); }

/* Form */
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-label); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: .92rem; color: var(--text); background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success { display: none; margin-top: 1rem; padding: 1rem 1.25rem; background: var(--green-light); color: var(--green); border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; }
.form-success.show { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy-dark); padding: 4rem 0 2rem; color: rgba(255,255,255,.5); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-grid > div:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo-block { display: flex; flex-direction: column; align-items: center; gap: 3px; margin-bottom: 1rem; }
.footer-logo-name { font-family: var(--font-label); font-weight: 900; font-size: 1.6rem; color: var(--brand); letter-spacing: .04em; line-height: 1; }
.footer-logo-tagline { font-family: var(--font-body); font-size: .52rem; font-weight: 600; color: var(--green); letter-spacing: .14em; text-transform: uppercase; }
.footer-brand-desc { font-size: .82rem; line-height: 1.75; max-width: 240px; text-align: center; margin: 0 auto; }
.footer-heading { font-family: var(--font-label); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--white); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-right a:hover { color: var(--brand); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem 0 3rem; }
  .pbs-card { grid-template-columns: 1fr; }
  .pbs-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .sss-body { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  section { padding: 4rem 0; }
  .segments-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .process-row { flex-direction: column; gap: .75rem; }
  .process-arrow { display: none; }
  .process-step { border-radius: var(--radius) !important; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 1rem 2rem; border-bottom: 1px solid var(--light-gray); gap: 0; box-shadow: var(--shadow); }
  .nav-links.open a { height: auto; padding: .85rem 0; border-bottom: none; border-top: 1px solid var(--light-gray); }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .pbs-left, .pbs-right { padding: 2rem 1.5rem; }
  .modal-card { max-height: 95vh; }
  .modal-header { padding: 1.75rem; }
  .modal-body { padding: 1.75rem; }
  .sss-body { padding: 1.75rem 1.5rem; }
  .sss-header { padding: .75rem 1.5rem; }
  .about-intro { text-align: left; }
  .about-lead { margin: 0; }
  .not-section { flex-direction: column; }
  .not-left-inner { padding: 3rem 1.5rem; }
  .not-right-inner { padding: 3rem 1.5rem; }
  .not-heading { font-size: 2rem; }
}

/* ── What We Are Not — Split Panel ── */
.not-section {
  display: flex;
  width: 100%;
}
.not-left {
  flex: 1;
  background: var(--navy-dark);
}
.not-left-inner {
  padding: 4rem 4rem;
}
.not-right {
  flex: 1;
  background: var(--white);
}
.not-right-inner {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.not-eyebrow-light {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: .85;
}
.not-eyebrow-dark {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.not-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: .5rem 0 .75rem;
}
.not-subtext {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.not-list { display: flex; flex-direction: column; }
.not-item {
  display: flex;
  gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: flex-start;
}
.not-item-last { border-bottom: none; }
.not-x {
  color: var(--brand);
  font-size: .85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .25rem;
  width: 1rem;
  text-align: center;
}
.not-label {
  display: block;
  color: var(--white);
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.not-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
}
.not-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.5;
  border-left: 4px solid var(--brand);
  padding-left: 1.25rem;
  margin: .75rem 0 1.5rem;
}
.not-checklist { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.not-check-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.not-check {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.not-divider { border-top: 1px solid var(--light-gray); margin-bottom: 1.5rem; }
.not-cta-label {
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
