/* ============================================================
   GrowthStack IT — Hi-Fi Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A2B3C;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── Tokens ── */
:root {
  --navy:        #1A2B3C;
  --navy-dark:   #0F1B29;
  --navy-700:    #243447;
  --teal:        #2A9D8F;
  --teal-hover:  #248578;
  --teal-press:  #1F6F66;
  --teal-200:    #BFE6E0;
  --teal-100:    #DCF2EE;
  --teal-50:     #EDF8F6;
  --slate-600:   #2D3A4A;
  --slate-500:   #475569;
  --slate-400:   #64748B;
  --slate-300:   #94A3B8;
  --slate-200:   #CBD5E1;
  --slate-100:   #E2E8F0;
  --slate-50:    #F1F5F9;
  --bg-mist:     #F5F7FA;

  --font-d: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-b: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 9999px;

  --sh-xs: 0 1px 2px rgba(15,27,41,.05);
  --sh-sm: 0 1px 2px rgba(15,27,41,.06), 0 1px 3px rgba(15,27,41,.04);
  --sh-md: 0 4px 6px -1px rgba(15,27,41,.07), 0 2px 4px -2px rgba(15,27,41,.05);
  --sh-lg: 0 10px 20px -8px rgba(15,27,41,.12), 0 4px 8px -4px rgba(15,27,41,.06);
  --sh-xl: 0 24px 48px -16px rgba(15,27,41,.20), 0 8px 16px -8px rgba(15,27,41,.08);
  --sh-teal: 0 8px 24px -8px rgba(42,157,143,.35);

  --max-w: 1200px;
}

/* ── Page transition ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: fadeUp .22s ease-out both; }

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

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-100);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-brand img { height: 30px; width: auto; display: block; }
.nav-wordmark {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-wordmark span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links button {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  border-radius: var(--r-md);
  transition: color .15s, background .15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
}
.nav-links button:hover { color: var(--navy); background: var(--slate-50); }
.nav-links button.active { color: var(--teal); background: var(--teal-50); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   LOGOMARK (CSS fallback when SVG not available)
   ───────────────────────────────────────────────────────────── */
.logomark {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  flex-shrink: 0;
}
.logomark i {
  display: block; font-style: normal;
  width: 12px; height: 12px;
  background: var(--slate-600);
  border-radius: 3px;
}
.logomark i.t { background: var(--teal); transform: rotate(12deg); }
.logomark.lg i { width: 20px; height: 20px; border-radius: 5px; }
.logomark.xl i { width: 28px; height: 28px; border-radius: 7px; }
.logomark.white i { background: rgba(255,255,255,.7); }
.logomark.white i.t { background: var(--teal); }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer; transition: all .15s ease;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: var(--sh-teal);
}
.btn-primary:hover {
  background: var(--teal-hover); border-color: var(--teal-hover);
  box-shadow: 0 12px 32px -8px rgba(42,157,143,.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: #fff; color: var(--navy); border-color: var(--slate-200);
  box-shadow: var(--sh-sm);
}
.btn-secondary:hover {
  border-color: var(--slate-300); box-shadow: var(--sh-md); transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4);
}
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-dark); }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-lg { font-size: 16px; padding: 15px 30px; }
.btn-full { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   CHIPS
   ───────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
}
.chip-teal {
  background: var(--teal-50); color: var(--teal);
  border: 1px solid rgba(42,157,143,.2);
}
.chip-teal::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}
.chip-navy { background: rgba(26,43,60,.08); color: var(--navy); }

/* ─────────────────────────────────────────────────────────────
   EYEBROW
   ───────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-b); font-weight: 600; font-size: 11px;
  color: var(--teal); letter-spacing: .15em; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────────────────── */
.section      { padding: 88px 0; }
.section-sm   { padding: 60px 0; }
.section-mist { background: var(--bg-mist); }
.section-navy { background: var(--navy); }

.section-head         { margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(34px, 3.5vw, 46px);
  color: var(--navy); letter-spacing: -0.03em; line-height: 1.05;
  margin-top: 10px; margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--slate-500); max-width: 560px; line-height: 1.65; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }
