/* ═══════════════════════════════════════════════
   MAPTALENT.CO.UK — SHARED STYLESHEET
   Brand: #00415e navy + 3 pillar accents
   ═══════════════════════════════════════════════ */

/* ══════════════════════════════════
   CSS CUSTOM PROPERTIES
   ══════════════════════════════════ */
:root {
  --primary:      #00415e;
  --primary-mid:  #003348;
  --primary-dark: #001f2d;
  --secondary:    #4c8c9b;
  --teal-light:   #a6c4cd;
  --yellow:       #ffc168;
  --pillar-1:     #E8C53A;   /* Construction & Engineering */
  --pillar-2:     #D45C7A;   /* Residential Developers */
  --pillar-3:     #E07B3A;   /* Civil Engineering */
  --body-text:    #6b7b85;
  --heading:      #00415e;
  --white:        #ffffff;
  --off-white:    #f4f6f7;
  --light-border: #e2e8ea;
  --font:         'Poppins', sans-serif;
  --max-w:        1280px;
  --gutter:       60px;
  --radius:       4px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ══════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   UTILITIES
   ══════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--teal-light); }

.section-h {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -1px;
  line-height: 1.08;
}
.section-h--white { color: var(--white); }

/* ══════════════════════════════════
   BUTTONS
   ══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,65,94,0.3); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline-dark { border: 1.5px solid var(--primary); color: var(--primary); background: transparent; }
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }
.btn--teal { background: var(--secondary); color: var(--white); }
.btn--teal:hover { background: #3d7a88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,140,155,0.35); }

/* ══════════════════════════════════
   NAVIGATION — Two-tier layout
   Row 1: Logo + utility links
   Row 2: Sector pillars (prominent)
   ══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,31,45,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(0,31,45,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Row 1: Logo + utility links */
.nav-row-1 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .nav-row-1 { height: 48px; }
.nav-logo img { height: 42px; width: auto; transition: height 0.3s var(--ease); }
.nav.scrolled .nav-logo img { height: 28px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  color: var(--white) !important;
  background: var(--secondary) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
  font-size: 11px !important;
}
.nav-cta:hover { background: #3d7a88 !important; }

/* Row 2: Sector pillars — always visible, prominent */
.nav-sectors {
  background: rgba(0,20,30,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-sectors-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
  height: 46px;
  gap: 0;
}
.nav-sector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-sector:first-child { padding-left: 0; }
.nav-sector:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* Pillar accent bar — always partially visible, full on hover */
.nav-sector::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.35;
  transition: opacity 0.25s var(--ease);
}
.nav-sector:hover::after { opacity: 1; }
.nav-sector--1::after { background: var(--pillar-1); }
.nav-sector--2::after { background: var(--pillar-2); }
.nav-sector--3::after { background: var(--pillar-3); }

/* Pillar dot indicators */
.sector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255,255,255,0.15);
}
.sector-dot--1 { background: var(--pillar-1); }
.sector-dot--2 { background: var(--pillar-2); }
.sector-dot--3 { background: var(--pillar-3); }

/* Separator between sectors */
.nav-sector + .nav-sector::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.1);
}

