/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body { font-family: 'Inter', sans-serif; color: #4A5568; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
section, article, header, footer, main { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --navy: #1B2B5E;
  --teal: #2A7E8A;
  --bg: #F8F9FA;
  --bg-alt: #EAECF2;
  --white: #ffffff;
  --body: #4A5568;
  --muted: #5b6275;
  --border: #E2E8F0;
  --ink: #1c2230;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(to right, var(--teal), #4DC8D4);
  z-index: 10000; pointer-events: none;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); line-height: 1.15; }
p { line-height: 1.7; }

.label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out), transform 100ms var(--ease-out);
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #142149; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #236672; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVIGATION
   ============================================ */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
#header.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 40px; gap: 24px;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.82rem;
  color: var(--navy); padding: 8px 10px; border-radius: 4px;
  transition: color 0.2s var(--ease-out); white-space: nowrap; display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-links > li > a:hover { color: var(--teal); }
.nav-links > li > a.active { color: var(--teal); border-bottom: none; }
.nav-links > li:not(.has-dropdown) > a::after {
  content: ''; position: absolute; bottom: 2px; left: 10px;
  height: 2px; background: var(--teal); width: 0;
  transition: width 200ms var(--ease-out); transform-origin: left center;
}
.nav-links > li:not(.has-dropdown) > a:hover::after,
.nav-links > li:not(.has-dropdown) > a.active::after { width: calc(100% - 20px); }

/* Dropdown arrow */
.has-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; transition: transform 0.2s;
}
.has-dropdown.open > a::after { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px; background: #fff; border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); border: 1px solid var(--border);
  padding: 6px 0; z-index: 200;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 200ms;
}
.has-dropdown.open .dropdown {
  visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 18px;
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500;
  color: var(--navy); border-left: 3px solid transparent; transition: all 0.15s;
}
.dropdown a:hover { color: var(--teal); border-left-color: var(--teal); background: var(--bg); }

