/* ─────────────────────────────────────────────────────────────────────────────
   KNOVIQ IT SOLUTIONS — style.css
   Pure vanilla CSS design system (replaces Tailwind + Framer Motion)
───────────────────────────────────────────────────────────────────────────── */

/* ═══════════════════════ CSS VARIABLES ═══════════════════════ */
:root {
  --blue:      #007CC3;
  --accent:    #00A3E0;
  --blue-dark: #0063a8;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  --shadow-blue: rgba(0,124,195,0.25);

  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;
  --radius-full: 9999px;

  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;

  --container: 1280px;
  --header-h: 72px;

  --font: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

/* ═══════════════════════ RESET & BASE ═══════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a192f; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: rgba(0,124,195,0.35); color: #fff; }

/* ═══════════════════════ LAYOUT ═══════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ═══════════════════════ TYPOGRAPHY UTILITIES ═══════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 36rem;
  margin-top: 1rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 3rem; }
.mt-5 { margin-top: 1.25rem; }

/* ═══════════════════════ BUTTONS ═══════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.75rem;
  transition: var(--transition);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 14px var(--shadow-blue);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 2px solid var(--slate-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark-outline {
  background: transparent;
  color: var(--slate-800);
  border: 2px solid var(--slate-800);
}
.btn-dark-outline:hover { background: var(--slate-800); color: white; }
.btn-white {
  background: white;
  color: var(--slate-900);
  font-weight: 700;
}
.btn-white:hover { background: var(--slate-100); }
.btn-white-solid {
  background: white;
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white-solid:hover { background: var(--slate-50); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-block { width: 100%; justify-content: center; padding: 0.875rem; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══════════════════════ SCROLL ANIMATIONS ═══════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════ HEADER ═══════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-100), 0 2px 16px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: white;
  box-shadow: 0 4px 12px rgba(0,124,195,0.3);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: white;
  transition: color 0.3s;
}
.logo-name.dark, .scrolled .logo-name { color: var(--slate-900); }
.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 0.125rem; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.scrolled .nav-link { color: var(--slate-700); }
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.12);
}
.scrolled .nav-link:hover, .scrolled .nav-link.active {
  color: var(--blue);
  background: #EFF6FF;
}
.nav-chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 580px;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-category-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.mega-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mega-item:hover { background: #EFF6FF; }
.mega-item-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s;
}
.mega-item:hover .mega-item-label { color: var(--blue); }
.mega-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 2px;
}

/* Header Actions */
.header-actions { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.search-toggle-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.search-toggle-btn:hover { color: white; background: rgba(255,255,255,0.12); }
.scrolled .search-toggle-btn { color: var(--slate-500); }
.scrolled .search-toggle-btn:hover { color: var(--blue); background: #EFF6FF; }

/* Search Bar */
.search-bar-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
}
.search-bar-wrapper.open {
  max-height: 80px;
  border-top-color: var(--slate-100);
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  background: white;
}
.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--slate-800);
  font-family: var(--font);
  background: transparent;
}
.header-search-input::placeholder { color: var(--slate-400); }

/* Hamburger */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  color: white;
  transition: var(--transition);
}
.hamburger-btn svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .hamburger-btn { display: none; } }
.hamburger-btn:hover { background: rgba(255,255,255,0.12); }
.scrolled .hamburger-btn { color: var(--slate-700); }
.scrolled .hamburger-btn:hover { background: var(--slate-100); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 380px);
  background: white;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1.25rem) 1.5rem 2rem;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.visible { opacity: 1; pointer-events: all; }