/* Keep dd-dot classes for mobile menu */
.dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dd-dot--1 { background: var(--pillar-1); }
.dd-dot--2 { background: var(--pillar-2); }
.dd-dot--3 { background: var(--pillar-3); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--primary-dark);
  padding: 100px var(--gutter) 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mm-sector {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding-left: 16px;
}
.mobile-menu .mm-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--secondary);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  text-align: center;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(0,65,94,0.88) 0%,
    rgba(0,51,72,0.72) 40%,
    rgba(0,33,48,0.65) 100%
  );
  mix-blend-mode: multiply;
}
/* Additional blue colour wash layer */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,65,94,0.25);
  pointer-events: none;
}
/* Geometric brand accent */
.hero-accent {
  position: absolute;
  bottom: 0; right: -5%;
  width: 55%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(145deg, transparent 30%, rgba(76,140,155,0.06) 100%);
  pointer-events: none;
}
/* Subtle grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 100px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroUp 0.8s 0.2s var(--ease) forwards;
}
.hero-kicker::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--secondary);
}
.hero-h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 0.9s 0.35s var(--ease) forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-light);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroUp 0.9s 0.5s var(--ease) forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 0.9s 0.65s var(--ease) forwards;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(76,140,155,0.5), transparent);
  animation: scrollPulse 2.4s 1.6s infinite;
}

/* Pillar indicator dots in hero */
.hero-pillars {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.hero-pill {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  opacity: 0.6;
}
.hero-pill:nth-child(1) { background: var(--pillar-1); }
.hero-pill:nth-child(2) { background: var(--pillar-2); }
.hero-pill:nth-child(3) { background: var(--pillar-3); }

/* ══════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%     { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════
   PILLARS — "What interests you?"
   ══════════════════════════════════ */
.pillars { background: var(--primary-dark); }
.pillars-header {
  padding: 88px var(--gutter) 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.pillars-header-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 320px;
  flex-shrink: 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pillar {
  padding: 52px 48px 48px;
  position: relative;
  text-decoration: none;
  display: block;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.03); }

.pillar-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover .pillar-bar { transform: scaleX(1); }
.pillar--1 .pillar-bar { background: var(--pillar-1); }
.pillar--2 .pillar-bar { background: var(--pillar-2); }
.pillar--3 .pillar-bar { background: var(--pillar-3); }

.pillar-num {
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  opacity: 0.06;
  color: var(--white);
  margin-bottom: 14px;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar--1 .pillar-icon { background: rgba(232,197,58,0.12); }
.pillar--2 .pillar-icon { background: rgba(212,92,122,0.12); }
.pillar--3 .pillar-icon { background: rgba(224,123,58,0.12); }
.pillar-icon svg { width: 22px; height: 22px; }

.pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.pillar-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
}
.pillar-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease);
}
.pillar--1 .pillar-link { color: var(--pillar-1); }
.pillar--2 .pillar-link { color: var(--pillar-2); }
.pillar--3 .pillar-link { color: var(--pillar-3); }
.pillar:hover .pillar-link { gap: 18px; }
.pillar-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.pillar:hover .pillar-link svg { transform: translateX(2px); }

/* ══════════════════════════════════
   STATS BANNER
   ══════════════════════════════════ */
.stats { background: var(--primary); }
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 52px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ══════════════════════════════════
   ABOUT / WHO WE ARE
   ══════════════════════════════════ */
.about { padding: 128px 0; }
.about-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,65,94,0.12);
}
/* Decorative frame accent */
.about-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-left: 3px solid var(--secondary);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius) 0 0 0;
  opacity: 0.4;
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--primary);
  color: var(--white);
  padding: 28px 34px;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,65,94,0.25);
}
.about-badge strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-text .about-h {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 28px;
}
.about-text p {
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--primary); font-weight: 600; }
.about-text .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}
.about-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 1px;
}

/* ══════════════════════════════════
   CLIENTS
   ══════════════════════════════════ */
.clients {
  background: var(--off-white);
  padding: 100px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.clients-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.clients-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--light-border);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.client-cell {
  background: var(--white);
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  transition: background 0.25s;
}
.client-cell:hover { background: #edf1f3; }
.client-cell img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s var(--ease);
}
.client-cell:hover img { filter: grayscale(0%) opacity(1); }

/* ══════════════════════════════════
   TEAM
   ══════════════════════════════════ */
.team { padding: 128px 0; }
.team-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.team-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(25%);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.team-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,31,45,0.95) 0%, transparent 100%);
}
.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 28px 28px;
}
.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
}
.team-linkedin {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  background: rgba(0,31,45,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s var(--ease);
}
.team-linkedin svg { width: 14px; height: 14px; color: rgba(255,255,255,0.7); }
.team-card:hover .team-linkedin { opacity: 1; transform: translateY(0); }
.team-linkedin:hover { background: rgba(76,140,155,0.6); }
.team-linkedin:hover svg { color: var(--white); }

.team-note {
  margin-top: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.7;
}
.team-note strong { color: var(--primary); font-weight: 600; }

/* ══════════════════════════════════
   PROCESS
   ══════════════════════════════════ */
.process {
  background: var(--primary-dark);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow */
.process::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,140,155,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.process-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  counter-reset: proc;
}
.proc-card {
  background: rgba(255,255,255,0.03);
  padding: 44px 32px 48px;
  border-top: 2px solid transparent;
  text-decoration: none;
  display: block;
  transition: all 0.3s var(--ease);
  position: relative;
  counter-increment: proc;
}
.proc-card:nth-child(1) { border-top-color: var(--pillar-1); }
.proc-card:nth-child(2) { border-top-color: var(--pillar-2); }
.proc-card:nth-child(3) { border-top-color: var(--pillar-3); }
.proc-card:nth-child(4) { border-top-color: var(--secondary); }
.proc-card:hover { background: rgba(255,255,255,0.06); }

.proc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-light);
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.proc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.proc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.proc-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  color: var(--secondary);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s var(--ease);
}
.proc-arrow svg { width: 18px; height: 18px; }
.proc-card:hover .proc-arrow { opacity: 1; transform: translate(0,0); }

