/* ═══════════════════════════════════════════════════════
   INSYT × ORANGE FOUNDATION — DISCOVERY PRESENTATION
   Insyt Brand: Teal #00C2CB + Near-Black #1A1A1A
   Orange Foundation Brand: #FF6600
   Together: Teal meets Orange — sharp, warm, purposeful
═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Insyt brand */
  --teal:          #00C2CB;
  --teal-dark:     #009AA2;
  --teal-deeper:   #007880;
  --teal-pale:     #e0f7f8;
  --teal-soft:     #f0fbfc;
  --insyt-black:   #1A1A1A;
  --insyt-dark:    #111111;

  /* Orange Foundation brand */
  --orange:        #FF6600;
  --orange-light:  #FF8533;
  --orange-pale:   #fff3e0;

  /* Dark section palette — warmer dark, not cold navy */
  --dark-bg:       #0f1213;
  --dark-surface:  #171c1d;
  --dark-card:     #1d2426;
  --dark-border:   rgba(255,255,255,0.08);

  --white:         #ffffff;
  --grey-50:       #f8f9fa;
  --grey-100:      #f1f3f5;
  --grey-200:      #e9ecef;
  --grey-300:      #dee2e6;
  --grey-400:      #ced4da;
  --grey-500:      #6c757d;
  --grey-600:      #495057;
  --grey-700:      #343a40;
  --grey-900:      #212529;
  --green:         #2e7d32;
  --purple:        #6a1b9a;
  --red:           #c62828;
  --navy:          #00C2CB;
  --font:          'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
  --shadow:        0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 36px rgba(0,0,0,.13);
  --transition:    all 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--teal-dark));
  width: 0%; z-index: 9999; transition: width 0.1s linear;
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION UTILITIES ── */
.section-light { background: var(--white); padding: 6rem 0; }
.section-dark   { background: var(--dark-bg); padding: 6rem 0; }

/* ── SECTION LABELS ── */
.section-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange);
}
.light-label { color: rgba(255,255,255,0.5); }
.label-line { height: 2px; width: 28px; border-radius: 2px; flex-shrink: 0; }
.insyt-line  { background: var(--teal); }
.teal-line   { background: var(--teal); }
.orange-line { background: var(--orange); }

/* ── HEADINGS ── */
.section-h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.2;
  color: var(--grey-900); margin-bottom: 1rem;
}
.white-h2   { color: white; }
.text-orange { color: var(--orange); }
.text-teal   { color: var(--teal); }
.section-sub {
  font-size: 1.05rem; color: var(--grey-500);
  max-width: 660px; line-height: 1.75; margin-bottom: 3rem;
}
.section-sub-light {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 660px; line-height: 1.75; margin-bottom: 3rem;
}

/* ═══════════════════════════
   PDF FAB BUTTON
═══════════════════════════ */
.pdf-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 2000;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pdf-fab.visible { opacity: 1; transform: translateY(0); }
.pdf-fab-btn {
  display: flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; border-radius: 100px;
  padding: 0.75rem 1.35rem;
  font-family: var(--font); font-weight: 700; font-size: 0.82rem;
  box-shadow: 0 6px 24px rgba(255,102,0,0.38);
  transition: var(--transition);
}
.pdf-fab-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,102,0,0.48); }
.footer-pdf-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 0.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.btn-pdf-footer {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,102,0,0.12); color: var(--orange);
  border: 1px solid rgba(255,102,0,0.3); border-radius: 100px;
  padding: 0.55rem 1.3rem; font-family: var(--font);
  font-weight: 700; font-size: 0.8rem; cursor: pointer;
  transition: var(--transition);
}
.btn-pdf-footer:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.footer-pdf-hint { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════
   LOGO STYLES
═══════════════════════════ */

/* Navbar logos */
.nav-logo-insyt,
.nav-logo-orange {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  display: block;
  object-fit: contain;
  object-position: center;
  transition: var(--transition);
}
.insyt-nav-logo {
  height: 36px;
  width: auto;
  /* Insyt logo has white background — give it a subtle container */
  background: white;
  border-radius: 6px;
  padding: 2px 6px;
}
.orange-nav-logo {
  height: 36px;
  width: auto;
  /* Orange Foundation logo has black background */
  background: #000;
  border-radius: 6px;
  padding: 2px 6px;
}
.nav-logo-insyt:hover .insyt-nav-logo,
.nav-logo-orange:hover .orange-nav-logo {
  opacity: 0.85;
}

/* Hero logos */
.hero-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  transition: var(--transition);
}
.insyt-hero-wrap {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.orange-hero-wrap {
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.hero-real-logo {
  display: block;
  object-fit: contain;
  object-position: center;
}
.insyt-hero-img {
  height: 64px;
  width: auto;
  max-width: 200px;
}
.orange-hero-img {
  height: 64px;
  width: auto;
  max-width: 180px;
}
.hero-plus {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.25);
  font-weight: 200;
  line-height: 1;
}

/* Footer logo */
.footer-insyt-logo {
  height: 44px;
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 4px 8px;
  object-fit: contain;
}

/* Responsive logos */
@media (max-width: 700px) {
  .insyt-nav-logo,
  .orange-nav-logo  { height: 28px; }
  .insyt-hero-img,
  .orange-hero-img  { height: 48px; }
  .hero-logo-img-wrap { padding: 0.75rem 1.1rem; }
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-200);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-x { color: var(--grey-300); font-size: 1.1rem; font-weight: 300; }
.nav-links {
  display: flex; align-items: center; gap: 0.15rem; flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  color: var(--grey-600); padding: 0.4rem 0.7rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); background: var(--orange-pale); }