.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-nav-item { border-radius: var(--radius-xl); overflow: hidden; }
.mobile-nav-link {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-800);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  background: none;
  text-align: left;
}
.mobile-nav-link:hover { background: #EFF6FF; color: var(--blue); }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}
.mobile-submenu.open { max-height: 600px; }
.mobile-cat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.mobile-sub-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  border-radius: var(--radius-md);
  transition: color 0.2s;
}
.mobile-sub-link:hover { color: var(--blue); }
.mobile-cta { padding-top: 1.5rem; border-top: 1px solid var(--slate-100); margin-top: 0.5rem; }
.mobile-drawer-inner { display: flex; flex-direction: column; height: 100%; gap: 0; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 6rem);
  padding-bottom: 2rem;
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero-title .knoviq-highlight {
  background: linear-gradient(135deg, var(--blue), var(--accent), #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 38rem;
  line-height: 1.7;
}
.hero-headline { max-width: 50rem; margin-bottom: 2rem; }

/* Hero Search */
.hero-search-wrap { max-width: 42rem; margin-bottom: 1rem; }
.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-2xl);
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-search-box svg { color: var(--slate-400); flex-shrink: 0; width: 20px; height: 20px; }
.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--slate-800);
  background: transparent;
  font-family: var(--font);
  min-width: 0;
}
.hero-search-input::placeholder { color: var(--slate-400); }
.hero-mic-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  flex-shrink: 0;
  transition: var(--transition);
}
.hero-mic-btn:hover { background: var(--slate-200); }
.hero-mic-btn svg { width: 18px; height: 18px; }
.hero-search-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.hero-search-btn:hover { opacity: 0.9; }
.hero-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.suggestion-pill {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: var(--transition);
}
.suggestion-pill:hover { background: rgba(255,255,255,0.25); }
.hero-ai-note { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; padding-left: 0.25rem; }

/* Hero Cards */
.hero-cards-wrap {
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 1024px) { .hero-cards { grid-template-columns: repeat(4, 1fr); } }
.hero-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
  display: block;
  transition: var(--transition-slow);
  text-decoration: none;
}
.hero-card:hover { background: white; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transform: translateY(-3px); }
.hero-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.hero-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.hero-card:hover .hero-card-title { color: var(--blue); }
.hero-card-desc { font-size: 0.75rem; color: var(--slate-500); line-height: 1.5; margin-bottom: 0.75rem; }
.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}
.hero-blend {
  position: relative;
  z-index: 10;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--slate-50));
}

/* ═══════════════════════ STATS BAR ═══════════════════════ */
.stats-bar {
  padding: 1.5rem 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3rem;
  background: var(--slate-200);
}
@media (max-width: 767px) {
  .stat-item:nth-child(odd)::before { display: none; }
}
.stat-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; font-weight: 500; color: var(--slate-500); }

/* ═══════════════════════ CLIENTS STRIP ═══════════════════════ */
.clients-strip {
  padding: 3.5rem 0;
  background: white;
  border-bottom: 1px solid var(--slate-100);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 2.5rem;
}
.clients-track-wrap {
  position: relative;
  overflow: hidden;
}
.clients-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.clients-track:hover { animation-play-state: paused; }
.client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  transition: var(--transition);
}
.client-badge:hover { border-color: rgba(0,124,195,0.4); color: var(--blue); }
.clients-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  pointer-events: none;
  z-index: 10;
}
.clients-fade-left  { left: 0;  background: linear-gradient(to right, white, transparent); }
.clients-fade-right { right: 0; background: linear-gradient(to left,  white, transparent); }

/* ═══════════════════════ CAPABILITIES ═══════════════════════ */
.capabilities { padding: 5rem 0 7rem; background: white; }
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(3, 1fr); } }
.cap-card {
  position: relative;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}