.nav-cta { flex-shrink: 0; white-space: nowrap; font-size: 0.82rem; padding: 10px 20px; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav { display: none; background: #fff; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 40px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); }
.mobile-services-toggle { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.mobile-services-toggle::after { content: '›'; font-size: 1.2rem; transition: transform 0.2s; }
.mobile-services-toggle.open::after { transform: rotate(90deg); }
.mobile-sub { display: none; background: var(--bg); }
.mobile-sub.open { display: block; }
.mobile-sub a { padding-left: 56px; font-size: 0.82rem; }
.mobile-cta { padding: 16px 40px; }
.mobile-cta .btn { display: block; text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: #0F1C3F; padding: 64px 0 0; position: relative; overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 2;
}
.footer-col-label {
  display: block; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: #4DC8D4; margin-bottom: 20px;
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(255,255,255,0.06); color: #fff; transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { margin-bottom: 12px; }
.footer-contact-item a, .footer-contact-item span {
  font-family: 'Inter', sans-serif; font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.footer-bottom-left { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-right a { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-right a:hover { color: #fff; }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #fff; border-top: 3px solid var(--teal);
  padding: 20px 40px; box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  opacity: 1; transition: opacity 0.3s ease;
}
#cookie-banner.hidden { opacity: 0; pointer-events: none; }
.cookie-text p { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: #4A5568; margin: 0; }
.cookie-text strong { font-weight: 600; color: var(--navy); }
.cookie-text a { color: var(--teal); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--navy); color: #fff; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 0.875rem; padding: 10px 20px;
  border-radius: 4px; border: none; cursor: pointer; white-space: nowrap;
}
.cookie-btn-decline {
  background: transparent; color: var(--navy); font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 0.875rem; padding: 10px 20px;
  border-radius: 4px; border: 1.5px solid var(--navy); cursor: pointer; white-space: nowrap;
}

/* ============================================
   SECTION PADDING
   ============================================ */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ============================================
   PAGE HERO (compact, navy)
   ============================================ */
.page-hero {
  background: var(--navy); padding: 64px 0;
  min-height: 280px; display: flex; align-items: center;
}
.page-hero .label { color: var(--teal); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.7; }

/* Capability page hero */
.cap-page-hero {
  background: #0F1C3F; min-height: 320px; padding: 80px 0;
  display: flex; align-items: center;
}
.cap-page-hero .label { color: var(--teal); margin-bottom: 20px; }
.cap-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: #fff; margin-bottom: 20px; line-height: 1.15; }
.cap-page-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.75; }
@media (max-width: 768px) { .cap-page-hero { padding: 56px 20px; min-height: 0; } }

/* ============================================
   STAT BADGES
   ============================================ */
.stat-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.stat-badge {
  display: inline-block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.8rem; color: var(--navy); border: 1.5px solid var(--navy);
  border-radius: 20px; padding: 6px 14px;
}

/* ============================================
   CREDENTIAL ROWS (about snapshot + about page)
   ============================================ */
.cred-row { display: flex; align-items: flex-start; gap: 24px; padding: 16px 0; border-bottom: 1px solid #E2E8F0; }
.cred-stat { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; min-width: 160px; }
.cred-desc { font-family: 'Inter', sans-serif; color: #6B7280; font-size: 0.875rem; line-height: 1.6; flex: 1; }
.about-badge { display: inline-block; background: #EAF4F5; color: #2A7E8A; border-radius: 20px; padding: 8px 16px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.8rem; margin-top: 16px; }

/* ============================================
   STAT GRID
   ============================================ */
.stat-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.stat-item .num {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 2.2rem;
  color: var(--teal); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.stat-item .lbl {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}

/* ============================================
   DARK SECTION (navy bg)
   ============================================ */
.section-dark { background: var(--navy); }
.section-dark .label { color: var(--teal); }
.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }

/* Dark cards */
.dark-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 32px;
}
.dark-card .card-label {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 12px;
}
.dark-card p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.8; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card h3 { font-size: 1rem; margin-bottom: 10px; }
.card p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }

.principle-card { border-top: 3px solid var(--teal); }

.model-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.model-card .model-label {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal); margin-bottom: 10px;
}
.model-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.model-card p { font-size: 0.9rem; color: #4A5568; line-height: 1.7; }

/* ============================================
   DELIVERY BLOCKS (teal left border)
   ============================================ */
.delivery-block { border-left: 3px solid var(--teal); padding-left: 16px; margin-bottom: 28px; }
.delivery-block:last-child { margin-bottom: 0; }
.delivery-block h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.delivery-block p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }
.diagnostic-section { padding: 96px 0; }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.diagnostic-intro { font-size: 1.1rem; margin-bottom: 40px; }
.diagnostic-left p { font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }
.diagnostic-left p:last-of-type { margin-bottom: 32px; }

/* ============================================
   SERVICE BULLETS
   ============================================ */
.service-bullets { list-style: none; margin-bottom: 36px; }
.service-bullets li {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #4A5568;
  padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.service-bullets li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 1.1rem; }
.service-cta-link { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: gap 200ms var(--ease-out); }
.service-cta-link:hover { gap: 10px; }

/* ============================================
   AI TOOLS STRIP
   ============================================ */
.tools-section-label {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 12px;
}
.tools-strip { border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; padding: 20px 0; margin-bottom: 14px; }
.tools-row { display: flex; align-items: flex-start; gap: 14px; padding: 8px 0; }
.tools-row + .tools-row { border-top: 1px solid #E2E8F0; }
.tools-row-label {
  width: 130px; flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); padding-top: 3px;
}
.tools-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #EAF4F5; color: var(--teal); border-radius: 4px; padding: 4px 10px;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500;
}
.tools-note { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-style: italic; color: var(--muted); }

/* ============================================
   IT SERVICES GRID
   ============================================ */
.it-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; margin-bottom: 40px; }
.it-service-item { display: flex; gap: 12px; align-items: flex-start; }
.it-chevron { color: var(--teal); font-size: 1.1rem; font-weight: 700; line-height: 1.4; flex-shrink: 0; }
.it-service-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.it-service-item p { font-size: 0.82rem; color: #4A5568; line-height: 1.5; }

/* ============================================
   TIMELINE (Our Approach)
   ============================================ */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-bottom: 40px; }
.timeline::before {
  content: ''; position: absolute; top: 24px;
  left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: var(--teal); opacity: 0.35; z-index: 0;
}
.timeline-step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.timeline-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.timeline-step h4 { font-size: 0.9rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.82rem; color: #4A5568; line-height: 1.6; }
.timeline-note {
  font-family: 'Inter', sans-serif; font-style: italic; font-size: 0.875rem;
  color: var(--muted); text-align: center; max-width: 720px; margin: 0 auto;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.case-card-collapsed { padding: 40px; }
.case-pill {
  display: inline-block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--teal); background: #EAF4F5; border-radius: 4px; padding: 4px 12px;
  margin-right: 8px; margin-bottom: 16px; white-space: nowrap;
}
.case-collapsed-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.case-collapsed-header h2 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); max-width: 680px; }
.case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 28px; }
.case-stat .num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--navy); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.case-stat .lbl { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); line-height: 1.3; }
.case-toggle-btn {
  background: transparent; border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.82rem;
  padding: 10px 20px; border-radius: 4px; cursor: pointer; transition: all 0.2s;
}
.case-toggle-btn:hover { background: var(--navy); color: #fff; }
.case-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.case-body-inner { padding: 0 40px 40px; border-top: 1px solid var(--border); }
.case-section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 40px 0; }
.cs-col-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.cs-col p { font-size: 0.9rem; color: #4A5568; line-height: 1.7; margin-bottom: 10px; }
.cs-challenge-item { border-left: 3px solid var(--navy); padding-left: 12px; margin-bottom: 10px; font-size: 0.875rem; color: #4A5568; line-height: 1.6; }
.cs-phases { background: #F0F2F7; border-radius: 8px; padding: 32px; margin-bottom: 36px; }
.cs-phases .label { margin-bottom: 20px; }
.cs-phases-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cs-phase-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.75rem; color: var(--teal); letter-spacing: 0.05em; margin-bottom: 6px; }
.cs-phase-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--navy); margin-bottom: 8px; }
.cs-phase-desc { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #4A5568; line-height: 1.6; }
.cs-results { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 32px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cs-result-item { padding: 24px; text-align: center; border-right: 1px solid var(--border); }
.cs-result-item:last-child { border-right: none; }
.cs-result-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px; }
.cs-result-label { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.cs-closing { background: var(--navy); border-radius: 8px; padding: 32px; margin-bottom: 16px; }
.cs-closing p { font-family: 'Inter', sans-serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.8; }
.cs-footnote { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-style: italic; color: var(--muted); }

/* ============================================
   GRYT SECTION
   ============================================ */
.gryt-section { background: var(--navy); }
.gryt-stats { display: flex; gap: 48px; flex-wrap: wrap; margin: 32px 0; }
.gryt-stat .num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 2.5rem; color: #4DC8D4; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.gryt-stat .lbl { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); }
.gryt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.gryt-chip {
  background: rgba(255,255,255,0.1); color: #4DC8D4; border-radius: 4px;
  padding: 4px 12px; font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.gryt-closing { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 680px; }

/* ============================================
   PULL QUOTE (Why Us)
   ============================================ */
.pull-quote {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem); color: var(--navy);
  line-height: 1.5; max-width: 840px; margin-bottom: 56px;
  padding: 28px 32px; border-left: 4px solid var(--teal);
  background: var(--bg);
}

/* Diff grid */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; }
.diff-block:nth-child(5) { grid-column: 1/-1; max-width: 480px; margin: 0 auto; }
.diff-block h3 { font-size: 1rem; margin-bottom: 8px; }
.diff-block p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }

/* ============================================
   WHO WE SERVE
   ============================================ */
.clients-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.client-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.client-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.client-card p { font-size: 0.82rem; color: #4A5568; line-height: 1.6; }

/* ============================================
   SECTOR EXPERIENCE
   ============================================ */
.sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.sector-icon { width: 40px; height: 40px; color: var(--teal); margin-bottom: 16px; }
.sector-icon svg { width: 40px; height: 40px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.sector-block h3 { font-size: 1rem; margin-bottom: 10px; }
.sector-block p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }

/* Dark sector variant */
#sector.section-dark .sector-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 28px; }
#sector.section-dark .sector-block h3 { color: #fff; }
#sector.section-dark .sector-block p { color: rgba(255,255,255,0.8); }

/* ============================================
   FOUNDER
   ============================================ */
.founder-photo { width: 100%; height: auto; max-height: 520px; object-fit: cover; object-position: center top; border-radius: 4px; display: block; }
.founder-name { font-size: 1.5rem; margin-bottom: 4px; }
.founder-title { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--teal); margin-bottom: 24px; }
.founder-bio p { font-size: 0.95rem; color: #4A5568; line-height: 1.8; margin-bottom: 16px; }
.founder-link { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--teal); }
.founder-link:hover { text-decoration: underline; }

