/* ============================================================
   NS CONSULTING — Premium Enterprise Website
   style.css — Complete Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:        #0B1D3A;
  --navy-mid:    #1A2F52;
  --navy-light:  #243B66;
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --warm-gray:   #EFEFEA;
  --border:      #E2E1DA;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #6B7280;
  --gold:        #C8A96E;
  --gold-light:  #D4BC8B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(11,29,58,0.10);
  --shadow-lg:  0 12px 40px rgba(11,29,58,0.14);
  --shadow-xl:  0 24px 64px rgba(11,29,58,0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --max-width: 1320px;
  --nav-height: 80px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-body); }
p { color: var(--text-mid); font-size: 1.0625rem; line-height: 1.75; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: var(--space-xl) 0; }
.section--lg { padding: var(--space-2xl) 0; }
.section--sm { padding: var(--space-lg) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow--dark { color: var(--navy); }
.eyebrow--light { color: rgba(255,255,255,0.6); }

.text-center { text-align: center; }
.text-light-color { color: rgba(255,255,255,0.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: var(--transition-fast);
}
.btn-arrow svg { transition: transform var(--transition-fast); }
.btn-arrow:hover { color: var(--gold); }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn-arrow--light { color: rgba(255,255,255,0.85); }
.btn-arrow--light:hover { color: var(--white); }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--light { background: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.nav.nav--transparent { background: transparent; }
.nav.nav--solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  height: 68px;
}
.nav.nav--solid .nav-logo { color: var(--navy); }
.nav.nav--solid .nav-link { color: var(--text-dark); }
.nav.nav--solid .nav-link::after { background: var(--navy); }
.nav.nav--solid .nav-cta { background: var(--navy); color: var(--white); }
.nav.nav--solid .hamburger span { background: var(--navy); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  z-index: 10;
  transition: color var(--transition);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  z-index: 1001;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-fast);
}
.mobile-menu__link:hover { color: var(--white); }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu__contact {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,29,58,0.97) 0%, rgba(26,47,82,0.9) 50%, rgba(11,29,58,0.95) 100%);
  z-index: 1;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.hero__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--transition) 0.2s forwards;
}
.hero__label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__label-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__headline {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--transition) 0.35s forwards;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--transition) 0.5s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--transition) 0.65s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── Stats bar ── */
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--transition) 0.8s forwards;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero__stat-number em { color: var(--gold); font-style: normal; }
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* ═══════════════════════════════════════
   TRUSTED COMPANIES
═══════════════════════════════════════ */
.trust {
  padding: 3rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}
.trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.trust__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
  cursor: default;
  white-space: nowrap;
}
.trust__logo:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   SERVICES PREVIEW
═══════════════════════════════════════ */
.services-preview { background: var(--white); }
.services-preview__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-preview__title { max-width: 500px; }
.services-preview__desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 0.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  overflow: hidden;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-child(n+5) { border-bottom: none; }
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover .service-card__num,
.service-card:hover .service-card__name,
.service-card:hover .service-card__desc,
.service-card:hover .service-card__link { color: rgba(255,255,255,0.85); }
.service-card:hover .service-card__name { color: var(--white); }
.service-card:hover .service-card__icon { border-color: rgba(255,255,255,0.2); }
.service-card:hover .service-card__icon svg { stroke: var(--gold); }
.service-card__inner { position: relative; z-index: 1; }
.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
}
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--navy); transition: stroke var(--transition); }
.service-card__num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.service-card__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

/* ═══════════════════════════════════════
   CAPABILITIES / INDUSTRIES
═══════════════════════════════════════ */
.capabilities { background: var(--navy); overflow: hidden; position: relative; }
.capabilities::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.capabilities__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.capabilities__title { color: var(--white); max-width: 480px; }
.capabilities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cap-item {
  background: transparent;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.cap-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cap-item:hover { background: rgba(255,255,255,0.04); }
.cap-item:hover::after { transform: scaleX(1); }
.cap-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.cap-item__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}
.cap-item__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   NUMBERS & IMPACT
═══════════════════════════════════════ */
.impact { background: var(--off-white); }
.impact__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: center;
}
.impact__left {}
.impact__right {}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
.impact__stat {}
.impact__stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.impact__stat-number em { color: var(--gold); font-style: normal; }
.impact__stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   INSIGHTS PREVIEW
═══════════════════════════════════════ */
.insights-preview { background: var(--white); }
.insights-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.insight-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.insight-card--featured { grid-row: span 1; }
.insight-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insight-card:hover .insight-card__image { transform: scale(1.04); }
.insight-card__image-wrap { overflow: hidden; }
.insight-card__body { padding: 1.75rem; }
.insight-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}
.insight-card:hover .insight-card__title { color: var(--navy); }
.insight-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.insight-card__meta span::after {
  content: '·';
  margin-left: 0.5rem;
}
.insight-card__meta span:last-child::after { display: none; }

/* ═══════════════════════════════════════
   TEAM PREVIEW
═══════════════════════════════════════ */
.team-preview { background: var(--off-white); }
.team-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.team-card__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card__photo { transform: scale(1.04); }
.team-card__photo-wrap { overflow: hidden; background: var(--warm-gray); }
.team-card__body { padding: 1.5rem; }
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials__header { margin-bottom: 3.5rem; }
.testimonials-track { position: relative; overflow: hidden; }
.testimonials-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--border);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--warm-gray);
  border: 2px solid var(--border);
}
.testimonial__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial__title-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}
.testimonial__visual {
  position: relative;
  height: 400px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}