.cap-card.visible { opacity: 1; transform: translateY(0); }
.cap-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.cap-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.cap-icon svg { width: 24px; height: 24px; }
.cap-card:nth-child(1) .cap-icon { background: #EFF6FF; color: #2563eb; }
.cap-card:nth-child(2) .cap-icon { background: #F5F3FF; color: #7c3aed; }
.cap-card:nth-child(3) .cap-icon { background: #ECFDF5; color: #059669; }
.cap-card:nth-child(4) .cap-icon { background: #FFF7ED; color: #ea580c; }
.cap-card:nth-child(5) .cap-icon { background: #F0F9FF; color: #0284c7; }
.cap-card:nth-child(6) .cap-icon { background: #FFF1F2; color: #e11d48; }
.cap-card:nth-child(1):hover { border-color: #bfdbfe; }
.cap-card:nth-child(2):hover { border-color: #ddd6fe; }
.cap-card:nth-child(3):hover { border-color: #a7f3d0; }
.cap-card:nth-child(4):hover { border-color: #fed7aa; }
.cap-card:nth-child(5):hover { border-color: #bae6fd; }
.cap-card:nth-child(6):hover { border-color: #fecdd3; }
.cap-num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--slate-200);
  line-height: 1;
  user-select: none;
}
.cap-title { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.625rem; }
.cap-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1.25rem; }
.cap-learn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--blue);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.cap-card:hover .cap-learn { opacity: 1; transform: translateY(0); }

/* ═══════════════════════ SOLUTIONS ═══════════════════════ */
.solutions { padding: 5rem 0 7rem; background: var(--slate-50); }
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); } }
.sol-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.5s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}
.sol-card.visible { opacity: 1; transform: translateY(0); }
.sol-card:hover { box-shadow: 0 24px 80px rgba(0,0,0,0.12); transform: translateY(-4px); }
.sol-img-wrap { position: relative; height: 14rem; overflow: hidden; background: var(--slate-100); }
.sol-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.sol-card:hover .sol-img { transform: scale(1.05); }
.sol-body { padding: 1.75rem; }
.sol-name { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.sol-tagline { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.sol-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1.25rem; }
.sol-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--blue);
  transition: color 0.2s;
}
.sol-link:hover { color: var(--accent); }
.sol-link:hover .sol-link-arrow { transform: translateX(2px); }
.sol-link-arrow { transition: transform 0.2s; }

/* ═══════════════════════ INSIGHTS ═══════════════════════ */
.insights { padding: 5rem 0 7rem; background: var(--slate-50); border-top: 1px solid var(--slate-100); }
.insights-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .insights-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.carousel-controls { display: flex; align-items: center; gap: 0.75rem; }
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-600);
  transition: var(--transition);
}
.carousel-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.carousel-btn:disabled { border-color: var(--slate-100); color: var(--slate-300); cursor: not-allowed; }
.all-insights-link {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-left: 0.5rem;
  transition: color 0.2s;
}
@media (min-width: 640px) { .all-insights-link { display: flex; } }
.all-insights-link:hover { color: var(--accent); }
.insights-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.insights-carousel::-webkit-scrollbar { display: none; }
.insight-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  flex-shrink: 0;
  width: min(340px, 80vw);
  scroll-snap-align: start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateX(30px);
}
.insight-card.visible { opacity: 1; transform: translateX(0); }
.insight-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.insight-img-wrap { position: relative; height: 11rem; overflow: hidden; background: var(--slate-100); }
.insight-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insight-card:hover .insight-img { transform: scale(1.04); }
.insight-body { padding: 1.5rem; }
.insight-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.insight-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); line-height: 1.4; margin-bottom: 0.625rem; }
.insight-desc { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 1rem; }
.insight-meta { display: flex; align-items: center; justify-content: space-between; }
.insight-date { font-size: 0.75rem; color: var(--slate-400); }
.insight-read { font-size: 0.75rem; font-weight: 600; color: var(--blue); }

/* ═══════════════════════ CAREERS ═══════════════════════ */
.careers { position: relative; background: var(--slate-900); overflow: hidden; padding: 5rem 0; }
.careers-bg-grid {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 50px 50px;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .careers-grid { grid-template-columns: 1fr 1fr; gap: 0; } }
.careers-left { position: relative; z-index: 1; padding: 0; }
@media (min-width: 1024px) { .careers-left { padding: 3rem 4rem 3rem 0; } }
.careers-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(0,124,195,0.2);
  border: 1px solid rgba(0,124,195,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.careers-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.careers-desc {
  color: var(--slate-400);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.careers-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.perk-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.perk-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  background: rgba(0,124,195,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.perk-icon svg { width: 16px; height: 16px; }
.perk-text { font-size: 0.8125rem; color: var(--slate-300); line-height: 1.4; }
.open-roles { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.open-roles-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}
.role-list { display: flex; flex-direction: column; gap: 0.75rem; }
.role-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
}
.role-item:hover { border-color: rgba(0,124,195,0.4); background: rgba(255,255,255,0.05); }
.role-title { font-size: 0.875rem; font-weight: 600; color: white; transition: color 0.2s; }
.role-item:hover .role-title { color: var(--accent); }
.role-meta { font-size: 0.75rem; color: var(--slate-500); margin-top: 0.125rem; }
.role-arrow { color: var(--slate-600); transition: color 0.2s; flex-shrink: 0; }
.role-arrow svg { width: 16px; height: 16px; }
.role-item:hover .role-arrow { color: var(--blue); }
.careers-right { display: none; position: relative; }
@media (min-width: 1024px) { .careers-right { display: block; } }
.careers-img-wrap {
  position: absolute;
  inset: 3rem 0 3rem 2rem;
  border-radius: var(--radius-3xl);
  overflow: hidden;
}
.careers-img { width: 100%; height: 100%; object-fit: cover; }
.careers-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(15,23,42,0.3));
}