/* ══════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════ */
.testimonial {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonial::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(166,196,205,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-quote {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 32px;
  opacity: 0.7;
}
.testimonial-text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  letter-spacing: -0.3px;
  margin-bottom: 32px;
}
.testimonial-attr {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.testimonial-attr strong { color: var(--white); font-weight: 600; }

/* ══════════════════════════════════
   NEWS / INSIGHTS
   ══════════════════════════════════ */
.news { padding: 128px 0; }
.news-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.news-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.news-card {
  background: var(--off-white);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: background 0.25s;
}
.news-card:hover { background: #e6ebee; }
.news-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.news-card:hover .news-img img { transform: scale(1.05); filter: grayscale(0%); }
.news-body { padding: 28px 28px 32px; }
.news-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}
.news-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.news-date {
  font-size: 11px;
  color: var(--body-text);
  font-weight: 400;
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.cta {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,140,155,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.08;
  max-width: 580px;
}
.cta-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-light);
}
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  background: var(--primary-mid);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 28px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.footer-social a svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
.footer-social a:hover { border-color: var(--teal-light); }
.footer-social a:hover svg { color: var(--teal-light); }

.footer-col h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-tags { display: flex; gap: 6px; }
.ftag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.ftag--1 { background: rgba(232,197,58,0.1); color: var(--pillar-1); }
.ftag--2 { background: rgba(212,92,122,0.1); color: var(--pillar-2); }
.ftag--3 { background: rgba(224,123,58,0.1); color: var(--pillar-3); }

/* ════════════════════════════════════════════════
   PAGE HEADER — reusable hero-like banner for
   inner pages (not full-height like homepage)
   ════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  background: var(--primary-dark);
  overflow: hidden;
  padding-top: 100px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(0,31,45,0.92) 0%, rgba(0,51,72,0.7) 50%, rgba(0,31,45,0.6) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--gutter) 64px;
}
.page-header .hero-kicker {
  opacity: 0;
  animation: heroUp 0.8s 0.2s var(--ease) forwards;
}
.page-header .page-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.page-header .page-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════ */
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}
.breadcrumbs a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════
   CONTENT SECTIONS — inner pages
   ══════════════════════════════════ */
.content-section { padding: 100px 0; }
.content-section--alt {
  background: var(--off-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.content-section--dark { background: var(--primary-dark); }
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════
   PROSE — rich text / article body
   ══════════════════════════════════ */
.prose { max-width: 720px; }
.prose h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.8px;
  margin: 48px 0 20px;
  line-height: 1.15;
}
.prose h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.4px;
  margin: 36px 0 16px;
}
.prose p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.prose p strong { color: var(--primary); font-weight: 600; }
.prose ul,
.prose ol { margin: 0 0 24px 20px; }
.prose li {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.prose blockquote {
  border-left: 3px solid var(--secondary);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--primary);
  margin: 0;
}

/* ══════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.form-input,
.form-textarea {
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* ══════════════════════════════════
   TEAM GRID ENHANCED — full team page
   ══════════════════════════════════ */
.team-grid--full { grid-template-columns: repeat(4, 1fr); }

/* ══════════════════════════════════
   PROCESS TIMELINE — detail page
   ══════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-border);
}
.timeline-step {
  position: relative;
  padding-bottom: 48px;
}
.timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,65,94,0.2);
}
.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.timeline-desc {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
}

/* ══════════════════════════════════
   MAP / LOCATION
   ══════════════════════════════════ */
.map-embed {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(30%);
}
.location-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--light-border);
}
.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}
.location-card p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ══════════════════════════════════
   BLOG / NEWS LISTING PAGE
   ══════════════════════════════════ */