.section-head.on-dark h2 { color: #fff; }
.section-head.on-dark p  { color: rgba(255,255,255,.65); }

/* ─────────────────────────────────────────────────────────────
   HERO — HOME
   ───────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  /* JPG fallback for older browsers; WebP via image-set where supported */
  background: url('assets/hero.jpg') center/cover no-repeat;
  background-image: image-set(
    url('assets/hero.webp') type('image/webp'),
    url('assets/hero.jpg') type('image/jpeg')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 108px 0 0;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,22,35,.90) 0%, rgba(15,27,41,.78) 60%, rgba(10,22,35,.92) 100%);
}
.home-hero .container { position: relative; z-index: 1; }
.hero-inner {
  text-align: center; max-width: 840px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,157,143,.15); border: 1px solid rgba(42,157,143,.3);
  color: #6FC8BC; padding: 6px 16px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-h1 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(48px, 6.5vw, 76px);
  line-height: 1.01; letter-spacing: -0.04em; color: #fff;
  margin-bottom: 22px;
}
.hero-body {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.72);
  max-width: 540px; margin: 0 auto 36px;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; align-items: stretch;
  justify-content: center;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-radius: 0 0 0 0;
  background: rgba(10,22,35,.5);
  backdrop-filter: blur(8px);
}
.hero-stat {
  flex: 1; text-align: center;
  padding: 24px 20px;
}
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-stat .n {
  font-family: var(--font-d); font-weight: 800; font-size: 30px;
  color: #fff; letter-spacing: -0.03em; line-height: 1.1;
}
.hero-stat .n.accent { color: #6FC8BC; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ─────────────────────────────────────────────────────────────
   LOGO STRIP
   ───────────────────────────────────────────────────────────── */
.logo-strip {
  background: var(--bg-mist);
  border-bottom: 1px solid var(--slate-100);
  padding: 28px 0;
}
.logo-strip .label {
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--slate-400); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.logo-strip .logos {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.logo-strip .logos span {
  font-family: var(--font-d); font-weight: 700; font-size: 16px;
  color: var(--slate-300); letter-spacing: -0.3px;
  transition: color .2s;
}
.logo-strip .logos span:hover { color: var(--slate-400); }

/* ─────────────────────────────────────────────────────────────
   PILLAR CARDS (2×2)
   ───────────────────────────────────────────────────────────── */
.pillar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.pillar-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pillar-card:hover {
  box-shadow: var(--sh-lg); border-color: var(--teal-200);
  transform: translateY(-3px);
}
.pillar-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.pillar-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; font-size: 14px; color: var(--teal);
}
.pillar-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-50);
  border: 1px solid rgba(42,157,143,.15); padding: 4px 10px;
  border-radius: var(--r-pill);
}
.pillar-card h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 24px;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 4px;
}
.pillar-focus {
  font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 20px;
}
.pillar-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.pillar-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate-500); line-height: 1.4;
}
.check-circle {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.check-circle svg { display: block; }
.pillar-outcome {
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.15);
  border-radius: var(--r-md); padding: 14px 16px; margin-top: auto;
}
.pillar-outcome .out-label {
  font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 4px;
}
.pillar-outcome .out-value {
  font-family: var(--font-d); font-weight: 700; font-size: 18px; color: var(--navy);
}
.pillar-detail-link {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; padding: 0; margin-top: 16px; cursor: pointer;
  font-family: var(--font-b); font-size: 14px; font-weight: 600;
  color: var(--teal); transition: color .15s;
}
.pillar-detail-link:hover { color: var(--navy); }

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.step-num {
  font-family: var(--font-d); font-weight: 800; font-size: 48px;
  color: var(--teal); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 18px; opacity: .4;
}
.step-card h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 22px;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.02em;
}
.step-card p { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   FEATURE TABLE
   ───────────────────────────────────────────────────────────── */
.feature-table-wrap {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--sh-md); margin-top: 56px;
}
.ft-header {
  display: grid;
  padding: 18px 28px;
  background: var(--bg-mist);
  border-bottom: 1px solid var(--slate-100);
  align-items: center;
}
.ft-header .ft-label {
  font-family: var(--font-d); font-weight: 700; font-size: 20px; color: var(--navy);
}
.ft-header .ft-col {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-align: center;
  color: var(--teal);
}
.ft-header .ft-col-featured {
  background: var(--navy); color: #fff;
  padding: 5px 10px; border-radius: var(--r-md);
  display: inline-block; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ft-row {
  display: grid; padding: 13px 28px;
  align-items: center;
  border-bottom: 1px solid var(--slate-50);
  transition: background .1s;
}
.ft-row:last-child { border-bottom: none; }
.ft-row:hover { background: var(--slate-50); }
.ft-feature { font-size: 14px; color: var(--slate-600); font-weight: 500; }
.ft-cell { text-align: center; font-size: 17px; }
.ft-check { color: var(--teal); font-weight: 700; }
.ft-no { color: var(--slate-300); }
.ft-text { font-size: 12px; font-weight: 700; color: var(--navy); text-align: center; }
.ft-text-f { font-size: 12px; font-weight: 700; color: var(--teal); text-align: center; }

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xs);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-d); font-weight: 600; font-size: 16px; color: var(--navy);
  transition: background .15s;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q.open { background: var(--slate-50); }