/* ═══════════════════════ CTA BANNER ═══════════════════════ */
.cta-banner {
  padding: 5rem 0 7rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark), var(--accent));
  position: relative;
  overflow: hidden;
}
.cta-dots {
  position: absolute; inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-ring {
  position: absolute;
  top: -10rem; right: -10rem;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: spinRing 80s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.cta-grid {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.cta-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-desc { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; max-width: 32rem; }
.cta-right { display: flex; flex-direction: column; gap: 1rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .cta-buttons { flex-direction: row; } }
.cta-buttons .btn { flex: 1; justify-content: center; }
.cta-contact {
  display: flex;
  flex-direction: column; gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 480px) { .cta-contact { flex-direction: row; gap: 2rem; } }
.cta-contact-link {
  display: flex; align-items: center; gap: 0.625rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  transition: color 0.2s;
  text-decoration: none;
}
.cta-contact-link:hover { color: white; }
.cta-contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer { background: white; border-top: 1px solid var(--slate-100); }
.footer-offices {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}
.offices-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.offices-label {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  flex-shrink: 0;
}
.offices-label svg { width: 12px; height: 12px; }
.office-loc {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: var(--slate-500);
}
.office-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--slate-300);
  display: inline-block;
}
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footer-brand .logo { margin-bottom: 1.25rem; display: inline-flex; }
.footer-desc { font-size: 0.75rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-link {
  width: 32px; height: 32px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400);
  transition: var(--transition);
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover { border-color: var(--blue); color: var(--blue); }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--slate-600); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.75rem; color: var(--slate-400); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal-links a { font-size: 0.75rem; color: var(--slate-400); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--slate-700); }