/* ============================================
   CAPABILITY CARDS (index.html pillar grid)
   ============================================ */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cap-card {
  background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--teal);
  border-radius: 8px; padding: 32px; display: flex; flex-direction: column;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.cap-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.cap-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.cap-card p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; flex: 1; }
.cap-card .cap-link { margin-top: 20px; display: inline-flex; }

/* ============================================
   ASSESSMENT CTA (shared across pages)
   ============================================ */
.assessment-cta { background: #ffffff; padding: 80px 0; }
.assessment-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.assessment-cta .label { color: var(--teal); }
.assessment-cta .label::after {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--teal); margin: 10px auto 0;
}
.assessment-cta h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2rem); color: var(--navy);
  margin-top: 24px; line-height: 1.25;
}
.assessment-cta p {
  font-family: 'Inter', sans-serif; font-size: 1rem;
  color: #4A5568; line-height: 1.75;
  margin-top: 16px; margin-bottom: 32px;
}
.assessment-cta-btn {
  background: var(--navy); color: #fff; padding: 13px 32px;
  border-radius: 4px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.9rem; display: inline-block;
  transition: background 0.2s var(--ease-out), transform 100ms var(--ease-out);
}
.assessment-cta-btn:hover { background: var(--teal); }
.assessment-cta-btn:active { transform: scale(0.97); }

/* Sub-services card grid (capability pages) */
.sub-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sub-service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.sub-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.sub-service-card h3 { font-size: 1rem; margin-bottom: 10px; }
.sub-service-card p { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }

/* Key capabilities grid (capability pages) */
.cap-key-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; }
.cap-key-item { border-left: 3px solid var(--teal); padding-left: 16px; }
.cap-key-item p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #4A5568; line-height: 1.6; }

/* Outcome cards (dark bg) */
.outcome-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--teal); border-radius: 8px; padding: 32px;
}
.outcome-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 12px; }
.outcome-card p { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* Industry blocks */
.industry-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.industry-block { display: flex; gap: 14px; align-items: flex-start; }
.industry-chevron { color: var(--teal); font-size: 1.1rem; font-weight: 700; line-height: 1.4; flex-shrink: 0; }
.industry-block h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.industry-block p { font-size: 0.875rem; color: #4A5568; line-height: 1.6; }

/* Overview stats grid (capability pages) */
.cap-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cap-stat-item { background: var(--bg); border-radius: 8px; padding: 24px; }
.cap-stat-item .num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--teal); margin-bottom: 4px; }
.cap-stat-item .lbl { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* Two-col overview layout */
.overview-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }

@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .sub-services-grid { grid-template-columns: 1fr 1fr; }
  .outcome-cards { grid-template-columns: 1fr 1fr; }
  .industry-blocks { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .assessment-cta { padding: 48px 20px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .sub-services-grid { grid-template-columns: 1fr; }
  .cap-key-grid { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .industry-blocks { grid-template-columns: 1fr; gap: 20px; }
  .cap-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: 16px; }
.cta-strip p { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.cta-strip .btn-group { justify-content: center; }

/* ============================================
   DIAGNOSTIC
   ============================================ */
.diag-summary-box {
  background: #fff; border-radius: 8px; padding: 20px 24px;
  border: 1px solid #E2E8F0; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 28px;
}
.diag-summary-item .dsnum { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--teal); margin-bottom: 4px; }
.diag-summary-item .dsdesc { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: #4A5568; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-chip {
  background: #fff; border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.8rem;
  padding: 6px 14px; border-radius: 4px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: #fff; transition: border-color 0.2s; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); }
.form-field textarea { min-height: 140px; resize: vertical; }

/* ============================================
   NAV LOGO FALLBACK
   ============================================ */
.nav-logo-fallback {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   WHY WE EXIST (index.html)
   ============================================ */
.why-exist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 28px; }
.why-exist-card {
  background: #fff; border-radius: 8px; padding: 32px;
  border: 1px solid #E2E8F0; border-top: 3px solid var(--teal);
}
.why-exist-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.why-exist-card p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #4A5568; line-height: 1.75; }
.why-exist-card-dark {
  background: var(--navy); border-radius: 8px; padding: 32px;
}
.why-exist-card-dark h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.why-exist-card-dark p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* ============================================
   ABOUT STATS GRID (about.html)
   ============================================ */
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.two-col-about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-stat .stat-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--teal); margin-bottom: 6px; }
.about-stat .stat-lbl { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

/* ============================================
   ABOUT "WHAT WE STAND FOR" GRID (about.html)
   ============================================ */
.stand-for-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stand-for-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 32px; }
.stand-for-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 10px; }
.stand-for-card p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* ============================================
   FOUNDER GRID (about.html)
   ============================================ */
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.founder-photo-wrap { }
.founder-content { }
.founder-credentials { border-top: 1px solid var(--border); padding-top: 24px; }
.credential-item { display: flex; gap: 16px; margin-bottom: 12px; }
.credential-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); min-width: 120px; flex-shrink: 0; padding-top: 1px; }
.credential-val { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: #4A5568; line-height: 1.5; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ============================================
   CONTACT PAGE (contact.html)
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }
.contact-detail-block { margin-bottom: 28px; }
.contact-detail-label { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-detail-val { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--navy); line-height: 1.6; display: block; }
.contact-detail-val a { color: var(--navy); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--teal); }
.contact-what-to-expect { background: var(--bg); border-radius: 8px; padding: 24px; margin-top: 8px; }
.contact-what-to-expect h3 { font-size: 0.95rem; margin-bottom: 12px; }
.contact-what-to-expect ul { list-style: none; }
.contact-what-to-expect li { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: #4A5568; padding: 5px 0 5px 16px; position: relative; line-height: 1.5; }
.contact-what-to-expect li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* Contact form styling */
.contact-form-wrap h2 { font-size: 1.3rem; }
.contact-form { margin-top: 0; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.875rem; color: var(--navy); margin-bottom: 6px; }
.form-group .req { color: var(--teal); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0;
  border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--navy); background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,126,138,0.1);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { background: var(--navy); color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; padding: 14px 24px; border-radius: 4px; border: none; cursor: pointer; width: 100%; transition: background 0.2s; }