.faq-icon {
  width: 26px; height: 26px; border-radius: var(--r-sm);
  background: var(--teal-50); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; color: var(--teal);
  transition: background .15s, transform .2s;
  font-family: var(--font-b);
}
.faq-icon.open { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a {
  padding: 4px 24px 20px;
  font-size: 15px; color: var(--slate-500); line-height: 1.65;
  border-top: 1px solid var(--slate-50);
}

/* ─────────────────────────────────────────────────────────────
   PRICING CARDS
   ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.pricing-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-2xl); padding: 32px;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.pricing-card.featured {
  background: var(--navy); border-color: var(--navy);
  box-shadow: var(--sh-xl); transform: translateY(-10px);
  position: relative;
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-tier {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.pricing-name {
  font-family: var(--font-d); font-weight: 800; font-size: 28px;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px;
}
.featured .pricing-name { color: #fff; }
.pricing-sub { font-size: 14px; color: var(--slate-400); margin-bottom: 24px; line-height: 1.5; }
.featured .pricing-sub { color: rgba(255,255,255,.55); }
.pricing-price-row { display: flex; align-items: baseline; gap: 6px; }
.pricing-amount {
  font-family: var(--font-d); font-weight: 800; font-size: 52px;
  color: var(--navy); letter-spacing: -0.04em; line-height: 1;
}
.featured .pricing-amount { color: #fff; }
.pricing-per { font-size: 14px; color: var(--slate-400); }
.featured .pricing-per { color: rgba(255,255,255,.5); }
.pricing-divider { height: 1px; background: var(--slate-100); margin: 22px 0; }
.featured .pricing-divider { background: rgba(255,255,255,.14); }
.pricing-features {
  flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px;
}
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--slate-500); line-height: 1.4;
}
.featured .pricing-feature { color: rgba(255,255,255,.78); }
.p-check {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.p-check.muted { background: var(--slate-200); }
.featured .p-check.muted { background: rgba(255,255,255,.2); }
.pricing-annual-note {
  font-size: 12px; color: var(--slate-400); margin-top: 6px;
}
.featured .pricing-annual-note { color: rgba(255,255,255,.4); }

/* billing toggle */
.billing-toggle-wrap { text-align: center; margin-bottom: 48px; }
.billing-toggle {
  display: inline-flex; background: var(--slate-100);
  border-radius: var(--r-pill); padding: 4px; gap: 2px;
}
.tog-btn {
  padding: 9px 24px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; color: var(--slate-500);
  background: none; border: none; cursor: pointer; transition: all .15s;
  font-family: var(--font-b);
}
.tog-btn.active {
  background: #fff; color: var(--navy); box-shadow: var(--sh-sm);
}
.save-note { font-size: 13px; color: var(--teal); font-weight: 600; }

/* custom band */
.custom-band {
  margin-top: 40px; background: var(--bg-mist);
  border: 1px solid var(--slate-100); border-radius: var(--r-xl);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  box-shadow: var(--sh-sm);
}
.custom-band h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 24px;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px;
}
.custom-band p { font-size: 14px; color: var(--slate-500); }
.trust-chips { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-mist);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--slate-100);
}
.page-hero h1 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(42px, 5vw, 60px);
  color: var(--navy); letter-spacing: -0.035em; line-height: 1.02;
  max-width: 780px; margin-top: 12px; margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: var(--slate-500); max-width: 560px; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   STORY CHAPTERS (ABOUT)
   ───────────────────────────────────────────────────────────── */