.nav-appendix { border: 1px solid var(--grey-300) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  width: 30px; padding: 3px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--grey-600); border-radius: 2px; transition: var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 1rem 2rem 1.25rem; gap: 0.2rem;
  border-top: 1px solid var(--grey-200);
}
.mobile-menu a {
  font-size: 0.88rem; font-weight: 500; color: var(--grey-600);
  padding: 0.55rem 0.7rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-pale); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--dark-bg); padding: 7rem 0 5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow-orange {
  position: absolute; top: -15%; right: -8%; width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 65%);
}
.hero-glow-blue {
  position: absolute; bottom: -10%; left: -5%; width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,71,171,0.1) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-for-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.22);
  color: rgba(255,150,80,1); padding: 0.45rem 1.15rem; border-radius: 100px;
  font-size: 0.8rem; font-family: var(--font); font-weight: 600;
  margin-bottom: 2.5rem; letter-spacing: 0.01em;
}
.hero-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.hero-logo { display: flex; align-items: center; gap: 1rem; }
.hl-mark {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.insyt-mark  { background: var(--teal); color: white; font-family: var(--font); font-weight: 900; }
.orange-mark { background: var(--orange); color: white; font-size: 0.85rem; }
.hl-text strong {
  display: block; font-family: var(--font); font-weight: 800;
  font-size: 0.95rem; color: white; letter-spacing: 0.04em;
}
.hl-text span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hero-plus { font-size: 2.2rem; color: rgba(255,255,255,0.18); font-weight: 200; }
.hero-headline {
  font-family: var(--font); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.1; color: white; margin-bottom: 1.5rem;
}
.headline-orange { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,0.65);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-family: var(--font); font-weight: 700;
  font-size: 0.92rem; padding: 0.85rem 1.9rem; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(255,102,0,0.32); transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,102,0,0.42); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18); font-family: var(--font);
  font-weight: 600; font-size: 0.92rem; padding: 0.85rem 1.9rem;
  border-radius: 100px; transition: var(--transition);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.07); color: white; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 1.15rem 2rem;
  max-width: 680px; margin: 0 auto;
}
.hstat-item { text-align: center; padding: 0 1.35rem; }
.hstat-item strong {
  display: block; font-family: var(--font); font-weight: 800;
  font-size: 1.15rem; color: var(--orange);
}
.hstat-item span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hstat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.09); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 2;
}
.hero-scroll-hint span { font-size: 0.72rem; color: rgba(255,255,255,0.35); display: block; margin-bottom: 0.5rem; }
.scroll-chevron {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto; color: rgba(255,255,255,0.35); font-size: 0.65rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ═══════════════════════════
   WHO WE ARE
═══════════════════════════ */
.wwa-section { padding: 6rem 0; }
.wwa-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 0.5rem;
}
.wwa-text h2 {
  font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; color: var(--grey-900); margin-bottom: 1.25rem;
}
.wwa-lead {
  font-size: 1.02rem; font-weight: 500; color: var(--grey-700);
  line-height: 1.75; margin-bottom: 0.875rem;
}
.wwa-body {
  font-size: 0.93rem; color: var(--grey-600);
  line-height: 1.8; margin-bottom: 0.75rem;
}
.wwa-quote {
  margin-top: 1.75rem; padding: 1.25rem 1.5rem;
  background: var(--grey-50); border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  display: flex; gap: 0.875rem; align-items: flex-start;
}
.wwa-quote i { color: var(--orange); opacity: 0.5; font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.wwa-quote p { font-size: 0.88rem; color: var(--grey-700); line-height: 1.65; font-style: italic; }
.wwa-card-main {
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.15rem;
}
.wwa-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--grey-200);
}
.wca-icon {
  width: 42px; height: 42px; background: var(--teal); color: white;
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.wwa-card-header h3 { font-family: var(--font); font-weight: 700; font-size: 0.95rem; color: var(--grey-900); }
.wwa-card-header p  { font-size: 0.78rem; color: var(--grey-500); }
.wwa-steps { display: flex; flex-direction: column; gap: 1rem; }
.wwa-step  { display: flex; align-items: flex-start; gap: 0.875rem; }
.ws-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: white; font-family: var(--font);
  font-weight: 800; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.wwa-step strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--grey-900); }
