/* ============================================================
   ONWARDPATH — UNIFIED STYLESHEET
   style.css

   TABLE OF CONTENTS
   1.  CSS Custom Properties (design tokens)
   2.  Reset & Base
   3.  Utility Bar
   4.  Navigation
   5.  Hamburger Menu & Mobile Drawer
   6.  Layout Helpers
   7.  Buttons
   8.  Sections & Eyebrows
   9.  Footer
   10. Animations & Reveal
   11. Responsive (shared breakpoint)

   PAGE-SPECIFIC BLOCKS
   12. index.html — Hero, Trust, Pillars, Typo Moment, Proof,
                    Why, Intelligence, CTA
   13. about.html — Hero, Story, Numbers, Values, Locations,
                    Certs, Contact
   14. consulting.html — Hero, Practices, Platforms, Delivery,
                         Industries, Work, Certs, CTA
   15. perzo.html — Hero, Problem, Features, ROI, Experiences,
                    AI, CTA
   16. talent.html — Hero, Value, Specializations, Process,
                     Testimonial, Differentiators, Seekers, CTA
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colors */
  --purple:        #4f46e5;
  --purple-light:  #6366f1;
  --purple-bg:     rgba(79,70,229,.04);
  --purple-bg2:    rgba(79,70,229,.07);
  --purple-border: rgba(79,70,229,.12);

  --teal:          #0B8FA3;
  --teal-light:    #14b8a6;
  --teal-bg:       rgba(11,143,163,.04);
  --teal-bg2:      rgba(11,143,163,.07);
  --teal-border:   rgba(11,143,163,.12);

  /* perzo.html uses a slightly different teal palette */
  --teal-p:        #0FA89C;
  --teal-p2:       #14C9BB;
  --teal-p-bg:     rgba(15,168,156,.04);
  --teal-p-bg2:    rgba(15,168,156,.07);
  --teal-p-border: rgba(15,168,156,.14);

  --gold:          #C9913A;
  --gold2:         #e8aa52;
  --gold-bg:       rgba(201,145,58,.04);
  --gold-border:   rgba(201,145,58,.12);

  /* Neutrals */
  --dark:      #111827;
  --gray-900:  #1f2937;
  --gray-800:  #374151;
  --gray-700:  #4b5563;
  --gray-600:  #6b7280;
  --gray-500:  #9ca3af;
  --gray-400:  #d1d5db;
  --gray-300:  #e5e7eb;
  --gray-200:  #f3f4f6;
  --gray-100:  #f9fafb;
  --white:     #ffffff;

  /* Typography */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  background:    var(--white);
  color:         var(--gray-800);
  font-family:   var(--sans);
  font-weight:   400;
  line-height:   1.7;
  overflow-x:    hidden;
}


/* ============================================================
   3. UTILITY BAR
   ============================================================ */
.utility-bar {
  background:  var(--gray-900);
  padding:     6px 0;
  font-size:   13px;
  color:       var(--gray-500);
}
.utility-inner {
  max-width:      1200px;
  margin:         0 auto;
  padding:        0 40px;
  display:        flex;
  justify-content: flex-end;
  align-items:    center;
  gap:            20px;
}
/* talent.html has a two-sided utility bar */
.utility-inner.utility-inner--split {
  justify-content: space-between;
}
.utility-bar a {
  color:       var(--gray-400);
  text-decoration: none;
  transition:  color .2s;
}
.utility-bar a:hover { color: var(--white); }

.utility-back {
  color:       var(--gray-400);
  text-decoration: none;
  font-size:   13px;
  transition:  color .2s;
  display:     flex;
  align-items: center;
  gap:         4px;
}
.utility-back:hover { color: var(--white); }


/* ============================================================
   4. NAVIGATION
   ============================================================ */
nav {
  background:    var(--white);
  border-bottom: 1px solid var(--gray-300);
  padding:       16px 0;
  position:      sticky;
  top:           0;
  z-index:       100;
  box-shadow:    0 1px 3px rgba(0,0,0,.04);
}
.nav-inner {
  max-width:       1200px;
  margin:          0 auto;
  padding:         0 40px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}
.nav-logo {
  font-family:     var(--serif);
  font-size:       22px;
  color:           var(--dark);
  text-decoration: none;
  letter-spacing:  -.01em;
}
.nav-logo span { color: var(--purple); }

.nav-links {
  display:     flex;
  align-items: center;
  gap:         36px;
}
.nav-links a {
  font-size:       15px;
  font-weight:     500;
  color:           var(--gray-700);
  text-decoration: none;
  transition:      color .2s;
  letter-spacing:  .01em;
}
.nav-links a:hover  { color: var(--purple); }
.nav-links a.active {
  color:          var(--purple);
  border-bottom:  2px solid var(--purple);
  padding-bottom: 2px;
}
/* perzo.html active state uses teal */
.nav-links a.active--teal {
  color:          var(--teal-p);
  border-bottom:  2px solid var(--teal-p);
  padding-bottom: 2px;
}

.nav-cta {
  background:      var(--purple);
  color:           var(--white) !important;
  font-size:       14px;
  font-weight:     600;
  padding:         10px 24px;
  border-radius:   6px;
  text-decoration: none;
  transition:      background .2s, transform .15s;
  letter-spacing:  .01em;
}
.nav-cta:hover {
  background:  var(--purple-light);
  transform:   translateY(-1px);
}


/* ============================================================
   5. HAMBURGER MENU & MOBILE DRAWER
   ============================================================ */
.hamburger {
  display:         none;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  width:           40px;
  height:          40px;
  border:          none;
  background:      transparent;
  cursor:          pointer;
  padding:         4px;
  border-radius:   6px;
  gap:             5px;
  transition:      background .2s;
}
.hamburger:hover { background: var(--gray-200); }

.hamburger-bar {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--gray-800);
  border-radius: 2px;
  transition:    transform .3s ease, opacity .3s ease, width .3s ease;
}
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display:        none;
  position:       fixed;
  inset:          0;
  z-index:        99;
  pointer-events: none;
}
.mobile-menu.is-open { display: block; }

.mobile-overlay {
  position:       absolute;
  inset:          0;
  background:     rgba(17,24,39,.45);
  opacity:        0;
  transition:     opacity .3s ease;
  pointer-events: none;
}
.mobile-menu.is-open .mobile-overlay {
  opacity:        1;
  pointer-events: all;
}

.mobile-drawer {
  position:         absolute;
  top:              0;
  right:            0;
  width:            min(320px, 90vw);
  height:           100%;
  background:       var(--white);
  transform:        translateX(100%);
  transition:       transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:       -4px 0 32px rgba(0,0,0,.12);
  display:          flex;
  flex-direction:   column;
  pointer-events:   all;
  overflow-y:       auto;
}
.mobile-menu.is-open .mobile-drawer { transform: translateX(0); }

.mobile-drawer-header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         18px 24px;
  border-bottom:   1px solid var(--gray-300);
  flex-shrink:     0;
}
.mobile-drawer-logo {
  font-family:     var(--serif);
  font-size:       20px;
  color:           var(--dark);
  text-decoration: none;
  letter-spacing:  -.01em;
}
.mobile-drawer-logo span { color: var(--purple); }

.mobile-close {
  width:           36px;
  height:          36px;
  border:          none;
  background:      transparent;
  cursor:          pointer;
  border-radius:   6px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--gray-600);
  transition:      background .2s, color .2s;
}
.mobile-close:hover { background: var(--gray-200); color: var(--dark); }
.mobile-close svg   { width: 18px; height: 18px; }

.mobile-nav-links {
  flex:            1;
  display:         flex;
  flex-direction:  column;
  padding:         12px 0;
}
.mobile-nav-links a {
  font-size:       16px;
  font-weight:     500;
  color:           var(--gray-700);
  text-decoration: none;
  padding:         14px 24px;
  border-bottom:   1px solid var(--gray-300);
  transition:      color .2s, background .2s;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}
.mobile-nav-links a:last-of-type { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--purple); background: var(--purple-bg); }
.mobile-nav-links a svg   { width: 14px; height: 14px; opacity: .4; }

.mobile-drawer-footer {
  padding:       20px 24px;
  border-top:    1px solid var(--gray-300);
  flex-shrink:   0;
}
.mobile-drawer-footer .nav-cta {
  display:     block;
  text-align:  center;
  width:       100%;
  padding:     13px 24px;
  font-size:   15px;
}


/* ============================================================
   6. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 40px;
}
section { padding: 100px 0; position: relative; }


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  background:      var(--purple);
  color:           var(--white);
  font-size:       15px;
  font-weight:     600;
  padding:         14px 28px;
  border-radius:   6px;
  text-decoration: none;
  transition:      background .2s, transform .15s, box-shadow .2s;
  box-shadow:      0 4px 16px rgba(79,70,229,.25);
}
.btn-primary:hover {
  background:  var(--purple-light);
  transform:   translateY(-1px);
  box-shadow:  0 8px 24px rgba(79,70,229,.3);
}

/* index.html hero CTA pulse animation */
.btn-primary--glow { animation: ctaGlow 2.5s ease-in-out 1s 1; }
@keyframes ctaGlow {
  0%   { box-shadow: 0 4px 16px rgba(79,70,229,.25); }
  30%  { box-shadow: 0 4px 28px rgba(79,70,229,.5), 0 0 40px rgba(79,70,229,.2); }
  60%  { box-shadow: 0 4px 20px rgba(79,70,229,.35), 0 0 20px rgba(79,70,229,.1); }
  100% { box-shadow: 0 4px 16px rgba(79,70,229,.25); }
}