.story-chapter {
  display: grid; gap: 52px; align-items: center;
  padding: 56px 0; border-top: 1px solid var(--slate-100);
}
.story-chapter:first-child { border-top: none; padding-top: 0; }
.story-chapter.dir-left  { grid-template-columns: 1.1fr 1fr; }
.story-chapter.dir-right { grid-template-columns: 1fr 1.1fr; }
.story-ch-num {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.story-chapter h2 {
  font-family: var(--font-d); font-weight: 800; font-size: 42px;
  color: var(--navy); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px;
}
.story-chapter p { font-size: 17px; color: var(--slate-500); line-height: 1.65; max-width: 480px; }
.story-img {
  width: 100%; border-radius: var(--r-xl);
  aspect-ratio: 16/10; object-fit: cover;
  box-shadow: var(--sh-xl);
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   OUR APPROACH (navy dark section)
   ───────────────────────────────────────────────────────────── */
.approach-section { padding: 92px 0; }
.approach-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: flex-start;
}
.approach-section .eyebrow { color: rgba(42,157,143,.9); }
.approach-section h2 {
  font-family: var(--font-d); font-weight: 800; font-size: 44px;
  color: #fff; letter-spacing: -0.03em; line-height: 1.05; margin-top: 12px;
}
.approach-items { display: flex; flex-direction: column; }
.approach-item {
  display: flex; gap: 22px; padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); align-items: flex-start;
}
.approach-item:first-child { padding-top: 0; }
.approach-item:last-child  { border-bottom: none; padding-bottom: 0; }
.approach-num {
  font-family: var(--font-d); font-weight: 800; font-size: 28px;
  color: var(--teal); line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.approach-item h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 20px;
  color: #fff; letter-spacing: -0.01em; margin-bottom: 5px;
}
.approach-item p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────
   PARTNERS (OPERATORS BEHIND)
   ───────────────────────────────────────────────────────────── */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--r-xl);
  padding: 28px; display: grid; grid-template-columns: 100px 1fr;
  gap: 22px; align-items: center;
  box-shadow: var(--sh-sm); transition: box-shadow .2s, transform .2s;
}
.partner-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.partner-icon {
  width: 100px; height: 100px; border-radius: var(--r-xl);
  background: var(--teal-50); border: 2px solid var(--teal-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.partner-icon svg { width: 40px; height: 40px; stroke-width: 1.5; }
.partner-name {
  font-family: var(--font-d); font-weight: 700; font-size: 22px;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 3px;
}
.partner-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.partner-bio { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: flex-start; }
.contact-form-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-2xl); padding: 44px; box-shadow: var(--sh-md);
}
.contact-form-card h2 {
  font-family: var(--font-d); font-weight: 800; font-size: 32px;
  color: var(--navy); letter-spacing: -0.025em; margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 15px; color: var(--slate-500); margin-bottom: 36px; line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field:last-of-type { margin-bottom: 0; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-mist); border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md); padding: 13px 16px;
  font-size: 15px; font-family: var(--font-b); color: var(--navy);
  transition: border-color .15s, box-shadow .15s, background .15s; outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(42,157,143,.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--slate-300); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-submit-wrap { margin-top: 10px; }
.form-note {
  margin-top: 12px; font-size: 12px; color: var(--slate-400); text-align: center;
}
.form-success {
  padding: 20px; border-radius: var(--r-lg);
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.2);
  text-align: center; margin-top: 12px;
}
.form-success p { color: var(--teal); font-weight: 600; font-size: 15px; }
.form-error {
  padding: 14px 16px; border-radius: var(--r-md); margin-bottom: 12px;
  background: #FFF5F5; border: 1px solid #FCA5A5;
  font-size: 13px; color: #B91C1C; line-height: 1.5;
}
button:disabled { opacity: 0.65; cursor: not-allowed; }