.wwa-step span   { font-size: 0.78rem; color: var(--grey-500); line-height: 1.5; }
.wwa-proof-row { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.15rem; }
.wwa-proof-item {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem; background: var(--grey-50);
  border-radius: var(--radius); border: 1px solid var(--grey-200);
}
.wpi-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.wwa-proof-item strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--grey-900); }
.wwa-proof-item span  { font-size: 0.78rem; color: var(--grey-500); }
.wwa-naics {
  background: var(--insyt-black); color: white;
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
}
.naics-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 0.65rem; }
.naics-list  { display: flex; flex-direction: column; gap: 0.35rem; }
.naics-list span { font-size: 0.78rem; color: rgba(255,255,255,0.78); }

/* ═══════════════════════════
   WHAT WE DO — SECTORS
═══════════════════════════ */
.wwd-section { padding: 6rem 0; }
.sectors-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.15rem;
}
.sector-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  position: relative; transition: var(--transition);
}
.sector-card:hover { border-color: rgba(255,102,0,0.25); transform: translateY(-4px); }
.featured-sector {
  border-color: rgba(255,102,0,0.28) !important;
  background: linear-gradient(150deg, #1c2330 0%, rgba(255,102,0,0.05) 100%);
}
.sec-featured-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  color: var(--orange); background: rgba(255,102,0,0.12);
  border-radius: 100px; padding: 0.2rem 0.65rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.sec-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.gov-sec-icon    { background: rgba(255,102,0,0.12); color: var(--orange); }
.found-sec-icon  { background: rgba(255,102,0,0.15); color: var(--orange-light); }
.health-sec-icon { background: rgba(46,125,50,0.14); color: #66bb6a; }
.fin-sec-icon    { background: rgba(0,194,203,0.12); color: var(--teal); }
.sector-card h4 {
  font-family: var(--font); font-weight: 700; font-size: 0.92rem;
  color: white; margin-bottom: 0.65rem; line-height: 1.35;
}
.sector-card p { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.68; margin-bottom: 1rem; }
.sec-proof {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 0.875rem;
}
.sec-proof i { color: var(--orange); opacity: 0.7; flex-shrink: 0; margin-top: 0.15rem; }

/* ═══════════════════════════
   OUR WORK
═══════════════════════════ */
.work-section { padding: 6rem 0; }
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2rem;
}
.work-grid > .work-flagship { grid-column: 1 / -1; }
.work-card {
  background: white; border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.work-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.wc-stripe { height: 4px; width: 100%; }
.gov-stripe    { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.health-stripe { background: linear-gradient(90deg, var(--green), #43a047); }
.fin-stripe    { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.green-stripe  { background: linear-gradient(90deg, #00695c, #00897b); }
.wc-inner { padding: 1.75rem 2rem; }
.wc-tag-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.wc-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; padding: 0.28rem 0.8rem;
  border-radius: 100px;
}
.gov-tag    { background: rgba(255,102,0,0.08); color: var(--orange); }
.health-tag { background: rgba(46,125,50,0.08); color: var(--green); }
.fin-tag    { background: rgba(0,194,203,0.08); color: var(--teal); }
.wc-status {
  font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.7rem;
  border-radius: 100px; display: flex; align-items: center; gap: 0.35rem;
  margin-left: auto;
}
.live     { background: rgba(46,125,50,0.1); color: var(--green); }
.deployed { background: rgba(0,194,203,0.08); color: var(--teal); }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
.wc-inner h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.05rem;
  color: var(--grey-900); margin-bottom: 0.75rem; line-height: 1.35;
}
.wc-inner p { font-size: 0.85rem; color: var(--grey-600); line-height: 1.75; margin-bottom: 1.15rem; }
.wc-metrics {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.15rem;
}
.wm-item {
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm); padding: 0.5rem 0.875rem; text-align: center;
}
.wm-item strong { display: block; font-family: var(--font); font-weight: 800; font-size: 0.95rem; color: var(--orange); }
.wm-item span   { font-size: 0.68rem; color: var(--grey-500); }
.wc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.wc-tags span {
  font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.7rem;
  background: var(--grey-100); border: 1px solid var(--grey-200);
  border-radius: 100px; color: var(--grey-600);
}
/* Work card story paragraph */
.wc-story {
  font-size: 0.82rem; color: var(--grey-500); line-height: 1.7;
  font-style: italic; margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--grey-200);
}
.wc-highlight-box {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: rgba(0,194,203,0.06); border: 1px solid rgba(0,194,203,0.2);
  border-radius: var(--radius-sm); padding: 0.875rem 1rem;
  margin: 1rem 0;
}
.wc-highlight-box i { color: var(--teal); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.15rem; }
.wc-highlight-box p { font-size: 0.8rem; color: var(--grey-700); line-height: 1.6; }
.wc-highlight-box strong { color: var(--grey-900); }

/* Systems breadth ribbon */
.systems-breadth {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.875rem;
  padding: 1.25rem 1.5rem; background: var(--dark-bg);
  border-radius: var(--radius-lg); margin-bottom: 1.25rem;
}
.sb-label {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0;
}
.sb-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sb-chips span {
  font-size: 0.72rem; font-weight: 600;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); padding: 0.28rem 0.75rem;
  border-radius: 100px; display: flex; align-items: center; gap: 0.4rem;
}
.sb-chips span i { color: var(--teal); font-size: 0.65rem; }

.work-note {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1.25rem 1.5rem; background: var(--grey-50);
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
}
.work-note i { color: var(--orange); margin-top: 0.15rem; flex-shrink: 0; }
.work-note p { font-size: 0.84rem; color: var(--grey-600); line-height: 1.65; }

/* ═══════════════════════════
   WHO WE ARE — values row
═══════════════════════════ */
.wwa-values-row {
  display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.5rem;
}
.wwa-val {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 0.875rem 1rem; background: var(--grey-50);
  border-radius: var(--radius); border: 1px solid var(--grey-200);
}
.wwa-val i { font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.wwa-val strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--grey-900); }
.wwa-val span   { font-size: 0.78rem; color: var(--grey-500); }

/* ═══════════════════════════
   FOUNDATION TRIBUTE
═══════════════════════════ */
.foundation-section { padding: 6rem 0; }
.foundation-pillars {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.15rem; margin-bottom: 3.5rem;
}
.fp-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.4rem;
  transition: var(--transition);
}
.fp-card:hover { border-color: rgba(255,102,0,0.28); transform: translateY(-4px); }
.fp-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.edu-fp    { background: rgba(255,102,0,0.13); color: var(--orange); }
.dig-fp    { background: rgba(0,194,203,0.15); color: var(--teal); }
.health-fp { background: rgba(46,125,50,0.13); color: #66bb6a; }
.social-fp { background: rgba(106,27,154,0.18); color: #ce93d8; }
.fp-card h4 {
  font-family: var(--font); font-weight: 700; font-size: 0.9rem;
  color: white; margin-bottom: 0.65rem;
}
.fp-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.68; margin-bottom: 0.875rem; }
.fp-insight {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.73rem; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 0.875rem;
}
.fp-insight i { color: var(--teal); flex-shrink: 0; margin-top: 0.1rem; opacity: 0.8; }
.fp-insight span { line-height: 1.55; }
.foundation-statement {
  background: linear-gradient(135deg, rgba(255,102,0,0.06), rgba(0,71,171,0.08));
  border: 1px solid rgba(255,102,0,0.18); border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
}
.fs-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.fs-icon {
  width: 52px; height: 52px; background: rgba(255,102,0,0.13);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--orange); font-size: 1.3rem; flex-shrink: 0;
}
.fs-text h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.2rem;
  color: var(--grey-900); margin-bottom: 0.75rem;
}
.fs-text p {
  font-size: 0.9rem; color: var(--grey-600); line-height: 1.78;
  margin-bottom: 0.75rem;
}
.fs-text p strong { color: var(--grey-900); }
.fs-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════
   TEAM SECTION