.btn-secondary {
  font-size:       15px;
  font-weight:     500;
  color:           var(--gray-600);
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  transition:      color .2s;
}
.btn-secondary:hover { color: var(--purple); }

/* perzo.html teal CTA */
.btn-teal {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  background:      var(--teal-p);
  color:           #fff;
  font-size:       15px;
  font-weight:     600;
  padding:         16px 32px;
  border-radius:   6px;
  text-decoration: none;
  transition:      background .2s, transform .15s, box-shadow .2s;
  box-shadow:      0 4px 16px rgba(15,168,156,.25);
}
.btn-teal:hover {
  background:  var(--teal-p2);
  transform:   translateY(-1px);
  box-shadow:  0 8px 24px rgba(15,168,156,.3);
}

.btn-ghost {
  font-size:       15px;
  font-weight:     500;
  color:           var(--gray-600);
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  transition:      color .2s;
}
.btn-ghost:hover { color: var(--teal-p); }

/* talent.html outline button */
.btn-outline {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  background:      var(--white);
  color:           var(--purple);
  font-size:       15px;
  font-weight:     600;
  padding:         14px 28px;
  border-radius:   6px;
  text-decoration: none;
  border:          2px solid var(--purple);
  transition:      background .2s, color .2s, transform .15s;
}
.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-1px); }


/* ============================================================
   8. SECTIONS & EYEBROWS
   ============================================================ */
.section-eyebrow {
  font-size:      13px;
  font-weight:    600;
  color:          var(--purple);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom:  16px;
}
/* perzo uses teal eyebrow */
.section-eyebrow--teal { color: var(--teal-p); }

.section-title {
  font-family:   var(--serif);
  font-size:     clamp(30px, 4vw, 46px);
  line-height:   1.12;
  color:         var(--dark);
  margin-bottom: 20px;
  font-weight:   400;
}
.section-title em { font-style: italic; color: var(--purple); }
.section-title em--teal { font-style: italic; color: var(--teal-p); }

.section-body {
  font-size:   17px;
  color:       var(--gray-600);
  line-height: 1.8;
  max-width:   560px;
}

/* Shared CTA section (dark background) */
#cta {
  background: var(--dark);
  padding:    100px 0;
  position:   relative;
  overflow:   hidden;
}
#cta::before {
  content:    '';
  position:   absolute;
  width:      600px;
  height:     600px;
  right:      -150px;
  top:        50%;
  transform:  translateY(-50%);
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner    { text-align: center; position: relative; z-index: 1; }
.cta-headline {
  font-family:   var(--serif);
  font-size:     clamp(32px, 4.5vw, 52px);
  color:         var(--white);
  line-height:   1.12;
  margin-bottom: 20px;
}
.cta-headline em { font-style: italic; color: var(--purple-light); }
.cta-sub {
  font-size:   18px;
  color:       var(--gray-500);
  max-width:   520px;
  margin:      0 auto 40px;
  line-height: 1.75;
}
.cta-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  background:      var(--purple);
  color:           var(--white);
  font-size:       16px;
  font-weight:     600;
  padding:         16px 36px;
  border-radius:   6px;
  text-decoration: none;
  transition:      background .2s, transform .15s, box-shadow .2s;
  box-shadow:      0 8px 32px rgba(79,70,229,.35);
}
.cta-btn:hover {
  background:  var(--purple-light);
  transform:   translateY(-2px);
  box-shadow:  0 12px 40px rgba(79,70,229,.45);
}
.cta-note { font-size: 14px; color: var(--gray-600); margin-top: 20px; }


/* Shared certification badges */
#certs             { background: var(--white); padding: 60px 0; }
.certs-inner       { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cert-badge        { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gray-700); background: var(--gray-100); border: 1px solid var(--gray-300); padding: 10px 18px; border-radius: 6px; }
.cert-dot          { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cert-dot.purple   { background: var(--purple); }
.cert-dot.teal     { background: var(--teal); }
.cert-dot.gold     { background: #c9913a; }


/* ============================================================
   9. FOOTER
   ============================================================ */
footer {
  background:  var(--gray-900);
  border-top:  1px solid rgba(255,255,255,.08);
  padding:     40px 0;
}
.footer-inner {
  max-width:  1200px;
  margin:     0 auto;
  padding:    0 40px;
  text-align: center;
}
.footer-social {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             16px;
  margin-bottom:   12px;
}
.footer-social-link { display: inline-flex; color: var(--gray-500); transition: color .2s; }
.footer-social-link:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--gray-600); }


/* ============================================================
   10. ANIMATIONS & REVEAL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in   { animation: fadeUp .6s ease both; }
.fade-d1   { animation-delay: .1s; }
.fade-d2   { animation-delay: .2s; }
.fade-d3   { animation-delay: .35s; }
.fade-d4   { animation-delay: .5s; }

.reveal    { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }


/* ============================================================
   11. RESPONSIVE — SHARED BREAKPOINT (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .utility-bar  { display: none; }
  .nav-links    { gap: 20px; }
  .hamburger    { display: flex; }
  .nav-links    { display: none; }

  /* common grid collapses */
  .hero-grid,
  .proof-header-grid,
  .intel-header-grid,
  .pillars-grid,
  .why-grid,
  .proof-grid,
  .intel-grid,
  .story-grid,
  .contact-grid,
  .platforms-grid,
  .delivery-grid,
  .features-intro,
  .mode-cards,
  .roi-grid,
  .ai-grid,
  .testimonial-grid,
  .seekers-inner,
  .diff-layout,
  .process-grid { grid-template-columns: 1fr; }

  .trust-grid   { grid-template-columns: repeat(2, 1fr); }
  .trust-stats  { grid-template-columns: 1fr; }
  .trust-stat   { border-right: none; border-bottom: none; }
  .numbers-grid,
  .loc-grid     { grid-template-columns: 1fr 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .practices-grid,
  .work-grid    { grid-template-columns: 1fr; }
  .ind-grid     { grid-template-columns: 1fr 1fr; }
  .exp-grid     { grid-template-columns: 1fr; }
  .value-grid   { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  .hero-image   { margin-top: 40px; min-height: 300px; }
  .hero-image img { min-height: 300px; }
  .pillar-image { height: 180px; }

  /* hero stats — perzo */
  .hero-stats   { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--gray-300); }
  /* consulting hero stats */
  .hero-stats--row { flex-direction: column; }
  .hero-stat--row  { border-right: none; border-bottom: 1px solid var(--gray-300); padding: 20px 0 !important; }
  .hero-stat--row:last-child { border-bottom: none; }
}


/* ============================================================
   12. INDEX.HTML — PAGE-SPECIFIC STYLES
   ============================================================ */

/* Hero */

#hero.index-hero {
  padding:    80px 0;
  position:   relative;
  overflow:   hidden;
  background: #e8eef8 url('images/hero-bg.png') center center / cover no-repeat;
}
#hero.index-hero::after {
  content:    '';
  position:   absolute;
  top:        -100px;
  right:      -180px;
  width:      650px;
  height:     650px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  font-size:      13px;
  font-weight:    600;
  color:          var(--purple);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom:  24px;
  background:     var(--purple-bg);
  border:         1px solid var(--purple-border);
  padding:        6px 14px;
  border-radius:  20px;
}
.hero-headline {
  font-family:   var(--serif);
  font-size:     clamp(36px, 4.5vw, 56px);
  line-height:   1.08;
  color:         var(--dark);
  margin-bottom: 24px;
  font-weight:   400;
}
.hero-headline em { font-style: italic; color: var(--purple); }
.hero-sub {
  font-size:     18px;
  font-weight:   400;
  color:         var(--gray-600);
  max-width:     520px;
  line-height:   1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position:      relative;
  border-radius: 12px;
  overflow:      hidden;
  box-shadow:    0 20px 60px rgba(0,0,0,.12);
  min-height:    420px;
}
.hero-image img {
  width:            100%;
  height:           100%;
  min-height:       420px;
  display:          block;
  object-fit:       cover;
  object-position:  center 30%;
}
.hero-image-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(79,70,229,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   60px;
  align-items:           center;
  position:              relative;
  z-index:               1;
}

/* Trust */
#trust {
  padding:       72px 0;
  border-top:    1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background:    var(--gray-100);
}
.trust-label { font-size: 13px; font-weight: 600; color: var(--gray-500); letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-bottom: 8px; }
.trust-headline { font-family: var(--serif); font-size: clamp(26px,3.5vw,40px); font-weight: 400; line-height: 1.12; color: var(--dark); text-align: center; margin-bottom: 10px; }
.trust-headline em { font-style: italic; color: var(--purple); }
.trust-sub { font-size: 16px; color: var(--gray-600); text-align: center; max-width: 520px; margin: 0 auto 48px; line-height: 1.75; }