.testimonial__visual-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.6s ease;
}
.testimonial__visual-content { position: relative; z-index: 1; }
.testimonial__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
}
.testimonial__stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.testi-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.testi-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.testi-dots { display: flex; gap: 0.4rem; }
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--navy); width: 18px; border-radius: 3px; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(200,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-banner__title { color: var(--white); max-width: 600px; }
.cta-banner__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  margin-top: 1rem;
  max-width: 500px;
  line-height: 1.7;
}
.cta-banner__actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #06111F;
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand-logo span { color: var(--gold); }
.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,0.1);
}
.footer__social-link svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); }
.footer__social-link:hover svg { stroke: var(--gold); }
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer__col-link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(200,169,110,0.1) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { color: var(--white); max-width: 700px; margin-bottom: 1.5rem; }
.page-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 540px;
  line-height: 1.75;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-intro { background: var(--white); }
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-intro__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-intro__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-intro__image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-intro__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}
.about-intro__badge-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
}

.about-values { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-card__icon svg { width: 24px; height: 24px; stroke: var(--navy); }
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.value-card__desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.about-timeline { background: var(--white); }
.timeline { position: relative; margin-top: 4rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.6rem;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline-item:nth-child(odd) .timeline-item__content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-item__year { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-item__content { grid-column: 2; order: 2; }
.timeline-item:nth-child(even) .timeline-item__year { grid-column: 1; order: 1; text-align: right; }
.timeline-item__year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 0.25rem;
}
.timeline-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.timeline-item__desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.services-list { background: var(--white); }
.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }
.service-item__left { position: sticky; top: 120px; }
.service-item__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-item__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.service-item__right {}
.service-item__desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.service-item__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.service-feature::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════ */
.team-full { background: var(--white); }
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-member {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.team-member__image-wrap {
  overflow: hidden;
  height: 320px;
  background: var(--warm-gray);
}
.team-member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-member:hover .team-member__image { transform: scale(1.05); }
.team-member__body { padding: 2rem; }
.team-member__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.team-member__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-member__bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.team-member__links { display: flex; gap: 0.5rem; }
.team-member__link {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.team-member__link:hover { border-color: var(--navy); background: var(--navy); }
.team-member__link:hover svg { stroke: var(--white); }
.team-member__link svg { width: 14px; height: 14px; stroke: var(--text-light); }

/* ═══════════════════════════════════════
   INSIGHTS PAGE
═══════════════════════════════════════ */
.insights-full { background: var(--white); }
.insights-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.insights-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-full-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.insight-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.insight-full-card__image-wrap { overflow: hidden; height: 200px; background: var(--warm-gray); }
.insight-full-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-full-card:hover .insight-full-card__image { transform: scale(1.04); }
.insight-full-card__body { padding: 1.75rem; }
.insight-full-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.insight-full-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.insight-full-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.insight-full-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8rem;
}
.contact__info-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.contact__info-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact__details { display: flex; flex-direction: column; gap: 2rem; }
.contact__detail-group {}
.contact__detail-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.contact__detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}
.contact__detail-value a { color: var(--navy); }
.contact__detail-value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,0.07);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-offices { background: var(--off-white); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.office-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.office-card__city {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.office-card__country {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.office-card__address {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.page-loader__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}
.page-loader__logo span { color: var(--gold); }
.page-loader__bar {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 1px;
}
.page-loader__progress {
  height: 100%;
  background: var(--gold);
  animation: loadProgress 1.2s ease forwards;
}
@keyframes loadProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+3) { border-bottom: none; }
  .service-card:nth-child(-n+4) { border-bottom: 1px solid var(--border); }
  .capabilities__list { grid-template-columns: repeat(2, 1fr); }
  .impact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .impact__grid { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
  :root { --space-xl: 5rem; --space-2xl: 7rem; }
  .services-preview__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-intro__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 4rem; }
  .testimonial { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial__visual { height: 250px; }
  .cta-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner__actions { align-items: flex-start; }
  .service-item { grid-template-columns: 1fr; gap: 2rem; }
  .service-item__left { position: static; }
  .timeline::before { left: 0; transform: none; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 2rem; }
  .timeline-item::before { left: 0; transform: none; }
  .timeline-item:nth-child(odd) .timeline-item__content { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-item__year { grid-column: 1; text-align: left; order: -1; }
  .timeline-item:nth-child(even) .timeline-item__content { order: 1; }
  .timeline-item:nth-child(even) .timeline-item__year { text-align: left; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .container { padding: 0 1.25rem; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero { min-height: 90vh; padding-bottom: var(--space-lg); }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-full-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .capabilities__list { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .insights-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .capabilities__header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .insights-preview__header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .team-preview__header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .team-grid { grid-template-columns: 1fr; }
  .hero__stat-number { font-size: 1.8rem; }
  .hero__stats { gap: 1.25rem; }
}
@media (max-width:768px){

  .nav-links{
    display:none;
  }

  .nav-cta{
    display:none;
  }

  .hamburger{
    display:flex !important;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
  }

  .hamburger span{
    width:26px;
    height:2px;
    background:#fff;
    display:block;
  }

}