═══════════════════════════ */
.team-section { padding: 6rem 0; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.team-grid > .featured-team { grid-column: 1 / 3; }
.team-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}
.featured-team::before {
  background: linear-gradient(90deg, var(--teal), var(--orange));
}
.team-card:hover { border-color: rgba(0,194,203,0.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.team-card-top {
  display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.25rem;
}
.team-avatar-wrap { position: relative; flex-shrink: 0; }
.team-avatar-initials {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; font-family: var(--font); font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.team-badge-role {
  position: absolute; bottom: -4px; right: -4px;
  width: 22px; height: 22px; background: var(--orange);
  border-radius: 50%; border: 2px solid var(--dark-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: white;
}
.team-meta h3 {
  font-family: var(--font); font-weight: 800; font-size: 1rem;
  color: white; margin-bottom: 0.2rem; line-height: 1.3;
}
.team-title { font-size: 0.78rem; color: var(--teal); font-weight: 600; margin-bottom: 0.25rem; }
.team-country { font-size: 0.72rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 0.3rem; }
.team-country i { font-size: 0.6rem; }
.team-bio p {
  font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.75;
  margin-bottom: 0.65rem;
}
.team-bio em { color: rgba(255,255,255,0.75); font-style: italic; }
.team-expertise {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0;
}
.team-expertise span {
  font-size: 0.68rem; font-weight: 600;
  background: rgba(0,194,203,0.1); border: 1px solid rgba(0,194,203,0.22);
  color: var(--teal); padding: 0.22rem 0.65rem; border-radius: 100px;
}
.team-quote {
  display: flex; align-items: flex-start; gap: 0.65rem; margin-top: 1rem;
  padding: 1rem 1.1rem; background: rgba(255,255,255,0.04);
  border-radius: var(--radius); border-left: 2px solid var(--teal);
}
.team-quote i { color: var(--teal); opacity: 0.5; font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }
.team-quote p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.65; font-style: italic; }
.team-statement {
  background: linear-gradient(135deg, rgba(0,194,203,0.07), rgba(255,102,0,0.04));
  border: 1px solid rgba(0,194,203,0.18); border-radius: var(--radius-xl);
  padding: 2.25rem 2.75rem;
}
.ts-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.ts-icon {
  width: 52px; height: 52px; background: rgba(0,194,203,0.12);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--teal); font-size: 1.3rem; flex-shrink: 0;
}
.ts-text h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.1rem;
  color: white; margin-bottom: 0.65rem;
}
.ts-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ═══════════════════════════
   WHY INSYT SECTION
═══════════════════════════ */
.why-section { padding: 6rem 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(0,194,203,0.25); }
.why-num {
  font-family: var(--font); font-weight: 900; font-size: 3rem;
  color: rgba(0,194,203,0.07); line-height: 1; margin-bottom: 0.5rem;
}
.why-icon {
  width: 44px; height: 44px; background: rgba(0,194,203,0.1);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--teal); font-size: 1rem;
  margin-bottom: 1rem;
}
.why-card h4 {
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  color: var(--grey-900); margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.83rem; color: var(--grey-600); line-height: 1.72; }