.contact-sidebar { padding-top: 4px; }
.contact-info-card {
  background: var(--navy); border-radius: var(--r-xl); padding: 32px;
  color: #fff; margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.contact-info-card::after {
  content: ''; position: absolute; right: -60px; bottom: -80px;
  width: 200px; height: 200px; border-radius: 60px;
  background: rgba(42,157,143,.08); transform: rotate(12deg); pointer-events: none;
}
.contact-info-card h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 20px;
  color: #fff; margin-bottom: 26px;
}
.c-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.c-info-item:last-child { margin-bottom: 0; }
.c-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: rgba(42,157,143,.2); border: 1px solid rgba(42,157,143,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--teal);
}
.c-icon svg { display: block; }
.c-info-item .lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 3px;
}
.c-info-item .val { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; }
.next-steps-card {
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.15);
  border-radius: var(--r-xl); padding: 28px;
}
.next-steps-card h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 18px;
  color: var(--navy); margin-bottom: 20px;
}
.next-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.next-step:last-child { margin-bottom: 0; }
.n-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.next-step .ns-text { font-size: 14px; color: var(--slate-600); line-height: 1.55; }
.next-step .ns-text strong { color: var(--navy); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   SITE FOOTER (hero footer)
   ───────────────────────────────────────────────────────────── */
.footer-wrap { padding: 32px 0 0; background: var(--bg-mist); }
.footer {
  background: var(--navy); color: #fff;
  border-radius: 36px 36px 0 0;
  padding: 64px 72px 44px;
  position: relative; overflow: hidden;
}
.footer::after {
  content: ''; position: absolute;
  right: -100px; bottom: -160px;
  width: 420px; height: 420px; border-radius: 80px;
  background: rgba(42,157,143,.08); transform: rotate(12deg); pointer-events: none;
}
.footer-top {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px; margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 34px; }
.footer-wm {
  font-family: var(--font-d); font-weight: 800; font-size: 26px;
  color: #fff; letter-spacing: -0.3px;
}
.footer-wm span { color: var(--teal); }
.footer-tagline {
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
}
.footer-headline {
  font-family: var(--font-d); font-weight: 800; font-size: 52px;
  color: #fff; letter-spacing: -0.035em; line-height: 1.02; margin-top: 4px;
}
.footer-sub {
  font-size: 15px; color: rgba(255,255,255,.58);
  line-height: 1.6; max-width: 520px;
}
.footer-cta-row {
  display: flex; gap: 10px; margin-top: 6px;
  width: min(520px, 90%);
}
.footer-input {
  flex: 1; height: 48px; border-radius: var(--r-md);
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.14);
  padding: 0 18px; font-family: var(--font-b); font-size: 14px;
  color: rgba(255,255,255,.85); outline: none;
  transition: border-color .15s, background .15s;
}
.footer-input:focus { border-color: var(--teal); background: rgba(255,255,255,.12); }
.footer-input::placeholder { color: rgba(255,255,255,.32); }
.footer-cta-btn {
  flex-shrink: 0; height: 48px; padding: 0 22px; border-radius: var(--r-md);
  background: var(--teal); border: none; color: #fff;
  font-family: var(--font-b); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: background .15s; white-space: nowrap;
}
.footer-cta-btn:hover { background: var(--teal-hover); }
.footer-cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
  padding-top: 52px; border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.footer-col h4 {
  font-family: var(--font-b); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 14px; color: rgba(255,255,255,.68); cursor: pointer; transition: color .15s;
}
.footer-col li:hover { color: #fff; }
.footer-contact { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.75; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-soc {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.78);
  cursor: pointer; text-decoration: none; transition: background .15s, border-color .15s;
}
.footer-soc:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
.footer-legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.38); gap: 20px;
  position: relative; z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   NUMBERS STRIP
   ───────────────────────────────────────────────────────────── */
.numbers-strip {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 32px;
}
.n-stat .n {
  font-family: var(--font-d); font-weight: 800; font-size: 36px;
  color: var(--navy); letter-spacing: -0.03em; line-height: 1.05;
}
.n-stat .n.accent { color: var(--teal); }
.n-stat .lbl { font-size: 12px; color: var(--slate-400); margin-top: 4px; }

/* ─────────────────────────────────────────────────────────────
   HOME PILLAR OVERVIEW CARDS (teaser — simpler than services)
   ───────────────────────────────────────────────────────────── */
.home-pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.home-pillar-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 28px 24px;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.home-pillar-card:hover {
  box-shadow: var(--sh-lg); border-color: var(--teal-200); transform: translateY(-3px);
}
.home-pillar-card .hpc-icon {
  width: 48px; height: 48px; border-radius: var(--r-lg);
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; font-size: 14px; color: var(--teal);
  margin-bottom: 18px;
}
.home-pillar-card h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 18px;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 8px;
}
.home-pillar-card .hpc-tag {
  font-size: 11px; font-weight: 600; color: var(--teal);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.home-pillar-card ul {
  display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; flex: 1;
}
.home-pillar-card li {
  font-size: 13px; color: var(--slate-500); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
}
.home-pillar-card .hpc-link {
  font-size: 13px; font-weight: 600; color: var(--teal);
  margin-top: auto; display: flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.home-pillar-card:hover .hpc-link { gap: 8px; }

/* ─────────────────────────────────────────────────────────────
   THE PROBLEM SECTION
   ───────────────────────────────────────────────────────────── */
.problem-section {
  background: var(--navy); padding: 88px 0;
  position: relative; overflow: hidden;
}
.problem-section::before {
  content: ''; position: absolute;
  left: -200px; top: -200px; width: 600px; height: 600px;
  border-radius: 50%; background: rgba(42,157,143,.06); pointer-events: none;
}
.problem-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.problem-left .eyebrow { color: rgba(42,157,143,.85); }
.problem-left h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(34px, 3.5vw, 46px);
  color: #fff; letter-spacing: -0.03em; line-height: 1.06;
  margin-top: 12px; margin-bottom: 20px;
}
.problem-left p { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.7; }
.problem-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.prob-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 22px 20px;
}
.prob-stat .ps-n {
  font-family: var(--font-d); font-weight: 800; font-size: 36px;
  line-height: 1; letter-spacing: -0.03em; color: var(--teal);
  margin-bottom: 6px;
}
.prob-stat .ps-lbl { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.45; }