.trust-grid-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-300); margin-bottom: 28px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-tile { background: var(--white); border: 1px solid var(--gray-300); border-radius: 0; height: 82px; display: flex; align-items: center; justify-content: center; padding: 16px 20px; position: relative; overflow: hidden; transition: box-shadow .28s ease, transform .24s ease, border-color .28s ease; cursor: default; margin-top: -1px; margin-left: -1px; }
.trust-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.6) 50%, transparent 70%); transform: translateX(-120%); transition: transform 0s; pointer-events: none; }
.trust-tile:hover::after { transform: translateX(120%); transition: transform .48s ease; }
.trust-tile:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07), 0 10px 32px rgba(0,0,0,.04); transform: translateY(-3px); border-color: var(--purple-border); }
.trust-tile.hc { border-color: rgba(79,70,229,.15); }
.trust-tile.hc:hover { border-color: rgba(79,70,229,.3); }
.trust-tile img { max-height: 38px; max-width: 140px; width: auto; height: auto; object-fit: contain; display: block; transition: transform .3s ease; }
.trust-tile:hover img { transform: scale(1.05); }
.trust-tile-name { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(17,24,39,.88); color: rgba(255,255,255,.92); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 5px 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transform: translateY(100%); transition: transform .24s cubic-bezier(.34,1.1,.64,1); }
.trust-tile:hover .trust-tile-name { transform: translateY(0); }

.trust-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 32px 0 0; }
.trust-stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--gray-300); }
.trust-stat:last-child { border-right: none; }
.trust-stat-val { font-family: var(--serif); font-size: clamp(36px,4vw,48px); color: var(--purple); line-height: 1; margin-bottom: 8px; }
.trust-stat-label { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

/* Pillars */
#pillars { background: var(--white); }
.pillars-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.pillars-header .section-body { margin: 0 auto; }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.pillar-card { border-radius: 0; overflow: hidden; position: relative; transition: transform .2s, box-shadow .2s; margin-left: -1px; }
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); z-index: 2; }
.pillar-card:first-child { margin-left: 0; border-radius: 12px 0 0 12px; }
.pillar-card:last-child  { border-radius: 0 12px 12px 0; }
.pillar-card.consulting  { background: var(--purple-bg); border: 1px solid var(--purple-border); }
.pillar-card.perzo       { background: rgba(11,143,163,.04); border: 1px solid rgba(11,143,163,.12); }
.pillar-image { width: 100%; height: 280px; overflow: hidden; }
.pillar-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.pillar-body-wrap { padding: 36px 36px 40px; }
.pillar-badge { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; display: inline-block; margin-bottom: 20px; }
.pillar-card.consulting .pillar-badge { background: rgba(79,70,229,.08); color: var(--purple); border: 1px solid rgba(79,70,229,.15); }
.pillar-card.perzo .pillar-badge      { background: rgba(11,143,163,.08); color: var(--teal);   border: 1px solid rgba(11,143,163,.15); }
.pillar-title { font-family: var(--serif); font-size: 26px; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.pillar-body  { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.pillar-points { list-style: none; }
.pillar-points li { font-size: 15px; color: var(--gray-700); padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.06); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.pillar-points li:last-child { border-bottom: none; }
.pillar-points li::before { content: '→'; flex-shrink: 0; font-weight: 600; margin-top: 1px; }
.pillar-card.consulting .pillar-points li::before { color: var(--purple); }
.pillar-card.perzo .pillar-points li::before      { color: var(--teal); }
.pillar-link { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; text-decoration: none; margin-top: 24px; transition: gap .2s; }
.pillar-link:hover { gap: 10px; }
.pillar-card.consulting .pillar-link { color: var(--purple); }
.pillar-card.perzo .pillar-link      { color: var(--teal); }

/* Typographic moment */
.typo-moment { padding: 80px 0; background: var(--white); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); text-align: center; position: relative; overflow: hidden; }
.typo-moment::before { content: '\201C'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: 240px; color: rgba(79,70,229,.04); line-height: 1; pointer-events: none; }
.typo-stat   { font-family: var(--serif); font-size: clamp(48px,7vw,96px); font-weight: 400; color: var(--purple); line-height: 1; margin-bottom: 16px; }
.typo-text   { font-family: var(--serif); font-size: clamp(22px,3vw,32px); font-weight: 400; font-style: italic; color: var(--dark); line-height: 1.35; max-width: 700px; margin: 0 auto 16px; }
.typo-source { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--gray-500); letter-spacing: .04em; }