/* ═══════════════════════════
   CAPABILITIES (enhanced)
═══════════════════════════ */
.capabilities-section { padding: 6rem 0; }
.cap-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-bottom: 2rem;
}
.priority-cap {
  border-color: rgba(0,194,203,0.2) !important;
  background: linear-gradient(150deg, white 0%, rgba(0,194,203,0.03) 100%);
}
.cap-priority-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; font-weight: 700;
  background: rgba(0,194,203,0.1); border: 1px solid rgba(0,194,203,0.25);
  color: var(--teal); padding: 0.22rem 0.7rem; border-radius: 100px;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.875rem;
}
.cap-proof {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.73rem; color: var(--grey-500);
  background: var(--grey-50); border-radius: var(--radius-sm);
  padding: 0.65rem 0.875rem; margin-top: 0.875rem;
  border: 1px solid var(--grey-200);
}
.cap-proof i { color: var(--teal); flex-shrink: 0; margin-top: 0.15rem; }
.cap-proof span { line-height: 1.55; }
.cap-card {
  background: white; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.cap-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cap-icon-wrap {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.cap-card h4 {
  font-family: var(--font); font-weight: 700; font-size: 0.9rem;
  color: var(--grey-900); margin-bottom: 0.65rem;
}
.cap-card p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.7; margin-bottom: 1rem; }
.cap-examples { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cap-examples span {
  font-size: 0.7rem; font-weight: 600; color: var(--grey-600);
  padding: 0.25rem 0.65rem;
  background: var(--grey-100); border: 1px solid var(--grey-200);
  border-radius: 100px;
}
.cap-note {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--grey-50);
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  border-left: 3px solid var(--orange);
}
.cap-note i { color: var(--orange); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.cap-note strong { display: block; font-family: var(--font); font-weight: 700; font-size: 0.9rem; color: var(--grey-900); margin-bottom: 0.35rem; }
.cap-note p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.65; }

/* ═══════════════════════════
   CONVERSATION / LET'S TALK
═══════════════════════════ */
.conversation-section { padding: 6rem 0; }
.questions-block {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl); padding: 2.5rem; margin-bottom: 2.5rem;
}
.qb-header {
  text-align: center; margin-bottom: 2.25rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--dark-border);
}
.qb-header i { font-size: 2rem; color: var(--orange); margin-bottom: 0.875rem; display: block; }
.qb-header h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.35rem;
  color: white; margin-bottom: 0.5rem;
}
.qb-header p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.questions-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.15rem;
}
.q-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: var(--transition); position: relative;
}
.q-card:hover {
  border-color: rgba(255,102,0,0.25);
  background: rgba(255,102,0,0.04);
}
.q-num {
  font-family: var(--font); font-weight: 900; font-size: 2.2rem;
  color: rgba(255,255,255,0.05); position: absolute; top: 0.875rem; right: 1rem;
  line-height: 1;
}
.q-num {
  font-family: var(--font); font-weight: 900; font-size: 1.6rem;
  color: var(--teal); opacity: 0.4; margin-bottom: 0.5rem; line-height: 1;
}
.q-content h5 {
  font-family: var(--font); font-weight: 700; font-size: 0.82rem;
  color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.q-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.72; }