/* ─────────────────────────────────────────────────────────────
   WHY US — VALUE PROPS
   ───────────────────────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.value-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.value-num {
  font-family: var(--font-d); font-weight: 800; font-size: 14px;
  color: var(--teal); letter-spacing: .12em; margin-bottom: 14px;
}
.value-card h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 18px;
  color: var(--navy); letter-spacing: -0.015em; line-height: 1.25; margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   OUTCOMES / RESULTS STRIP
   ───────────────────────────────────────────────────────────── */
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.outcome-card {
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.15);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.outcome-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.outcome-n {
  font-family: var(--font-d); font-weight: 800; font-size: 52px;
  color: var(--teal); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.outcome-label {
  font-size: 16px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.outcome-desc { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────
   PRICING TEASER
   ───────────────────────────────────────────────────────────── */
.pricing-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pt-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 28px 24px;
  box-shadow: var(--sh-sm); text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.pt-card.pt-featured {
  background: var(--navy); border-color: var(--navy);
  box-shadow: var(--sh-xl); transform: translateY(-6px);
}
.pt-card:not(.pt-featured):hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.pt-tier {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.pt-name {
  font-family: var(--font-d); font-weight: 800; font-size: 22px;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 16px;
}
.pt-featured .pt-name { color: #fff; }
.pt-price {
  font-family: var(--font-d); font-weight: 800; font-size: 42px;
  color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.pt-featured .pt-price { color: #fff; }
.pt-per { font-size: 13px; color: var(--slate-400); margin-bottom: 20px; }
.pt-featured .pt-per { color: rgba(255,255,255,.5); }
.pt-divider { height: 1px; background: var(--slate-100); margin: 16px 0; }
.pt-featured .pt-divider { background: rgba(255,255,255,.12); }
.pt-desc { font-size: 13px; color: var(--slate-500); line-height: 1.5; }
.pt-featured .pt-desc { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────────────────────────
   FINAL CTA BANNER
   ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-700) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  right: -100px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(42,157,143,.08); pointer-events: none;
}
.cta-banner-inner {
  text-align: center; position: relative; z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  color: #fff; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 36px; line-height: 1.6; }
.cta-banner-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   SERVICE DETAIL PAGES
   ───────────────────────────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--slate-400);
  margin-bottom: 18px;
}
.breadcrumb button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 13px; font-weight: 500;
  color: var(--teal); padding: 0; transition: color .15s;
}
.breadcrumb button:hover { color: var(--teal-hover); }
.breadcrumb .sep { color: var(--slate-300); }
.breadcrumb .current { color: var(--slate-400); }

/* Service hero — teal-tinted variant */
.service-hero {
  background: var(--bg-mist);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--slate-100);
}
.service-hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.service-hero-icon {
  width: 64px; height: 64px; border-radius: var(--r-xl);
  background: var(--teal-50); border: 1.5px solid rgba(42,157,143,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-hero h1 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  color: var(--navy); letter-spacing: -0.035em; line-height: 1.02;
  margin-top: 10px; margin-bottom: 16px;
}
.service-hero p {
  font-size: 17px; color: var(--slate-500);
  max-width: 580px; line-height: 1.7; margin-bottom: 28px;
}
.service-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.service-hero-kpis {
  display: flex; flex-direction: column; gap: 14px;
  flex-shrink: 0;
}
.hero-kpi {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-lg); padding: 16px 22px;
  text-align: center; box-shadow: var(--sh-sm); min-width: 140px;
}
.hero-kpi .kpi-n {
  font-family: var(--font-d); font-weight: 800; font-size: 28px;
  color: var(--teal); letter-spacing: -0.03em; line-height: 1.1;
}
.hero-kpi .kpi-lbl { font-size: 12px; color: var(--slate-400); margin-top: 3px; }

/* Feature categories grid */
.feature-cats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.feature-cat {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 28px 28px 24px;
  box-shadow: var(--sh-sm);
}
.feature-cat h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 17px;
  color: var(--navy); letter-spacing: -0.01em;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
}
.feature-cat ul { display: flex; flex-direction: column; gap: 10px; }
.feature-cat li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--slate-500); line-height: 1.5;
}