/* ═══════════════════════ RESPONSIVE TWEAKS ═══════════════════════ */
@media (max-width: 639px) {
  .hero-search-box { padding: 0.5rem 0.5rem 0.5rem 1rem; }
  .hero-search-btn { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
  .cta-grid { gap: 2rem; }
  .careers-perks { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   INNER PAGE — BODY + HEADER OFFSET
═══════════════════════════════════════════════════════════════════ */
.inner-page #page-main { padding-top: var(--header-h); }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (all inner pages)
═══════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #001a3a 50%, #003d6b 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,124,195,0.18) 0%, transparent 65%);
}
.page-hero-content { position: relative; max-width: 820px; }
.page-hero-content.text-center { text-align: center; max-width: 680px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  border: 1px solid rgba(0,163,224,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(0,163,224,0.1);
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 560px;
}
.page-hero-content.text-center .page-hero-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════
   SECTION UTILS
═══════════════════════════════════════════════════════════════════ */
.page-section { padding: 5rem 0; }
.bg-white  { background: #fff; }
.bg-slate  { background: var(--slate-50); }
.text-center { text-align: center; }
.mt-5 { margin-top: 1.25rem; }
.about-para { color: var(--slate-600); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADER (shared on all pages)
═══════════════════════════════════════════════════════════════════ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.875rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-desc { font-size: 1.0625rem; color: var(--slate-500); line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: var(--radius-xl);
  font-weight: 700; font-size: 0.9375rem; transition: all 0.25s;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  border: 2px solid transparent; font-family: var(--font);
}
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-dark-outline { background: transparent; border-color: var(--slate-700); color: var(--slate-700); }
.btn-dark-outline:hover { background: var(--slate-900); color: #fff; border-color: var(--slate-900); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--slate-50); }
.btn-white-solid { background: #fff; color: var(--slate-900); font-weight: 700; }
.btn-white-solid:hover { background: var(--slate-100); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-arrow { font-size: 1.125em; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════ */
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .about-mission-grid { grid-template-columns: 1fr; } }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card { padding: 1.5rem; border: 1px solid var(--slate-200); border-radius: var(--radius-xl); background: #fff; transition: box-shadow 0.25s; }
.value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.value-icon { width: 2rem; height: 2rem; color: var(--blue); margin-bottom: 0.75rem; }
.value-icon svg { width: 100%; height: 100%; }
.value-title { font-size: 0.875rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }
.value-desc { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.6; }
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.leader-card { text-align: center; background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); padding: 2rem 1.5rem; transition: box-shadow 0.3s, transform 0.3s; }
.leader-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.leader-avatar { width: 4rem; height: 4rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 900; color: #fff; margin: 0 auto 1rem; }
.leader-name  { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.leader-title { font-size: 0.8125rem; color: var(--blue); font-weight: 600; margin-bottom: 0.25rem; }
.leader-location { font-size: 0.75rem; color: var(--slate-400); }
.timeline { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; padding-left: 2rem; border-left: 2px solid var(--slate-200); }
.timeline-item { position: relative; display: grid; grid-template-columns: 72px 1.5rem 1fr; gap: 1rem; align-items: start; padding-bottom: 2.5rem; }
.timeline-year { font-size: 0.875rem; font-weight: 800; color: var(--blue); text-align: right; padding-top: 0.125rem; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); position: absolute; left: -39px; top: 4px; }
.timeline-text { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════════════════ */
.services-wrap { display: flex; flex-direction: column; gap: 4rem; }
.service-category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.service-category-line { flex: 1; height: 1px; background: var(--slate-200); }
.service-category-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.375rem 1rem; border-radius: var(--radius-full); white-space: nowrap; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { padding: 1.75rem; border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); background: #fff; transition: box-shadow 0.3s, transform 0.3s; }
.service-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon { width: 3rem; height: 3rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { width: 1.375rem; height: 1.375rem; }
.service-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.625rem; }
.service-card-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1rem; }
.service-details { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.service-detail-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--slate-600); }
.service-detail-item svg { width: 0.875rem; height: 0.875rem; color: var(--blue); flex-shrink: 0; }
.services-cta-box { background: linear-gradient(135deg, var(--blue), var(--accent)); border-radius: var(--radius-3xl); padding: 4rem 3rem; text-align: center; color: #fff; }
.services-cta-title { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
.services-cta-desc { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.0625rem; }

/* ═══════════════════════════════════════════════════════════════════
   INDUSTRIES PAGE
═══════════════════════════════════════════════════════════════════ */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.ind-card { border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); background: #fff; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.ind-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); transform: translateY(-5px); }
.ind-card-img-wrap { height: 180px; overflow: hidden; }
.ind-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ind-card:hover .ind-card-img { transform: scale(1.06); }
.ind-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.ind-card-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ind-card-icon svg { width: 1.25rem; height: 1.25rem; }
.ind-card-name { font-size: 1.125rem; font-weight: 800; color: var(--slate-900); margin-bottom: 0.25rem; }
.ind-card-tagline { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.75rem; }
.ind-card-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1.25rem; }
.ind-caps { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; flex: 1; }
.ind-cap-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--slate-600); }
.ind-cap-item svg { width: 0.875rem; height: 0.875rem; color: var(--blue); flex-shrink: 0; }
.ind-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--slate-100); }
.ind-clients-badge { font-size: 0.75rem; font-weight: 600; color: var(--slate-500); background: var(--slate-100); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }

/* ═══════════════════════════════════════════════════════════════════
   INSIGHTS PAGE
═══════════════════════════════════════════════════════════════════ */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab { padding: 0.5rem 1.25rem; border-radius: var(--radius-full); border: 1.5px solid var(--slate-200); font-size: 0.875rem; font-weight: 600; color: var(--slate-600); background: #fff; transition: all 0.2s; cursor: pointer; }
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.insights-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.ins-page-card { border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); overflow: hidden; background: #fff; transition: box-shadow 0.3s, transform 0.3s; }
.ins-page-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.ins-page-img-wrap { position: relative; height: 200px; overflow: hidden; }
.ins-page-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ins-page-card:hover .ins-page-img { transform: scale(1.06); }
.ins-cat-pill { position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: var(--radius-full); }
.ins-page-body { padding: 1.5rem; }
.ins-meta-top { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--slate-400); margin-bottom: 0.75rem; }
.ins-meta-top span { display: flex; align-items: center; gap: 0.3rem; }
.ins-meta-top svg { width: 0.75rem; height: 0.75rem; }
.ins-page-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.625rem; line-height: 1.4; }
.ins-page-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1.25rem; }
.ins-page-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--slate-100); }
.ins-author { font-size: 0.8125rem; color: var(--slate-400); }

/* ═══════════════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════════════ */
.careers-culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .careers-culture-grid { grid-template-columns: 1fr; } }
.careers-page-img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-2xl); }
.perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.perk-full-card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 1.75rem; transition: box-shadow 0.25s, transform 0.25s; }
.perk-full-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.perk-full-icon { width: 2.75rem; height: 2.75rem; background: var(--slate-100); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--blue); }
.perk-full-icon svg { width: 1.375rem; height: 1.375rem; }
.perk-full-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }
.perk-full-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; }
.roles-table { display: flex; flex-direction: column; gap: 0.75rem; }
.role-table-row { display: flex; align-items: center; gap: 1.5rem; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-xl); padding: 1.25rem 1.5rem; transition: box-shadow 0.2s, border-color 0.2s; }
.role-table-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); border-color: var(--blue); }
.role-table-main { flex: 1; min-width: 0; }
.role-table-title { font-size: 0.9375rem; font-weight: 700; color: var(--slate-900); }
.role-table-dept { font-size: 0.8125rem; color: var(--slate-400); margin-top: 0.2rem; }
.role-table-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.role-tag { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: var(--radius-full); }
.role-tag svg { width: 0.75rem; height: 0.75rem; }
.role-tag-location { background: var(--slate-100); color: var(--slate-600); }
.role-tag-type     { background: #EFF6FF; color: #2563EB; }
.role-tag-level    { background: #F0FDF4; color: #16A34A; }
@media (max-width: 768px) { .role-table-row { flex-direction: column; align-items: flex-start; } }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-heading { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--slate-700); }
.form-input { width: 100%; border: 1.5px solid var(--slate-200); border-radius: var(--radius-xl); padding: 0.875rem 1rem; font-size: 0.9375rem; font-family: var(--font); color: var(--slate-800); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input::placeholder { color: var(--slate-400); }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,124,195,0.1); }
.form-textarea { resize: none; }
.form-submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.625rem; font-size: 1rem; }
.form-submit-btn svg { width: 1rem; height: 1rem; }
.form-note { font-size: 0.8125rem; color: var(--slate-400); text-align: center; }
.form-feedback { padding: 0.875rem 1rem; border-radius: var(--radius-xl); font-size: 0.875rem; font-weight: 500; display: none; }
.form-feedback:not(:empty) { display: block; }
.form-feedback--success { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.form-feedback--error   { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }
.btn-spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; display: inline-block; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (max-width: 480px) { .offices-grid { grid-template-columns: 1fr; } }
.office-card { padding: 1.25rem; border: 1px solid var(--slate-100); border-radius: var(--radius-xl); background: #fff; transition: box-shadow 0.2s; }
.office-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.office-city-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.office-flag { font-size: 1.25rem; }
.office-city { font-size: 0.9375rem; font-weight: 700; color: var(--slate-900); }
.office-address { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.5; margin-bottom: 0.75rem; }
.office-contacts { display: flex; flex-direction: column; gap: 0.375rem; }
.office-contact-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--slate-600); transition: color 0.2s; }
.office-contact-link:hover { color: var(--blue); }
.office-contact-link svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.hours-box { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius-xl); padding: 1.5rem; }
.hours-box-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: var(--blue); }
.hours-box-header svg { width: 1.25rem; height: 1.25rem; }
.hours-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-600); margin-bottom: 1rem; }
.hours-global { padding-top: 1rem; border-top: 1px solid #BFDBFE; font-size: 0.8125rem; color: var(--slate-500); }
.hours-phone { display: block; color: var(--blue); font-weight: 700; font-size: 1rem; margin-top: 0.25rem; }

/* ═══════════════════════════════════════════════════════════════════
   ANIMATION — anim-item
═══════════════════════════════════════════════════════════════════ */
.anim-item { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-item.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-hero { padding: 4rem 0 3.5rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .insights-page-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-heading { font-size: 1.25rem; }
  .timeline { padding-left: 1rem; }
  .timeline-item { grid-template-columns: 60px 1.5rem 1fr; gap: 0.75rem; }
  .timeline-dot { left: -29px; }
  .services-cta-box { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
}