.closing-block {
  background: linear-gradient(135deg, rgba(0,194,203,0.07), rgba(255,102,0,0.07));
  border: 1px solid rgba(255,102,0,0.18); border-radius: var(--radius-xl);
  padding: 2.5rem 3rem; margin-bottom: 2.5rem;
}
.cb-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.cb-icon {
  width: 52px; height: 52px; background: rgba(255,102,0,0.12);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--orange); font-size: 1.3rem; flex-shrink: 0;
}
.cb-text h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.2rem;
  color: white; margin-bottom: 0.75rem;
}
.cb-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.78; margin-bottom: 0.6rem; }
.cb-invite { color: rgba(255,255,255,0.8) !important; }
.cb-invite strong { color: white; }
.contact-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(255,102,0,0.25); }
.contact-card > i { font-size: 1.2rem; color: var(--orange); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.78rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.contact-card a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.contact-card a:hover { color: var(--orange); }
.contact-card span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ═══════════════════════════
   APPENDIX
═══════════════════════════ */
.appendix-section { padding: 6rem 0; background: var(--grey-50); }
.appendix-label {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  font-size: 0.75rem; font-weight: 700; color: var(--grey-400);
  letter-spacing: 0.07em; text-transform: uppercase;
}
.appendix-line { flex: 1; height: 1px; background: var(--grey-300); }
.appendix-section .section-h2 { color: var(--grey-900); }
.appendix-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.15rem; margin-bottom: 2rem;
}
.app-card {
  background: white; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.app-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.app-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; margin-bottom: 1rem;
}
.app-card h4 { font-family: var(--font); font-weight: 700; font-size: 0.9rem; color: var(--grey-900); margin-bottom: 0.6rem; }
.app-card p  { font-size: 0.8rem; color: var(--grey-600); line-height: 1.68; margin-bottom: 1rem; }
.app-examples { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.app-examples span {
  font-size: 0.7rem; font-weight: 600; color: var(--grey-600);
  padding: 0.25rem 0.65rem;
  background: var(--grey-100); border: 1px solid var(--grey-200);
  border-radius: 100px;
}
.appendix-note {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1.15rem 1.4rem; background: white;
  border-radius: var(--radius-lg); border: 1px solid var(--grey-200);
}
.appendix-note i { color: var(--orange); margin-top: 0.15rem; flex-shrink: 0; }
.appendix-note p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.65; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.site-footer {
  background: #060a0f; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.25rem;
  align-items: center; text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.fb-logo { display: flex; align-items: center; justify-content: center; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-prepared { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-note p { font-size: 0.72rem; color: rgba(255,255,255,0.22); max-width: 480px; line-height: 1.6; }

/* ═══════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   PRINT / PDF
═══════════════════════════ */
@media print {
  .progress-bar, .pdf-fab, .navbar, .hero-scroll-hint,
  .footer-pdf-row, .nav-toggle, .mobile-menu,
  .hero-cta-row, .btn-hero-ghost { display: none !important; }
  @page { margin: 16mm; size: A4 portrait; }
  html, body { font-size: 10.5pt; background: white !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .container { max-width: 100%; padding: 0; }
  .section-light, .section-dark, .wwd-section, .work-section,
  .foundation-section, .capabilities-section, .conversation-section,
  .appendix-section { padding: 1.5rem 0 !important; }
  .hero-section { min-height: auto !important; padding: 1.5rem 0 !important; page-break-after: always; }
  .hero-bg { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .sectors-grid { grid-template-columns: repeat(2,1fr) !important; }
  .work-grid { grid-template-columns: 1fr !important; }
  .work-grid > .work-flagship { grid-column: auto !important; }
  .foundation-pillars { grid-template-columns: repeat(2,1fr) !important; }
  .cap-grid { grid-template-columns: repeat(2,1fr) !important; }
  .questions-grid { grid-template-columns: repeat(2,1fr) !important; }
  .appendix-grid { grid-template-columns: repeat(2,1fr) !important; }
  .contact-row { grid-template-columns: 1fr !important; }
  .wwa-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }
  .team-grid > .featured-team { grid-column: 1 / -1 !important; }
  .why-grid { grid-template-columns: repeat(2,1fr) !important; }
  .work-card, .sector-card, .fp-card, .cap-card, .q-card, .app-card, .team-card, .why-card
    { page-break-inside: avoid; break-inside: avoid; }
  .fs-inner, .cb-inner, .ts-inner { flex-direction: column !important; }
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1080px) {
  .sectors-grid        { grid-template-columns: repeat(2,1fr); }
  .work-grid           { grid-template-columns: 1fr; }
  .work-grid > .work-flagship { grid-column: auto; }
  .foundation-pillars  { grid-template-columns: repeat(2,1fr); }
  .cap-grid            { grid-template-columns: repeat(2,1fr); }
  .questions-grid      { grid-template-columns: repeat(2,1fr); }
  .appendix-grid       { grid-template-columns: repeat(2,1fr); }
  .wwa-grid            { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .team-grid > .featured-team { grid-column: 1 / -1; }
  .why-grid            { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .nav-links           { display: none; }
  .nav-toggle          { display: flex; }
  .hero-stats          { flex-direction: column; gap: 0.65rem; }
  .hstat-div           { display: none; }
  .hero-logos-row      { gap: 0.875rem; }
  .sectors-grid        { grid-template-columns: 1fr; }
  .foundation-pillars  { grid-template-columns: 1fr; }
  .cap-grid            { grid-template-columns: 1fr; }
  .questions-grid      { grid-template-columns: 1fr; }
  .appendix-grid       { grid-template-columns: 1fr; }
  .contact-row         { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr; }
  .team-grid > .featured-team { grid-column: auto; }
  .why-grid            { grid-template-columns: 1fr; }
  .fs-inner, .cb-inner, .ts-inner { flex-direction: column; }
  .pdf-fab-label { display: none; }
  .pdf-fab-btn         { padding: 0.75rem; border-radius: 50%; }
}
@media (max-width: 480px) {
  .container           { padding: 0 1.15rem; }
  .section-light, .section-dark { padding: 3.5rem 0; }
}