.news-grid--list {
  grid-template-columns: 1fr;
  gap: 24px;
}
.news-card--horizontal {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.news-card--horizontal .news-img {
  aspect-ratio: auto;
  height: 100%;
}

/* ══════════════════════════════════
   PILLAR ACCENT OVERRIDES — sector pages
   ══════════════════════════════════ */
.pillar-page--1 .page-header { border-bottom: 3px solid var(--pillar-1); }
.pillar-page--2 .page-header { border-bottom: 3px solid var(--pillar-2); }
.pillar-page--3 .page-header { border-bottom: 3px solid var(--pillar-3); }
.pillar-page--1 .eyebrow { color: var(--pillar-1); }
.pillar-page--2 .eyebrow { color: var(--pillar-2); }
.pillar-page--3 .eyebrow { color: var(--pillar-3); }
.pillar-page--1 .eyebrow::before { background: var(--pillar-1); }
.pillar-page--2 .eyebrow::before { background: var(--pillar-2); }
.pillar-page--3 .eyebrow::before { background: var(--pillar-3); }

/* ══════════════════════════════════
   RESPONSIVE — 1100px breakpoint
   ══════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }

  /* Navigation */
  .nav-menu { display: none; }
  .nav-sectors { display: none; }
  .nav-hamburger { display: flex; }
  .nav-row-1 { height: 64px; }

  /* Pillars section */
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pillar:last-child { border-bottom: none; }
  .pillar-bar { transform: scaleX(1); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-wrap { grid-template-columns: 1fr; gap: 64px; }
  .about-badge { bottom: -20px; right: 20px; }
  .about-visual::before { display: none; }

  /* Clients */
  .clients-logos { grid-template-columns: repeat(4, 1fr); }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid--full { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Flex section headers — stack vertically */
  .pillars-header,
  .clients-top,
  .team-top,
  .process-top,
  .news-top { flex-direction: column; align-items: flex-start; }

  /* CTA band */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  /* Hero */
  .hero-pillars { display: none; }

  /* Contact form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  /* News horizontal card */
  .news-card--horizontal { grid-template-columns: 220px 1fr; }
}

/* ══════════════════════════════════
   RESPONSIVE — 768px breakpoint
   ══════════════════════════════════ */
@media (max-width: 768px) {
  /* Page header */
  .page-header { min-height: 40vh; }
  .page-header-content { padding: 40px var(--gutter) 48px; }
  .page-header .page-title { letter-spacing: -1px; }

  /* News horizontal card */
  .news-card--horizontal { grid-template-columns: 1fr; }
  .news-card--horizontal .news-img { height: 220px; aspect-ratio: auto; }

  /* Prose */
  .prose h2 { font-size: 26px; margin: 36px 0 16px; }
  .prose h3 { font-size: 20px; margin: 28px 0 14px; }

  /* Location card */
  .location-card { padding: 28px 24px; }

  /* Map */
  .map-embed { height: 320px; }
}

/* ══════════════════════════════════
   RESPONSIVE — 640px breakpoint
   ══════════════════════════════════ */
@media (max-width: 640px) {
  :root { --gutter: 20px; }

  /* Hero */
  .hero-content { padding-bottom: 72px; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 16px; }
  .stat-num { font-size: 36px; }

  /* Clients */
  .clients-logos { grid-template-columns: repeat(3, 1fr); }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--full { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* About */
  .about-text .about-features { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  /* CTA */
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }

  /* Page header */
  .page-header { min-height: 35vh; }
  .page-header .page-title { letter-spacing: -0.5px; }
  .page-header .page-subtitle { font-size: 14px; }

  /* Content section */
  .content-section { padding: 72px 0; }

  /* Prose */
  .prose h2 { font-size: 24px; }
  .prose h3 { font-size: 18px; }
  .prose blockquote { padding: 16px 20px; }
  .prose blockquote p { font-size: 15px; }

  /* Timeline */
  .timeline { padding-left: 40px; }
  .timeline-dot { left: -40px; width: 28px; height: 28px; font-size: 11px; }
  .timeline-title { font-size: 18px; }

  /* Map */
  .map-embed { height: 260px; }

  /* Location card */
  .location-card { padding: 24px 20px; }

  /* Breadcrumbs */
  .breadcrumbs { font-size: 10px; }
}