/* Proof / case study cards */
#proof { background: var(--gray-100); border-top: 1px solid var(--gray-300); }
.proof-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
.proof-image { border-radius: 10px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.proof-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.proof-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 0; padding: 0; transition: border-color .25s, transform .2s, box-shadow .2s; overflow: hidden; margin-left: -1px; }
.proof-card:first-child { margin-left: 0; border-radius: 10px 0 0 10px; }
.proof-card:last-child  { border-radius: 0 10px 10px 0; }
.proof-card:hover { border-color: var(--purple-border); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); z-index: 2; }
.proof-card-stripe { height: 4px; width: 100%; }
.proof-card-stripe.health-insurance  { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.proof-card-stripe.academic-medical  { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.proof-card:hover .proof-card-stripe { height: 6px; transition: height .25s ease; }
.proof-card-inner { padding: 32px 28px; }
.proof-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.proof-industry { font-size: 12px; font-weight: 600; color: var(--purple); letter-spacing: .08em; text-transform: uppercase; background: var(--purple-bg); padding: 4px 10px; border-radius: 4px; }
.proof-title { font-family: var(--serif); font-size: 20px; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.proof-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.proof-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.proof-stat-val   { font-family: var(--serif); font-size: 24px; color: var(--purple); line-height: 1; }
.proof-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.proof-link { font-size: 14px; font-weight: 600; color: var(--purple); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; transition: gap .2s; }
.proof-link:hover { gap: 8px; }

/* Why section */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.why-image { border-radius: 10px; overflow: hidden; margin-top: 32px; box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.why-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.why-points { list-style: none; }
.why-point { padding: 28px 0; border-bottom: 1px solid var(--gray-300); }
.why-point:first-child { padding-top: 0; }
.why-point:last-child  { border-bottom: none; }
.wp-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.wp-num   { font-family: var(--serif); font-size: 36px; font-style: italic; color: var(--purple); line-height: 1; flex-shrink: 0; }
.wp-body  { font-size: 15px; color: var(--gray-600); line-height: 1.8; }

/* Intelligence */
#intelligence { background: var(--gray-100); border-top: 1px solid var(--gray-300); }
.intel-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 48px; }
.intel-image { border-radius: 10px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.intel-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.intel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.intel-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 8px; padding: 28px 24px; transition: border-color .25s, transform .2s; }
.intel-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.intel-type  { font-size: 12px; font-weight: 600; color: var(--gray-500); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.intel-title { font-size: 17px; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.intel-body  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.intel-cta   { text-align: center; margin-top: 36px; }


/* ============================================================
   13. ABOUT.HTML — PAGE-SPECIFIC STYLES
   ============================================================ */
#hero.about-hero {
  padding:    100px 0 80px;
  border-bottom: 1px solid var(--gray-300);
  position:   relative;
  overflow:   hidden;
}
#hero.about-hero::before {
  content:    '';
  position:   absolute;
  top:        -100px;
  right:      -180px;
  width:      600px;
  height:     600px;
  background: radial-gradient(circle, rgba(79,70,229,.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
/* about.html — hero video fix */
.about-hero .hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  min-height: unset;
  height: 100%;
}

.about-hero .hero-image video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 500px;  
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

/* Story */
#story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-body { font-size: 16px; color: var(--gray-600); line-height: 1.85; }
.story-body p { margin-bottom: 20px; }
.story-body strong { color: var(--dark); font-weight: 600; }
.story-timeline { list-style: none; }
.tl-item { padding: 24px 0; border-bottom: 1px solid var(--gray-300); display: flex; gap: 20px; align-items: flex-start; }
.tl-item:first-child { padding-top: 0; }
.tl-item:last-child  { border-bottom: none; }
.tl-year { font-family: var(--serif); font-size: 20px; color: var(--purple); min-width: 60px; flex-shrink: 0; line-height: 1.4; }
.tl-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.tl-text strong { color: var(--dark); }

/* Numbers */
#numbers { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); padding: 80px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.num-card  { text-align: center; padding: 24px; }
.num-val   { font-family: var(--serif); font-size: 42px; color: var(--purple); line-height: 1; margin-bottom: 8px; }
.num-label { font-size: 15px; color: var(--gray-600); line-height: 1.5; }

/* Values */
#values { background: var(--white); }
.values-header { max-width: 600px; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 10px; padding: 32px 28px; transition: border-color .2s, transform .2s; }
.value-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.vc-icon  { width: 44px; height: 44px; background: var(--purple-bg2); border: 1px solid var(--purple-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vc-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.vc-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* Locations */
#locations { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.locations-header { max-width: 600px; margin-bottom: 48px; }
.loc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.loc-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 10px; padding: 28px 24px; text-align: center; transition: border-color .2s; }
.loc-card:hover { border-color: var(--purple-border); }
.loc-card.hq { border-color: var(--purple-border); background: var(--purple-bg); }
.loc-city { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.loc-card.hq .loc-city { color: var(--purple); }
.loc-region { font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.loc-tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); display: inline-block; }

/* Contact */
#contact { background: var(--dark); padding: 100px 0; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; width: 600px; height: 600px; right: -150px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(79,70,229,.12) 0%, transparent 65%); pointer-events: none; }
.contact-inner { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left h2 { font-family: var(--serif); font-size: clamp(30px,4vw,44px); color: var(--white); line-height: 1.12; margin-bottom: 20px; font-weight: 400; }
.contact-left h2 em { font-style: italic; color: var(--purple-light); }
.contact-left p { font-size: 17px; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; max-width: 440px; }
.contact-details { list-style: none; }
.cd-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 15px; color: var(--gray-400); }
.cd-item:last-child { border-bottom: none; }
.cd-icon { width: 32px; height: 32px; background: rgba(79,70,229,.1); border: 1px solid rgba(79,70,229,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 14px 18px; font-family: var(--sans); font-size: 15px; color: var(--white); width: 100%; outline: none; transition: border-color .2s; }
.form-field::placeholder { color: var(--gray-600); }
.form-field:focus { border-color: rgba(79,70,229,.4); }
textarea.form-field { resize: vertical; min-height: 120px; }
.form-submit { background: var(--purple); color: var(--white); font-family: var(--sans); font-size: 16px; font-weight: 600; padding: 16px; border: none; border-radius: 6px; cursor: pointer; transition: background .2s, transform .15s; box-shadow: 0 8px 28px rgba(79,70,229,.3); letter-spacing: .02em; }
.form-submit:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ── In-page section nav ───────────────────────────────── */
.page-nav { ... }
.page-nav-inner { ... }
.page-nav-link { ... }
.page-nav-link.active { ... }

/* ── Leadership section ──────────────────────────────────── */

#leadership {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
  padding: 100px 0;
}
.leadership-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.leadership-header .section-body { margin: 16px auto 0; }

/* 3-column grid — smaller cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

/* Card shell */
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: var(--purple-border);
}

/* ── Photo ── */
.card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--purple-bg2);
  position: relative;
  flex-shrink: 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.leader-card:hover .card-photo img { transform: scale(1.04); }

/* Initials fallback */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--purple);
  background: var(--purple-bg2);
}

/* Accent bar on hover */
.card-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity .25s;
}
.leader-card:hover .card-photo::after { opacity: 1; }

/* ── Card body ── */
.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.leader-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 3px;
}
.leader-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 10px;
}
.leader-bio {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Footer / LinkedIn ── */
.card-footer {
  padding-top: 10px;
  border-top: 1px solid var(--gray-300);
  margin-top: auto;
}
.li-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.li-link:hover { color: var(--purple-light); gap: 9px; }
.li-link svg   { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-photo { aspect-ratio: 1 / 1; }
  .leader-name  { font-size: 14px; }
  .leader-title { font-size: 10px; }
  .leader-bio   { -webkit-line-clamp: 2; font-size: 12px; }
}

/* ── About hero video fix ───────────────────────────────── */
.about-hero .hero-image { ... }
.about-hero .hero-image video { ... }


/* ============================================================
   14. CONSULTING.HTML — PAGE-SPECIFIC STYLES
   ============================================================ */
#hero.consulting-hero { padding: 100px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-300); }
#hero.consulting-hero::before { content: ''; position: absolute; top: -100px; right: -180px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%); pointer-events: none; }
.consulting-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-stats { display: flex; gap: 0; }
.hero-stat { flex: 1; padding: 28px 28px 28px 0; border-right: 1px solid var(--gray-300); }
.hero-stat:last-child  { border-right: none; padding-left: 28px; padding-right: 0; }
.hero-stat:not(:first-child):not(:last-child) { padding: 28px; }
.hs-val   { font-family: var(--serif); font-size: 36px; color: var(--purple); line-height: 1; margin-bottom: 6px; }
.hs-label { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* Practice cards */
#practices { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.practices-header { max-width: 640px; margin-bottom: 56px; }
.practices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.practice-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 10px; overflow: hidden; transition: border-color .25s, transform .2s, box-shadow .2s; }
.practice-card:hover { border-color: var(--purple-border); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.pc-body-wrap { padding: 28px 30px 32px; }
.pc-image { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; background: var(--gray-200); }
.pc-image-placeholder { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(79,70,229,.07) 0%, rgba(79,70,229,.03) 100%); border-bottom: 1px solid var(--purple-border); color: var(--gray-400); font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.pc-icon  { width: 44px; height: 44px; background: var(--purple-bg2); border: 1px solid var(--purple-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pc-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.pc-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; }
.pc-details { list-style: none; }
.pc-details li { font-size: 14px; color: var(--gray-700); padding: 7px 0; border-top: 1px solid var(--gray-200); display: flex; align-items: flex-start; gap: 8px; line-height: 1.55; }
.pc-details li::before { content: '→'; color: var(--purple); font-weight: 600; flex-shrink: 0; font-size: 13px; margin-top: 1px; }

/* Platform expertise */
#platforms { background: var(--white); }
.platforms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.platform-card { border-radius: 12px; padding: 44px 36px; position: relative; overflow: hidden; }
.platform-card.aem { background: var(--purple-bg); border: 1px solid var(--purple-border); }
.platform-card.wcm { background: rgba(11,143,163,.03); border: 1px solid rgba(11,143,163,.1); }
.plat-badge { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; display: inline-block; margin-bottom: 20px; }
.platform-card.aem .plat-badge { background: rgba(79,70,229,.08); color: var(--purple); border: 1px solid rgba(79,70,229,.15); }
.platform-card.wcm .plat-badge { background: rgba(11,143,163,.08); color: var(--teal);   border: 1px solid rgba(11,143,163,.15); }
.plat-title { font-family: var(--serif); font-size: 26px; color: var(--dark); margin-bottom: 14px; line-height: 1.2; font-weight: 400; }
.plat-body  { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.plat-capabilities { list-style: none; }
.plat-capabilities li { font-size: 15px; color: var(--gray-700); padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.05); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.plat-capabilities li:last-child { border-bottom: none; }
.plat-capabilities li::before { content: '✓'; font-weight: 700; flex-shrink: 0; font-size: 13px; margin-top: 2px; }
.platform-card.aem .plat-capabilities li::before { color: var(--purple); }
.platform-card.wcm .plat-capabilities li::before { color: var(--teal); }
.plat-note { font-size: 14px; color: var(--gray-500); font-style: italic; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,.06); line-height: 1.7; }

/* Delivery / How We Work */
#delivery { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.delivery-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.delivery-models { display: flex; flex-direction: column; gap: 20px; }
.dm-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 10px; padding: 32px 28px; transition: border-color .2s; }
.dm-card:hover { border-color: var(--purple-border); }
.dm-badge { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); background: var(--purple-bg); border: 1px solid var(--purple-border); padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
.dm-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.dm-body  { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.delivery-principles { list-style: none; margin-top: 8px; }
.dp-item { padding: 22px 0; border-bottom: 1px solid var(--gray-300); }
.dp-item:first-child { padding-top: 0; }
.dp-item:last-child  { border-bottom: none; }
.dp-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.dp-num   { font-family: var(--serif); font-size: 36px; font-style: italic; color: var(--purple); line-height: 1; flex-shrink: 0; }
.dp-body  { font-size: 14px; color: var(--gray-600); line-height: 1.75; }

/* Industries */
#industries { background: var(--white); }
.industries-header { max-width: 600px; margin-bottom: 48px; }
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ind-card { background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 10px; padding: 32px 24px; text-align: center; transition: border-color .2s, transform .2s; }
.ind-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.ind-card.primary { background: var(--purple-bg); border-color: var(--purple-border); }
.ind-monogram { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; margin-bottom: 14px; }
.ind-card.primary .ind-monogram  { color: var(--purple); }
.ind-card:nth-child(2) .ind-monogram { color: var(--teal); }
.ind-card:nth-child(3) .ind-monogram { color: #d97706; }
.ind-card:nth-child(4) .ind-monogram { color: #7c3aed; }
.ind-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ind-card.primary .ind-name { color: var(--purple); }
.ind-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.ind-tag  { font-size: 11px; font-weight: 700; color: var(--purple); letter-spacing: .08em; text-transform: uppercase; margin-top: 10px; display: inline-block; }

/* Work / case study cards (consulting) */
#work { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.work-header { margin-bottom: 48px; }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 10px; padding: 36px 30px; transition: border-color .25s, transform .2s, box-shadow .2s; }
.work-card:hover { border-color: var(--purple-border); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.wc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.wc-industry  { font-size: 12px; font-weight: 600; color: var(--purple); letter-spacing: .06em; text-transform: uppercase; background: var(--purple-bg); padding: 4px 10px; border-radius: 4px; }
.wc-tech      { font-size: 11px; font-weight: 600; color: var(--gray-500); letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--gray-300); padding: 3px 8px; border-radius: 3px; }
.wc-title     { font-family: var(--serif); font-size: 19px; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.wc-body      { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; }
.wc-stats     { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.wc-stat-val  { font-family: var(--serif); font-size: 22px; color: var(--purple); line-height: 1; }
.wc-stat-label { font-size: 12px; color: var(--gray-500); margin-top: 3px; }
.wc-link { font-size: 14px; font-weight: 600; color: var(--purple); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.wc-link:hover { gap: 8px; }


/* ============================================================
   15. PERZO.HTML — PAGE-SPECIFIC STYLES
   ============================================================ */
#hero.perzo-hero { padding: 100px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-300); }
#hero.perzo-hero::before { content: ''; position: absolute; top: -120px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(15,168,156,.06) 0%, transparent 70%); pointer-events: none; }
.perzo-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow--teal { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--teal-p); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px; background: var(--teal-p-bg); border: 1px solid var(--teal-p-border); padding: 6px 14px; border-radius: 20px; }
.perzo-hero .hero-headline em { color: var(--teal-p); }
.perzo-hero-stats { display: flex; flex-direction: column; gap: 0; }
.perzo-hero-stats .hero-stat { padding: 28px 0; border-bottom: 1px solid var(--gray-300); }
.perzo-hero-stats .hero-stat:first-child { padding-top: 0; }
.perzo-hero-stats .hero-stat:last-child  { border-bottom: none; }
.perzo-hero-stats .hs-val   { font-family: var(--serif); font-size: 48px; line-height: 1; color: var(--teal-p); margin-bottom: 8px; font-weight: 400; }
.perzo-hero-stats .hs-label { font-size: 15px; color: var(--gray-600); line-height: 1.5; }

/* Problem */
#problem { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.problem-points { list-style: none; margin-top: 8px; }
.problem-points li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--gray-300); font-size: 16px; color: var(--gray-600); line-height: 1.7; }
.problem-points li:last-child { border-bottom: none; }
.pp-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--teal-p-bg2); border: 1px solid var(--teal-p-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.funnel-visual { background: var(--white); border: 1px solid var(--gray-300); border-radius: 10px; padding: 28px; position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.funnel-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-p), var(--teal-p2), transparent); }
.fv-label { font-family: var(--mono); font-size: 12px; color: var(--gray-500); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.funnel-row   { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.funnel-bar   { height: 38px; border-radius: 4px; display: flex; align-items: center; padding: 0 14px; font-size: 13px; font-weight: 500; }
.funnel-bar.anon  { background: rgba(15,168,156,.08); border: 1px solid rgba(15,168,156,.2); color: var(--teal-p); width: 100%; }
.funnel-bar.self  { background: rgba(201,145,58,.06); border: 1px solid rgba(201,145,58,.15); color: var(--gold); width: 38%; }
.funnel-bar.agent { background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.12); color: #dc2626; width: 62%; }
.funnel-pct   { font-family: var(--mono); font-size: 13px; color: var(--gray-500); min-width: 36px; text-align: right; }
.funnel-arrow { text-align: center; color: var(--gray-500); font-size: 12px; margin: 4px 0 4px 12px; }
.cost-row { display: flex; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-300); }
.cost-box { flex: 1; border-radius: 6px; padding: 14px; }
.cost-box.bad  { background: rgba(239,68,68,.04); border: 1px solid rgba(239,68,68,.1); }
.cost-box.good { background: var(--teal-p-bg); border: 1px solid var(--teal-p-border); }
.cost-val  { font-family: var(--mono); font-size: 20px; margin-bottom: 2px; }
.cost-box.bad  .cost-val { color: #dc2626; }
.cost-box.good .cost-val { color: var(--teal-p); }
.cost-desc { font-size: 12px; color: var(--gray-500); }

/* Features / modes */
#features { background: var(--white); }
.features-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.features-intro-body { font-size: 17px; color: var(--gray-600); line-height: 1.8; align-self: end; }
.mode-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.mode-card { background: var(--white); border-radius: 10px; border: 1px solid var(--gray-300); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.mode-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.mode-card.teal { border-top: 3px solid var(--teal-p); }
.mode-card.gold { border-top: 3px solid var(--gold); }
.mode-card-body { padding: 32px 28px; }
.mode-badge { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 18px; }
.mode-card.teal .mode-badge { background: var(--teal-p-bg2); color: var(--teal-p); border: 1px solid var(--teal-p-border); }
.mode-card.gold .mode-badge { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-border); }
.mode-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--dark); margin-bottom: 12px; }
.mode-body  { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.mode-examples { list-style: none; }
.mode-examples li { font-size: 14px; color: var(--gray-600); padding: 6px 0; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; gap: 8px; }
.mode-examples li:last-child { border-bottom: none; }
.mode-examples li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.mode-card.teal .mode-examples li::before { background: var(--teal-p); }
.mode-card.gold .mode-examples li::before { background: var(--gold); }
.mode-screenshot { border-top: 1px solid var(--gray-200); position: relative; overflow: hidden; background: var(--gray-100); }
.mode-screenshot img { width: 100%; height: auto; display: block; transition: opacity .3s ease; opacity: .9; }
.mode-card:hover .mode-screenshot img { opacity: 1; }
.mode-screenshot-label { position: absolute; bottom: 10px; left: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.mode-card.teal .mode-screenshot-label { background: rgba(15,168,156,.12); color: var(--teal-p); border: 1px solid var(--teal-p-border); }
.mode-card.gold .mode-screenshot-label { background: rgba(201,145,58,.1);  color: var(--gold);   border: 1px solid var(--gold-border); }
.priority-note { background: linear-gradient(135deg, var(--teal-p-bg) 0%, var(--gold-bg) 100%); border: 1px solid var(--gray-300); border-left: 3px solid var(--gold); border-radius: 6px; padding: 22px 28px; display: flex; align-items: flex-start; gap: 16px; font-size: 15px; color: var(--gray-700); line-height: 1.75; }
.pn-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.pn-text strong { color: var(--dark); }
.pn-sub { display: block; margin-top: 6px; color: var(--gray-500); font-size: 14px; }

/* ROI */
#roi { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.roi-grid  { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; margin-top: 48px; }
.roi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.roi-card  { background: var(--white); border: 1px solid var(--gray-300); border-radius: 8px; padding: 24px 20px; transition: border-color .2s, transform .2s; }
.roi-card:hover { border-color: var(--teal-p-border); transform: translateY(-2px); }
.roi-card.gold  { border-color: var(--gold-border); }
.roi-card.gold:hover { border-color: rgba(201,145,58,.3); }
.rc-val  { font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--teal-p); margin-bottom: 6px; font-weight: 400; }
.roi-card.gold .rc-val { color: var(--gold); }
.rc-unit  { font-size: 20px; }
.rc-label { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.rc-note  { font-size: 13px; color: var(--gray-500); margin-top: 8px; font-style: italic; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--dark); padding: 12px 14px; text-align: left; background: var(--gray-200); border-bottom: 2px solid var(--teal-p); }
.comparison-table th:last-child { color: var(--teal-p); }
.comparison-table td { padding: 12px 14px; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid var(--gray-300); background: var(--white); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: var(--gray-100); }
.comparison-table td:first-child { font-weight: 600; color: var(--dark); }
.comparison-table td.bad  { color: #dc2626; }
.comparison-table td.good { color: var(--teal-p); }
.table-note { font-size: 12px; color: var(--gray-500); margin-top: 10px; font-style: italic; }

/* Experiences */
#experiences { background: var(--white); }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.exp-card  { background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 8px; padding: 28px 24px; transition: border-color .2s, transform .2s; }
.exp-card:hover { border-color: var(--teal-p-border); transform: translateY(-2px); }
.exp-icon  { width: 40px; height: 40px; background: var(--teal-p-bg2); border: 1px solid var(--teal-p-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.exp-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.exp-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; }
.exp-example { background: var(--teal-p-bg); border: 1px solid var(--teal-p-border); border-radius: 4px; padding: 10px 12px; font-size: 14px; color: var(--teal-p); font-style: italic; line-height: 1.5; }

/* AI terminal */
#ai { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.ai-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; margin-top: 48px; }
.ai-terminal { background: var(--dark); border: 1px solid var(--gray-700); border-radius: 10px; overflow: hidden; font-family: var(--mono); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.at-header { background: var(--gray-900); border-bottom: 1px solid var(--gray-700); padding: 10px 14px; display: flex; align-items: center; gap: 7px; }
.at-dot { width: 10px; height: 10px; border-radius: 50%; }
.at-dot.r { background: #ff5f57; }
.at-dot.y { background: #febc2e; }
.at-dot.g { background: #28c840; }
.at-label { font-size: 13px; color: var(--gray-500); letter-spacing: .06em; margin-left: 8px; }
.at-body  { padding: 20px; }
.at-line  { font-size: 14px; line-height: 1.9; white-space: pre-wrap; color: var(--gray-400); }
.at-line .comment   { color: #7A9AAF; }
.at-line .key       { color: var(--teal-p2); }
.at-line .val       { color: var(--gold2); }
.at-line .str       { color: #98d8c0; }
.at-line .highlight { color: #F0F0F0; font-weight: 500; }
.at-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 10px 0; }
.ai-points { list-style: none; }
.ai-points li { padding: 20px 0; border-bottom: 1px solid var(--gray-300); display: flex; gap: 16px; align-items: flex-start; }
.ai-points li:last-child { border-bottom: none; }
.ai-pt-num   { font-family: var(--serif); font-size: 14px; color: var(--teal-p); background: var(--teal-p-bg2); width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--teal-p-border); margin-top: 2px; font-weight: 400; }
.ai-pt-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.ai-pt-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* Perzo CTA overrides */
#cta.perzo-cta::before { left: 50%; right: auto; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(15,168,156,.1) 0%, transparent 60%); }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,145,58,.08); border: 1px solid rgba(201,145,58,.2); border-radius: 20px; padding: 6px 16px; font-size: 14px; font-weight: 500; color: var(--gold2); letter-spacing: .04em; margin-bottom: 28px; }
.cta-headline.teal em { color: var(--teal-p2); }
.cta-btn.teal { background: var(--teal-p); box-shadow: 0 8px 32px rgba(15,168,156,.35); }
.cta-btn.teal:hover { background: var(--teal-p2); box-shadow: 0 12px 40px rgba(15,168,156,.45); }
.cta-perks { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.cta-perk  { font-size: 14px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.cta-perk::before { content: '✓'; color: var(--teal-p2); font-weight: 700; }


/* ============================================================
   16. TALENT.HTML — PAGE-SPECIFIC STYLES
   ============================================================ */
#hero.talent-hero { padding: 100px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-300); }
#hero.talent-hero::before { content: ''; position: absolute; top: -100px; right: -180px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(79,70,229,.05) 0%, transparent 70%); pointer-events: none; }
.talent-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* Value props row */
#value { padding: 80px 0; background: var(--gray-100); border-bottom: 1px solid var(--gray-300); }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { padding: 28px 24px; }
.vc-num   { font-family: var(--serif); font-size: 36px; color: var(--purple); line-height: 1; margin-bottom: 10px; }
/* .vc-title and .vc-body already defined in about.html block above — shared */

/* Specializations */
#specializations { background: var(--white); }
.spec-header { max-width: 640px; margin-bottom: 56px; }
.spec-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.spec-card   { border-radius: 10px; padding: 36px 32px; position: relative; overflow: hidden; transition: transform .2s; }
.spec-card:hover { transform: translateY(-3px); }
.spec-card.primary   { background: var(--purple-bg); border: 1px solid var(--purple-border); }
.spec-card.secondary { background: var(--gray-100);  border: 1px solid var(--gray-300); }
.spec-badge { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 18px; }
.spec-card.primary   .spec-badge { background: rgba(79,70,229,.08); color: var(--purple); border: 1px solid rgba(79,70,229,.15); }
.spec-card.secondary .spec-badge { background: var(--white); color: var(--gray-600); border: 1px solid var(--gray-300); }
.spec-title { font-family: var(--serif); font-size: 24px; color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.spec-body  { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.spec-roles { list-style: none; }
.spec-roles li { font-size: 14px; color: var(--gray-700); padding: 8px 0; border-top: 1px solid rgba(0,0,0,.05); display: flex; align-items: center; gap: 8px; line-height: 1.5; }
.spec-roles li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.spec-card.primary   .spec-roles li::before { background: var(--purple); }
.spec-card.secondary .spec-roles li::before { background: var(--gray-500); }

/* Process */
#process { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.process-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.process-steps { list-style: none; }
.process-step { padding: 28px 0; border-bottom: 1px solid var(--gray-300); }
.process-step:first-child { padding-top: 0; }
.process-step:last-child  { border-bottom: none; }
.ps-title  { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.ps-num    { font-family: var(--serif); font-size: 36px; font-style: italic; color: var(--purple); line-height: 1; flex-shrink: 0; }
.ps-body   { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.ps-detail { font-size: 13px; color: var(--gray-500); font-style: italic; margin-top: 6px; }

/* Testimonial */
#testimonial { background: var(--dark); padding: 100px 0; position: relative; overflow: hidden; }
#testimonial::before { content: ''; position: absolute; width: 700px; height: 700px; left: -200px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 65%); pointer-events: none; }
#testimonial::after  { content: ''; position: absolute; width: 500px; height: 500px; right: -150px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 65%); pointer-events: none; }
.testimonial-inner      { position: relative; z-index: 1; }
.testimonial-eyebrow    { font-size: 13px; font-weight: 600; color: var(--purple-light); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.testimonial-headline   { font-family: var(--serif); font-size: clamp(28px,3.5vw,44px); line-height: 1.12; color: var(--white); margin-bottom: 16px; font-weight: 400; }
.testimonial-headline em { font-style: italic; color: var(--purple-light); }
.testimonial-grid       { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; margin-top: 56px; }
.testimonial-quote-mark { font-family: var(--serif); font-size: 80px; color: var(--purple-light); line-height: .8; margin-bottom: 8px; opacity: .7; }
.testimonial-quote      { font-family: var(--serif); font-size: clamp(18px,2.2vw,24px); font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 28px; }
.testimonial-attr       { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name       { font-size: 16px; font-weight: 600; color: var(--white); }
.testimonial-role       { font-size: 14px; color: var(--gray-500); }
.testimonial-video-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
.testimonial-video-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }

/* Differentiators */
#differentiators { background: var(--white); }
.diff-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-headline { font-family: var(--serif); font-size: clamp(32px,4vw,52px); line-height: 1.08; color: var(--dark); margin-bottom: 24px; font-weight: 400; }
.diff-headline em { font-style: italic; color: var(--purple); }
.diff-body { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
/* consulting.html reuses .comparison-table — talent.html has a different styled version */
.diff-comparison-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-300); }
.diff-comparison-table thead tr th { padding: 14px 20px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: left; }
.diff-comparison-table thead tr th:first-child { background: #f3f0ff; color: var(--gray-600); width: 50%; }
.diff-comparison-table thead tr th:last-child  { background: var(--purple); color: var(--white); }
.diff-comparison-table tbody tr td { padding: 16px 20px; font-size: 14px; line-height: 1.6; border-top: 1px solid var(--gray-300); vertical-align: top; }
.diff-comparison-table tbody tr td:first-child { color: #b45309; background: #fffbeb; }
.diff-comparison-table tbody tr td:last-child  { color: var(--purple); background: #fafafe; font-weight: 500; }
.diff-comparison-table tbody tr:last-child td  { border-bottom: none; }

/* Seekers */
#seekers { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); padding: 80px 0; }
.seekers-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.seekers-title  { font-family: var(--serif); font-size: clamp(24px,3vw,34px); color: var(--dark); margin-bottom: 16px; line-height: 1.15; font-weight: 400; }
.seekers-title em { font-style: italic; color: var(--purple); }
.seekers-body   { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.seekers-perks  { list-style: none; margin-bottom: 28px; }
.seekers-perks li { font-size: 15px; color: var(--gray-700); padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.seekers-perks li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.seekers-stats { display: flex; flex-direction: column; gap: 16px; }
.ss-card  { background: var(--white); border: 1px solid var(--gray-300); border-radius: 8px; padding: 24px; display: flex; align-items: center; gap: 20px; }
.ss-val   { font-family: var(--serif); font-size: 32px; color: var(--purple); line-height: 1; flex-shrink: 0; min-width: 80px; }
.ss-text  { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* Talent CTA overrides */
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--gray-400); font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 6px; text-decoration: none; border: 1px solid rgba(255,255,255,.15); transition: border-color .2s, color .2s; }
.cta-btn-secondary:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ============================================================
   OURWORK.HTML — PAGE-SPECIFIC STYLES
   Add to style.css after section 13 (about.html)
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────── */
#hero.ourwork-hero {
  padding:       80px 0 72px;
  position:      relative;
  overflow:      hidden;
  border-bottom: 1px solid var(--gray-300);
  background:    var(--gray-100);
}
#hero.ourwork-hero::before {
  content:    '';
  position:   absolute;
  top:        -120px;
  right:      -180px;
  width:      650px;
  height:     650px;
  background: radial-gradient(circle, rgba(79,70,229,.05) 0%, transparent 70%);
  pointer-events: none;
}
.ourwork-hero-grid {
  display:               grid;
  grid-template-columns: 1.1fr .9fr;
  gap:                   80px;
  align-items:           center;
  position:              relative;
  z-index:               1;
}
.ourwork-hero-stats {
  display:        flex;
  flex-direction: column;
  gap:            0;
}
.ourwork-hero-stats .hero-stat {
  padding:       24px 0;
  border-bottom: 1px solid var(--gray-300);
}
.ourwork-hero-stats .hero-stat:first-child { padding-top: 0; }
.ourwork-hero-stats .hero-stat:last-child  { border-bottom: none; }
.ourwork-hero-stats .hs-val {
  font-family:   var(--serif);
  font-size:     42px;
  color:         var(--purple);
  line-height:   1;
  margin-bottom: 6px;
}
.ourwork-hero-stats .hs-label {
  font-size:   14px;
  color:       var(--gray-600);
  line-height: 1.5;
}

/* ── Filter bar ─────────────────────────────────────────── */
#filter-bar {
  background:    var(--white);
  border-bottom: 1px solid var(--gray-300);
  padding:       0;
  position:      sticky;
  top:           57px;
  z-index:       90;
}
.filter-inner {
  max-width:   1200px;
  margin:      0 auto;
  padding:     0 40px;
  display:     flex;
  align-items: center;
  gap:         0;
  overflow-x:  auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  font-size:      14px;
  font-weight:    500;
  color:          var(--gray-600);
  background:     transparent;
  border:         none;
  border-bottom:  2px solid transparent;
  padding:        14px 20px;
  cursor:         pointer;
  white-space:    nowrap;
  transition:     color .2s, border-color .2s;
  flex-shrink:    0;
}
.filter-btn:hover  { color: var(--purple); }
.filter-btn.active {
  color:         var(--purple);
  border-bottom-color: var(--purple);
  font-weight:   600;
}

/* ── Case study cards ───────────────────────────────────── */
#cases { background: var(--white); padding: 80px 0; }

.cases-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   48px;
}

.case-card {
  background:    var(--white);
  border:        1px solid var(--gray-300);
  border-radius: 12px;
  overflow:      hidden;
  transition:    border-color .25s, box-shadow .25s;
}
.case-card:hover {
  border-color: var(--purple-border);
  box-shadow:   0 8px 32px rgba(0,0,0,.07);
}

/* Top accent stripe */
.case-stripe {
  height:     4px;
  width:      100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.case-stripe.teal {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.case-body { padding: 40px 44px; }

/* Header row */
.case-header {
  display:         flex;
  align-items:     flex-start;
  justify-content: space-between;
  gap:             24px;
  margin-bottom:   28px;
}
.case-meta { flex: 1; }
.case-tags {
  display:     flex;
  align-items: center;
  gap:         8px;
  flex-wrap:   wrap;
  margin-bottom: 12px;
}
.case-tag {
  font-size:      11px;
  font-weight:    700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding:        4px 10px;
  border-radius:  4px;
}
.case-tag.industry {
  background: var(--purple-bg);
  color:      var(--purple);
  border:     1px solid var(--purple-border);
}
.case-tag.industry.teal {
  background: var(--teal-bg);
  color:      var(--teal);
  border:     1px solid var(--teal-border);
}
.case-tag.type {
  background: var(--gray-200);
  color:      var(--gray-700);
  border:     1px solid var(--gray-300);
}
.case-client {
  font-size:   13px;
  font-weight: 600;
  color:       var(--gray-500);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-title {
  font-family:   var(--serif);
  font-size:     clamp(22px, 2.5vw, 28px);
  color:         var(--dark);
  line-height:   1.2;
  font-weight:   400;
  margin-bottom: 0;
}
.case-title em { font-style: italic; color: var(--purple); }

/* KPI strip */
.case-kpis {
  display:    flex;
  gap:        0;
  background: var(--gray-100);
  border:     1px solid var(--gray-300);
  border-radius: 8px;
  overflow:   hidden;
  flex-shrink: 0;
  min-width:  220px;
  max-width:  260px;
  align-self: flex-start;
}
.kpi {
  flex:        1;
  padding:     16px 14px;
  text-align:  center;
  border-right: 1px solid var(--gray-300);
}
.kpi:last-child { border-right: none; }
.kpi-val {
  font-family:   var(--serif);
  font-size:     24px;
  color:         var(--purple);
  line-height:   1;
  margin-bottom: 4px;
}
.kpi.teal .kpi-val { color: var(--teal); }
.kpi-label {
  font-size:   11px;
  color:       var(--gray-500);
  line-height: 1.4;
}

/* Divider between header and content */
.case-divider {
  border:        none;
  border-top:    1px solid var(--gray-300);
  margin:        0 0 28px;
}

/* Two-column layout: narrative + sidebar */
.case-content {
  display:               grid;
  grid-template-columns: 1fr 300px;
  gap:                   48px;
  align-items:           start;
}

/* Challenge / Solution / Outcome blocks */
.case-section { margin-bottom: 28px; }
.case-section:last-child { margin-bottom: 0; }
.case-section-label {
  font-size:      11px;
  font-weight:    700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          var(--purple);
  margin-bottom:  10px;
  display:        flex;
  align-items:    center;
  gap:            8px;
}
.case-section-label.teal { color: var(--teal); }
.case-section-label::after {
  content:    '';
  flex:       1;
  height:     1px;
  background: var(--gray-300);
}
.case-section p {
  font-size:   15px;
  color:       var(--gray-600);
  line-height: 1.8;
  margin-bottom: 10px;
}
.case-section p:last-child { margin-bottom: 0; }
.case-bullets {
  list-style: none;
  margin-top: 10px;
}
.case-bullets li {
  font-size:   14px;
  color:       var(--gray-600);
  padding:     6px 0;
  border-bottom: 1px solid var(--gray-200);
  display:     flex;
  align-items: flex-start;
  gap:         8px;
  line-height: 1.6;
}
.case-bullets li:last-child { border-bottom: none; }
.case-bullets li::before {
  content:     '→';
  color:       var(--purple);
  font-weight: 600;
  flex-shrink: 0;
  font-size:   13px;
  margin-top:  1px;
}
.case-bullets.teal li::before { color: var(--teal); }

/* Sidebar */
.case-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background:    var(--gray-100);
  border:        1px solid var(--gray-300);
  border-radius: 8px;
  padding:       20px;
}
.sidebar-card-title {
  font-size:      11px;
  font-weight:    700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:          var(--gray-500);
  margin-bottom:  14px;
}
.sidebar-tech-list {
  list-style: none;
  display:    flex;
  flex-wrap:  wrap;
  gap:        8px;
}
.sidebar-tech-list li {
  font-size:     12px;
  font-weight:   500;
  color:         var(--gray-700);
  background:    var(--white);
  border:        1px solid var(--gray-300);
  border-radius: 4px;
  padding:       4px 10px;
  line-height:   1.4;
}
.sidebar-outcomes { list-style: none; }
.sidebar-outcomes li {
  font-size:     13px;
  color:         var(--gray-700);
  padding:       8px 0;
  border-bottom: 1px solid var(--gray-200);
  display:       flex;
  align-items:   flex-start;
  gap:           8px;
  line-height:   1.55;
}
.sidebar-outcomes li:last-child { border-bottom: none; }
.outcome-check {
  width:        16px;
  height:       16px;
  border-radius: 50%;
  background:   var(--purple-bg2);
  border:       1px solid var(--purple-border);
  display:      flex;
  align-items:  center;
  justify-content: center;
  flex-shrink:  0;
  margin-top:   1px;
}
.outcome-check.teal {
  background: var(--teal-bg);
  border-color: var(--teal-border);
}
.outcome-check svg {
  width:  8px;
  height: 8px;
}
.sidebar-engagement { display: flex; flex-direction: column; gap: 10px; }
.eng-row {
  display:       flex;
  gap:           10px;
  font-size:     13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  align-items:   flex-start;
}
.eng-row:last-child { border-bottom: none; padding-bottom: 0; }
.eng-label {
  font-weight: 600;
  color:       var(--dark);
  min-width:   90px;
  flex-shrink: 0;
}
.eng-val { color: var(--gray-600); line-height: 1.5; }

/* CTA banner at bottom of page */
#work-cta {
  background: var(--dark);
  padding:    80px 0;
  position:   relative;
  overflow:   hidden;
}
#work-cta::before {
  content:    '';
  position:   absolute;
  width:      600px;
  height:     600px;
  right:      -150px;
  top:        50%;
  transform:  translateY(-50%);
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .ourwork-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-body         { padding: 28px 24px; }
  .case-header       { flex-direction: column; }
  .case-kpis         { max-width: 100%; min-width: 0; }
  .case-content      { grid-template-columns: 1fr; }
  .case-sidebar      { gap: 16px; }
  .filter-inner      { padding: 0 20px; }
}

/* ============================================================
   MOBILE RESPONSIVE FIXES
   These rules patch issues found across all pages.
   Add these at the very END of style.css so they take
   precedence over all earlier declarations.
   ============================================================ */

/* ── 2. NAVIGATION — container padding on small screens ── */
@media (max-width: 600px) {
  .nav-inner,
  .container,
  .filter-inner,
  .footer-inner { padding-left: 20px; padding-right: 20px; }

  .utility-inner { padding-left: 20px; padding-right: 20px; }
}


/* ── 3. HERO — index.html ─────────────────────────────── */
@media (max-width: 900px) {
  #hero.index-hero,
  #hero:not(.about-hero):not(.consulting-hero):not(.perzo-hero):not(.ourwork-hero):not(.talent-hero) {
    padding: 48px 0 40px;
  }
  .hero-grid { gap: 32px; }
  .hero-sub  { font-size: 16px; }
  .hero-image { min-height: 260px; }
  .hero-image img { min-height: 260px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(28px, 8vw, 36px); }
  .hero-sub      { font-size: 15px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-teal { width: 100%; justify-content: center; }
}


/* ── 4. TRUST SECTION ─────────────────────────────────── */
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-tile { height: 68px; padding: 10px 12px; }
  .trust-tile img { max-height: 28px; max-width: 100px; }
  .trust-stats { grid-template-columns: 1fr; }
  .trust-stat  { padding: 20px 16px; border-right: none; border-bottom: 1px solid var(--gray-300); }
  .trust-stat:last-child { border-bottom: none; }
}


/* ── 5. PILLARS (index.html) ──────────────────────────── */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .pillar-card:first-child { border-radius: 12px; margin-left: 0; }
  .pillar-card:last-child  { border-radius: 12px; }
  .pillar-image { height: 200px; }
  .pillar-body-wrap { padding: 24px 24px 28px; }
}


/* ── 6. PROOF CARDS (index.html) ─────────────────────── */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .proof-card { margin-left: 0; border-radius: 10px !important; }
  .proof-header-grid { gap: 32px; }
}

@media (max-width: 600px) {
  .proof-card-inner { padding: 24px 20px; }
  .proof-stats { gap: 16px; }
}


/* ── 7. ABOUT HERO ────────────────────────────────────── */
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero .hero-image video {
    min-height: 260px;
    max-height: 340px;
  }
}


/* ── 8. ABOUT — NUMBERS ───────────────────────────────── */
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .num-card { border-bottom: 1px solid var(--gray-300); padding: 24px 16px; }
}

@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── 9. ABOUT — VALUES ────────────────────────────────── */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card  { padding: 24px 20px; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}


/* ── 10. ABOUT — LOCATIONS ────────────────────────────── */
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .loc-grid { grid-template-columns: 1fr; }
}


/* ── 11. ABOUT — CONTACT FORM ─────────────────────────── */
@media (max-width: 600px) {
  .contact-grid  { gap: 40px; }
  .form-row      { grid-template-columns: 1fr; }
  .form-submit   { font-size: 15px; }
}


/* ── 12. ABOUT — LEADERSHIP CARDS ────────────────────── */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 100%; }
}

@media (max-width: 480px) {
  .team-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-photo    { aspect-ratio: 1 / 1; }
  .card-body     { padding: 10px 12px 12px; }
  .leader-name   { font-size: 13px; }
  .leader-title  { font-size: 10px; margin-bottom: 6px; }
  .leader-bio    { display: none; } /* too cramped at 2-col on small phones */
  .card-footer   { padding-top: 8px; }
  .li-link       { font-size: 11px; }
}


/* ── 13. PAGE NAV (about.html) ────────────────────────── */
@media (max-width: 600px) {
  .page-nav-inner { padding: 0 12px; }
  .page-nav-link  { font-size: 13px; padding: 12px 14px; }
}


/* ── 14. CONSULTING — HERO STATS ──────────────────────── */
@media (max-width: 900px) {
  .hero-stats { flex-direction: column; }
  .hero-stat  {
    border-right:  none;
    border-bottom: 1px solid var(--gray-300);
    padding: 18px 0 !important;
  }
  .hero-stat:last-child { border-bottom: none; }
}


/* ── 15. CONSULTING — PRACTICE CARDS ─────────────────── */
@media (max-width: 900px) {
  .practices-grid { grid-template-columns: 1fr; }
  .pc-body-wrap   { padding: 20px 22px 24px; }
}


/* ── 16. CONSULTING — PLATFORMS ───────────────────────── */
@media (max-width: 900px) {
  .platforms-grid { grid-template-columns: 1fr; gap: 20px; }
  .platform-card  { padding: 28px 24px; }
}


/* ── 17. CONSULTING — INDUSTRIES ─────────────────────── */
@media (max-width: 600px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ind-card { padding: 20px 16px; }
  .ind-monogram { font-size: 36px; }
}


/* ── 18. PERZO — HERO ─────────────────────────────────── */
@media (max-width: 900px) {
  .perzo-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .perzo-hero-stats { border-top: 1px solid var(--gray-300); padding-top: 24px; }
}


/* ── 19. PERZO — FEATURES ─────────────────────────────── */
@media (max-width: 900px) {
  .features-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .mode-cards     { grid-template-columns: 1fr; }
}


/* ── 20. PERZO — ROI ──────────────────────────────────── */
@media (max-width: 900px) {
  .roi-grid  { grid-template-columns: 1fr; gap: 32px; }
  .roi-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .roi-cards { grid-template-columns: 1fr; }
}


/* ── 21. PERZO — EXPERIENCES ──────────────────────────── */
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .exp-grid { grid-template-columns: 1fr; }
}


/* ── 22. TALENT — VALUE GRID ──────────────────────────── */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .value-card { border-bottom: 1px solid var(--gray-300); }
}

@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
}


/* ── 23. TALENT — SPEC CARDS ─────────────────────────── */
@media (max-width: 900px) {
  .spec-grid { grid-template-columns: 1fr; gap: 20px; }
  .spec-card { padding: 24px 20px; }
}


/* ── 24. TALENT — SEEKERS ─────────────────────────────── */
@media (max-width: 900px) {
  .seekers-inner { grid-template-columns: 1fr; gap: 40px; }
}


/* ── 25. TALENT — DIFFERENTIATORS ────────────────────── */
@media (max-width: 900px) {
  .diff-layout { grid-template-columns: 1fr; gap: 40px; }
  .diff-comparison-table thead tr th,
  .diff-comparison-table tbody tr td { padding: 12px 14px; font-size: 13px; }
}


/* ── 26. OURWORK — HERO ───────────────────────────────── */
@media (max-width: 900px) {
  .ourwork-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .ourwork-hero-stats { border-top: 1px solid var(--gray-300); padding-top: 24px; }
  .case-body  { padding: 24px 20px; }
  .case-kpis  { max-width: 100%; min-width: 0; width: 100%; }
}

@media (max-width: 600px) {
  .case-kpis      { flex-direction: row; }
  .kpi            { padding: 12px 10px; }
  .kpi-val        { font-size: 20px; }
  .case-section p { font-size: 14px; }
  .case-bullets li { font-size: 13px; }
  .sidebar-card   { padding: 16px; }
  .eng-label      { min-width: 76px; }
}


/* ── 27. CTA SECTIONS — all pages ────────────────────── */
@media (max-width: 600px) {
  #cta, #work-cta { padding: 60px 0; }
  .cta-headline   { font-size: clamp(26px, 7vw, 36px); }
  .cta-sub        { font-size: 16px; }
  .cta-btn        { width: 100%; justify-content: center; padding: 15px 24px; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .cta-btn-secondary { width: 100%; justify-content: center; }
}


/* ── 28. FOOTER ───────────────────────────────────────── */
@media (max-width: 600px) {
  .footer-inner   { padding: 0 20px; }
  .footer-social  { gap: 12px; }
}


/* ── 29. SECTION PADDING — all pages ─────────────────── */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  #numbers, #seekers, #value, #certs { padding: 48px 0; }
}

@media (max-width: 600px) {
  section { padding: 48px 0; }
}


/* ── 30. TYPOGRAPHY SCALE — small screens ────────────── */
@media (max-width: 600px) {
  .section-title { font-size: clamp(24px, 7vw, 32px); }
  .section-body  { font-size: 15px; }
  .typo-stat     { font-size: clamp(40px, 12vw, 64px); }
  .typo-text     { font-size: clamp(18px, 5vw, 24px); }
}

/* Offset anchor scroll for sticky nav + filter bar */
.case-card[id] {
  scroll-margin-top: 120px;
}

/* ── Go to top button ─────────────────────────────────── */
.go-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--purple);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
}
.go-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-top:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.go-top:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .go-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ============================================================
   HERO QUOTE BLOCK
   Add to your main stylesheet or about.css
   ============================================================ */

   .hero-quote-block {
    position: relative;
    padding: 48px 44px 40px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow:
      0 1px 2px rgba(0,0,0,.04),
      0 8px 32px rgba(0,0,0,.07),
      0 0 0 1px rgba(79,70,229,.04);
  
    /* Subtle left accent */
    border-left: 4px solid #4f46e5;
  
    /* Entrance animation */
    animation: hq-rise .7s ease .3s both;
  }
  
  @keyframes hq-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* Opening quotation mark */
  .hq-mark {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 96px;
    line-height: .75;
    color: #4f46e5;
    opacity: .15;
    position: absolute;
    top: 24px;
    left: 36px;
    pointer-events: none;
    user-select: none;
  }
  
  /* Quote text */
  .hq-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.65;
    color: #111827;
    margin: 0 0 28px;
    position: relative; /* sits above the decorative mark */
    z-index: 1;
  }
  
  .hq-quote em {
    font-style: italic;
    color: #4f46e5;
  }
  
  /* Attribution row */
  .hq-attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .hq-attr-line {
    width: 28px;
    height: 1px;
    background: #4f46e5;
    opacity: .4;
    flex-shrink: 0;
  }
  
  .hq-attr-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .hq-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    letter-spacing: .01em;
  }
  
  .hq-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
  }
  
  /* Credibility tag */
  .hq-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6B7280;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 4px 12px;
    border-radius: 20px;
  }
  
  .hq-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0B8FA3;
    flex-shrink: 0;
  }
  
  /* ── Responsive ── */
  @media (max-width: 860px) {
    .hero-quote-block {
      padding: 36px 28px 32px;
    }
    .hq-mark {
      font-size: 72px;
      top: 18px;
      left: 24px;
    }
  }

  #scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5 0%, #0B8FA3 100%);
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    transition: width .1s linear;
    pointer-events: none;
  }