.form-submit:hover { background: var(--teal); }
.form-success { background: #EAF4F5; border: 1px solid var(--teal); border-radius: 4px; padding: 16px; margin-top: 16px; }
.form-success p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--teal); margin: 0; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-section { padding: 96px 0; }
.service-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-num { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 12px; display: block; }
.service-section h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 20px; }
.service-section .intro { font-size: 1rem; color: #4A5568; line-height: 1.8; margin-bottom: 32px; }
.strategy-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.strategy-sub-label { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 16px; }

/* Diagnostic dark section */
.diag-dark { background: var(--navy); }
.diag-dark .label { color: var(--teal); }
.diag-dark h2 { color: #fff; }
.diag-dark p { color: rgba(255,255,255,0.85); }
.diag-dark .delivery-block h4 { color: #fff; }
.diag-dark .delivery-block p { color: rgba(255,255,255,0.8); }
.diag-summary-box-dark { background: #fff; border-radius: 8px; padding: 20px 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.diag-summary-box-dark .dsnum { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.diag-summary-box-dark .dsdesc { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: #4A5568; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.legal-updated { font-family: 'Inter', sans-serif; font-size: 0.875rem; font-style: italic; color: var(--muted); margin-bottom: 48px; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-size: 1.1rem; margin-bottom: 16px; }
.legal-section p { font-size: 1rem; color: #4A5568; line-height: 1.8; margin-bottom: 14px; }
.legal-section ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.legal-section ul li { font-size: 1rem; color: #4A5568; line-height: 1.8; margin-bottom: 6px; }
.legal-section a { color: var(--teal); text-decoration: underline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .clients-row { grid-template-columns: repeat(3,1fr); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  nav { position: relative; }
}

@media (max-width: 768px) {
  /* BASE */
  .container { padding: 0 20px; }
  nav { padding: 0 20px; height: 64px; }

  /* TYPOGRAPHY */
  h1 { font-size: 2rem; line-height: 1.2; }
  h2 { font-size: 1.5rem; line-height: 1.3; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  p { font-size: 0.9rem; line-height: 1.7; }
  li { font-size: 0.9rem; line-height: 1.7; }
  .label { font-size: 0.7rem; letter-spacing: 0.08em; }
  .pull-quote { font-size: 1.1rem; line-height: 1.4; }

  /* SECTION SPACING */
  section { padding: 48px 20px; }
  .section-pad { padding: 48px 20px; }
  .section-pad-sm { padding: 32px 20px; }
  .page-hero { min-height: 200px; padding: 40px 20px; }
  .page-hero h1 { font-size: 1.8rem; }
  footer { padding: 48px 20px 24px; }

  /* NAVIGATION */
  .mobile-toggle { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
  .nav-logo img { height: 36px; max-width: 160px; }
  .mobile-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    z-index: 9998;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .mobile-nav a { padding: 14px 20px; border-bottom: 1px solid #F0F2F5; font-size: 0.95rem; color: #1B2B5E; min-height: 44px; display: flex; align-items: center; }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); }
  .mobile-sub a { padding: 12px 20px 12px 32px; font-size: 0.875rem; color: var(--teal); }
  .mobile-cta { margin: 16px 20px; padding: 0; }
  .mobile-cta .btn { display: block; text-align: center; width: 100%; min-height: 44px; font-size: 0.95rem; padding: 12px 20px; }

  /* GRID LAYOUTS */
  .clients-row { grid-template-columns: 1fr; gap: 12px; }
  .diff-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .stat-grid-2x2 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .diff-block:nth-child(5) { grid-column: auto; max-width: none; margin: 0; }
  .sector-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .why-exist-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .stand-for-grid-4 { grid-template-columns: 1fr !important; gap: 16px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .timeline { grid-template-columns: 1fr !important; gap: 32px; }
  .timeline-step { text-align: left; }
  .timeline-num { margin: 0 0 12px; }

  /* STAT ELEMENTS */
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-badges { gap: 8px; flex-wrap: wrap; }

  /* CREDENTIAL ROWS */
  .cred-stat { font-size: 0.9rem; }
  .cred-desc { font-size: 0.8rem; }

  /* ABOUT SNAPSHOT — index.html stat grid */
  .stat-grid-2x2 { gap: 16px; }
  .stat-item { padding: 16px; }
  .stat-item .num { font-size: 1.8rem; }
  .stat-item .lbl { font-size: 0.7rem; line-height: 1.3; }

  /* WHO WE ARE — about.html */
  .who-we-are { padding: 40px 20px; }
  .two-col-about { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-stat { padding: 16px; }
  .about-stat .stat-num { font-size: 1.8rem; }
  .about-stat .stat-lbl { font-size: 0.7rem; line-height: 1.3; }

  /* FOUNDER */
  .founder-grid { grid-template-columns: 1fr !important; gap: 0; }
  .founder-photo-wrap { width: 100%; max-height: 280px; overflow: hidden; border-radius: 4px; }
  .founder-photo { width: 100%; height: 280px; object-fit: cover; object-position: center top; display: block; max-height: none; }
  .founder-content { padding: 24px 0 0 0; }
  .founder-name { font-size: 1.3rem; }
  .founder-title { font-size: 0.9rem; }
  .founder-bio p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
  .founder-link { font-size: 0.9rem; display: inline-block; padding: 8px 0; }

  /* SERVICES */
  .service-section-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .strategy-cols { grid-template-columns: 1fr !important; gap: 32px; }
  .diag-summary-box-dark { grid-template-columns: 1fr !important; }
  .chip { font-size: 0.7rem; padding: 3px 8px; }
  .tools-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tools-row-label { width: auto; margin-bottom: 8px; }
  .dark-card { padding: 24px; }

  /* DIAGNOSTIC SECTION */
  .diagnostic-section { padding: 40px 20px; }
  .diagnostic-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .diagnostic-intro { font-size: 1rem; margin-bottom: 16px; }
  .diagnostic-left p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
  .diagnostic-left p:last-of-type { margin-bottom: 0; }
  .diagnostic-left .btn { display: block; width: 100%; min-height: 44px; margin-top: 20px; text-align: center; }
  .delivery-block { margin-bottom: 16px; padding-left: 12px; }
  .delivery-block h4 { font-size: 0.9rem; }
  .delivery-block p { font-size: 0.85rem; line-height: 1.6; }
  .diag-summary-box { display: flex; flex-direction: column; gap: 0; background: transparent; border: none; border-radius: 0; padding: 0; margin-top: 24px; }
  .diag-summary-item { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .diag-summary-item:last-child { border-bottom: none; }
  .diag-summary-item .dsnum { font-size: 0.75rem; }
  .diag-summary-item .dsdesc { font-size: 0.8rem; }

  /* CASE STUDIES */
  .case-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .case-stat .num { font-size: 1.1rem; }
  .case-stat .lbl { font-size: 0.55rem; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
  .case-section-header { grid-template-columns: 1fr !important; gap: 24px; }
  .cs-phases-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cs-results { grid-template-columns: 1fr; }
  .cs-result-item { border-right: none; border-bottom: 1px solid var(--border); text-align: left; padding: 16px 0; }
  .cs-result-item:last-child { border-bottom: none; }
  .cs-closing { padding: 24px 20px; }
  .cs-closing p { font-size: 0.875rem; }
  .it-services-grid { grid-template-columns: 1fr !important; }
  .gryt-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .gryt-stat .num { font-size: 1.8rem; }
  .gryt-chips { gap: 6px; }
  .gryt-closing { font-size: 0.875rem; }
  .case-toggle-btn { width: 100%; min-height: 44px; }
  .case-card-collapsed { padding: 24px 20px; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-detail-block { margin-bottom: 20px; }
  .contact-detail-val { font-size: 0.9rem; }
  .form-group { margin-bottom: 20px; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; padding: 12px 14px; min-height: 44px; }
  .form-group textarea { min-height: 120px; }
  .form-field input, .form-field textarea { font-size: 16px; min-height: 44px; }
  .form-submit { padding: 14px; font-size: 1rem; min-height: 48px; width: 100%; }

  /* LEGAL */
  .legal-content { padding: 40px 20px; }
  .legal-section h2 { font-size: 1.1rem; }
  .legal-section p, .legal-section li { font-size: 0.9rem; line-height: 1.75; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 32px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-bottom-right { gap: 8px 12px; flex-wrap: wrap; justify-content: center; font-size: 0.75rem; }
  .footer-logo img { height: 40px; }

  /* TOUCH TARGETS */
  .btn { min-height: 44px; }
  .service-cta-link { display: inline-block; padding: 8px 0; min-height: 44px; }

  /* COOKIE BANNER */
  #cookie-banner { flex-direction: column; padding: 20px; gap: 16px; }
  .cookie-buttons { flex-direction: row; gap: 12px; width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; min-height: 44px; }
}

@media (max-width: 640px) {
  .clients-row { grid-template-columns: 1fr; }
  .cs-phases-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .case-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