/* Tools strip */
.tools-section { padding: 56px 0; }
.tools-section h3 {
  font-family: var(--font-d); font-weight: 700; font-size: 20px;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.01em;
}
.tools-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 8px 16px;
  font-size: 14px; font-weight: 600; color: var(--slate-600);
  box-shadow: var(--sh-xs); transition: border-color .15s, box-shadow .15s;
}
.tool-tag:hover { border-color: var(--teal-200); box-shadow: var(--sh-sm); }
.tool-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

/* Service outcomes */
.service-outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.svc-outcome {
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.15);
  border-radius: var(--r-xl); padding: 26px 22px; text-align: center;
}
.svc-outcome .sn {
  font-family: var(--font-d); font-weight: 800; font-size: 38px;
  color: var(--teal); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.svc-outcome .sl {
  font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.svc-outcome .sd { font-size: 13px; color: var(--slate-500); line-height: 1.5; }

/* Service process steps */
.svc-process { display: flex; flex-direction: column; gap: 0; }
.svc-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 28px 0; align-items: flex-start;
  border-bottom: 1px solid var(--slate-100);
}
.svc-step:last-child { border-bottom: none; }
.svc-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.svc-step h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 20px;
  color: var(--navy); letter-spacing: -0.015em; margin-bottom: 6px;
}
.svc-step p { font-size: 15px; color: var(--slate-500); line-height: 1.65; }

/* Related services */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.related-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--r-xl); padding: 24px;
  box-shadow: var(--sh-sm); cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.related-card:hover {
  box-shadow: var(--sh-lg); border-color: var(--teal-200); transform: translateY(-2px);
}
.related-card .rc-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--teal-50); border: 1px solid rgba(42,157,143,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.related-card h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 17px;
  color: var(--navy); letter-spacing: -0.01em;
}
.related-card p { font-size: 13px; color: var(--slate-500); line-height: 1.5; flex: 1; }
.related-card .rc-link {
  font-size: 13px; font-weight: 600; color: var(--teal);
  display: flex; align-items: center; gap: 4px; margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   UTILITY
   ───────────────────────────────────────────────────────────── */
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-white { color: #fff; }
.flex       { display: flex; }
.flex-col   { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.gap-5  { gap: 20px; }
.mt-2   { margin-top: 8px; }
.mt-3   { margin-top: 12px; }
.mt-4   { margin-top: 16px; }
.mt-6   { margin-top: 24px; }
.mt-8   { margin-top: 32px; }
.mt-12  { margin-top: 48px; }
.mt-16  { margin-top: 64px; }
.mb-4   { margin-bottom: 16px; }
.mb-6   { margin-bottom: 24px; }
.mb-8   { margin-bottom: 32px; }

/* ── The Difference split section ── */
.diff-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-left h2 {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.diff-left p {
  font-size: 16px;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.5;
}
.diff-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diff-before, .diff-after {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.diff-after {
  background: var(--teal-50);
  border-color: var(--teal-200);
}
.diff-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 14px;
}
.diff-box-label.after { color: var(--teal); }
.diff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.diff-chip {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--slate-600);
  font-weight: 500;
}
.diff-caption {
  font-size: 13px;
  color: var(--slate-400);
}
.diff-arrow {
  text-align: center;
  font-size: 22px;
  color: var(--slate-300);
}
.diff-pod {
  display: flex;
  align-items: center;
  gap: 16px;
}
.diff-pod-name {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.diff-pod-sub {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  margin-top: 3px;
}

/* ============================================================
   RESPONSIVE / MOBILE
   ============================================================ */

/* Desktop grouping for the nav (links + CTA sit together on the right) */
.nav-menu { display: flex; align-items: center; gap: 20px; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  margin-right: -8px;
  border-radius: var(--r-md);
  background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .container  { padding: 0 40px; }
  .nav-inner  { padding: 0 40px; }

  .home-pillar-grid,
  .values-grid,
  .service-outcomes-grid { grid-template-columns: repeat(2, 1fr); }

  .footer       { padding: 56px 48px 40px; }
  .footer-cols  { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .approach-grid  { gap: 40px; }
  .problem-inner  { gap: 48px; }
  .diff-split     { gap: 48px; }
  .contact-layout { gap: 40px; }
}

/* ── Mobile — nav collapses to a hamburger menu ── */
@media (max-width: 820px) {
  /* Navigation */
  .nav-inner  { position: relative; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--sh-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links button {
    width: 100%; text-align: left;
    padding: 14px; font-size: 16px; border-radius: var(--r-md);
  }
  .nav-cta { width: 100%; margin-top: 8px; font-size: 15px; padding: 13px 20px; }

  /* Container & section rhythm */
  .container        { padding: 0 24px; }
  .section          { padding: 60px 0; }
  .section-sm       { padding: 44px 0; }
  .section-head     { margin-bottom: 36px; }
  .section-head p   { font-size: 16px; }
  .approach-section { padding: 64px 0; }
  .problem-section  { padding: 60px 0; }
  .cta-banner       { padding: 60px 0; }

  /* Hero */
  .home-hero { padding: 64px 0 0; }
  .hero-body { font-size: 16px; }
  .hero-stats {
    margin-top: 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: rgba(255,255,255,.12);
  }
  .hero-stat { background: rgba(10,22,35,.55); padding: 20px 16px; }
  .hero-stat + .hero-stat { border-left: none; }

  /* Collapse 3-column grids */
  .steps-grid,
  .pricing-grid,
  .outcomes-grid,
  .pricing-teaser-grid,
  .related-grid { grid-template-columns: 1fr; }

  /* Collapse 2-column layouts */
  .pillar-grid,
  .problem-inner,
  .partners-grid,
  .contact-layout,
  .diff-split,
  .feature-cats-grid,
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  .approach-grid  { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { gap: 28px; }

  /* Story chapters stack regardless of direction */
  .story-chapter,
  .story-chapter.dir-left,
  .story-chapter.dir-right { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .story-chapter p { max-width: none; }

  /* Pricing featured cards: drop the vertical lift so stacking is even */
  .pricing-card.featured,
  .pricing-card.featured:hover,
  .pt-card.pt-featured { transform: none; }

  /* Service hero stacks; KPIs become a wrapping row */
  .service-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .service-hero-kpis  { flex-direction: row; flex-wrap: wrap; }
  .hero-kpi { flex: 1; min-width: 120px; }

  /* Custom pricing band stacks */
  .custom-band { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }

  /* Numbers strip centered */
  .numbers-strip { justify-content: center; gap: 28px 40px; }

  /* Feature comparison tables scroll horizontally */
  .feature-table-wrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .ft-header, .ft-row { min-width: 560px; }

  /* Footer */
  .footer          { padding: 48px 28px 36px; border-radius: 28px 28px 0 0; }
  .footer-headline { font-size: 34px; }
  .footer-cols     { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-legal    { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Tighten card padding */
  .pillar-card, .pricing-card, .step-card, .feature-cat { padding: 24px; }
  .contact-form-card { padding: 28px 22px; }
  .contact-info-card, .next-steps-card { padding: 24px; }
}

/* ── Small phones ── */
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }

  /* Everything to a single column */
  .home-pillar-grid,
  .values-grid,
  .service-outcomes-grid,
  .footer-cols { grid-template-columns: 1fr; }
  .footer-cols { gap: 26px; }

  /* Typography down-shift */
  .hero-h1            { font-size: clamp(34px, 11vw, 46px); }
  .section-head h2    { font-size: clamp(27px, 8vw, 34px); }
  .footer-headline    { font-size: 28px; }
  .cta-banner h2      { font-size: clamp(28px, 8vw, 38px); }
  .page-hero          { padding: 48px 0 44px; }
  .page-hero h1       { font-size: clamp(32px, 9vw, 44px); }
  .service-hero       { padding: 44px 0 40px; }
  .approach-section h2{ font-size: 32px; }
  .story-chapter h2   { font-size: 30px; }
  .pricing-amount     { font-size: 44px; }

  /* Stack CTAs full width */
  .hero-ctas,
  .cta-banner-btns,
  .service-hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn,
  .cta-banner-btns .btn,
  .service-hero-ctas .btn { width: 100%; }

  /* Footer subscribe row stacks */
  .footer-cta-row { flex-direction: column; width: 100%; }
  .footer-cta-btn { width: 100%; }

  /* Partner cards stack (icon on top) */
  .partner-card { grid-template-columns: 1fr; gap: 16px; }
  .partner-icon { width: 64px; height: 64px; }
  .partner-icon svg { width: 28px; height: 28px; }

  /* Service process steps tighten */
  .svc-step     { grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 0; }
  .svc-step-num { width: 38px; height: 38px; font-size: 15px; }

  /* Logo strip centers */
  .logo-strip .logos { justify-content: center; gap: 16px 24px; }

  /* 16px inputs prevent iOS zoom-on-focus */
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }
}
