/* ============================================================
   CIRCULAR BLUE — GLOBAL STYLESHEET
   Design language: Authoritative · Minimal · Environmental
   Inspired by McKinsey.com clarity + CB brand identity
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  /* Color */
  --navy-deep:   #070F1E;
  --navy:        #0B1A35;
  --navy-mid:    #12274D;
  --navy-light:  #1A3366;
  --blue:        #1A3EC8;
  --blue-mid:    #2353E0;
  --green:       #22B84A;
  --green-mid:   #27C850;
  --teal:        #0D7A7A;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --warm-white:  #FAFBFC;
  --rule:        #E2E6EF;
  --gray-100:    #EEF0F5;
  --gray-200:    #D6DBE8;
  --gray-400:    #8E9BBD;
  --gray-600:    #576380;
  --text:        #0B1A35;
  --text-body:   #3C4E70;
  --text-muted:  #7B8BA8;

  /* Gradients */
  --grad-hero:     linear-gradient(135deg, #070F1E 0%, #0B1A35 50%, #0D2250 100%);
  --grad-brand:    linear-gradient(90deg, #1A3EC8 0%, #0D7A7A 50%, #22B84A 100%);
  --grad-brand-v:  linear-gradient(180deg, #1A3EC8 0%, #22B84A 100%);
  --grad-section:  linear-gradient(135deg, #0B1A35 0%, #0D2250 100%);
  --grad-card:     linear-gradient(135deg, #0F2347 0%, #152D5A 100%);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:  120px;
  --section-sm:   80px;
  --max-width:    1280px;
  --nav-height:   80px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(11,26,53,0.08);
  --shadow-md:  0 8px 32px rgba(11,26,53,0.12);
  --shadow-lg:  0 20px 60px rgba(11,26,53,0.18);
  --shadow-xl:  0 32px 80px rgba(11,26,53,0.24);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-mid:  0.3s ease;
  --t-slow: 0.5s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Typography Scale ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.eyebrow-light {
  color: rgba(255,255,255,0.55);
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-sm) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Brand Gradient Text ── */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all var(--t-mid);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,62,200,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,62,200,0.45);
  filter: brightness(1.08);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-text {
  padding: 0;
  height: auto;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
}
.btn-text::after {
  content: ' →';
  transition: transform var(--t-fast);
}
.btn-text:hover::after {
  transform: translateX(4px);
}
.btn-text:hover { color: var(--green); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.7;
  transition: all var(--t-fast);
}
.btn-arrow:hover { opacity: 1; gap: 12px; }

.btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}

.nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav.nav-light {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo { height: 44px; width: auto; }

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-icon {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.nav-wordmark {
  height: 52px;
  width: auto;
  max-width: 260px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform var(--t-fast);
}

.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-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--grad-brand);
  padding: 10px 22px;
  border-radius: 4px;
  transition: all var(--t-mid);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,62,200,0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--t-fast);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(26,62,200,0.12);
}

.hero-bg-lines::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(34,184,74,0.08);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, rgba(26,62,200,0.14) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 200px;
  background: radial-gradient(circle, rgba(34,184,74,0.1) 0%, transparent 70%);
}

.hero-grid {
  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: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Sub-page Hero ── */
.page-hero {
  position: relative;
  background: var(--grad-section);
  padding: calc(var(--nav-height) + 80px) 0 90px;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,62,200,0.4), rgba(34,184,74,0.4), transparent);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 600px; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--rule);
}

.stat-item {
  padding: 52px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: none;
  transition: background var(--t-mid);
}

.stat-item:hover { background: var(--off-white); }

.stat-num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Section Intros ── */
.section-intro {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro h2 { margin-bottom: 18px; }

.section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 20px;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 52px 48px;
  transition: background var(--t-mid);
  position: relative;
}

.service-card:hover { background: var(--off-white); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,62,200,0.1), rgba(34,184,74,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.service-card h4 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--t-fast);
}

.service-card-link:hover {
  color: var(--green);
  gap: 10px;
}

/* ── Flywheel Section ── */
.flywheel-section {
  background: var(--grad-section);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.flywheel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.flywheel-text h2 { color: var(--white); margin-bottom: 20px; }
.flywheel-text p  { color: rgba(255,255,255,0.65); font-size: 17px; }

.flywheel-diagram {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ── SVG Flywheel ── */
.flywheel-svg {
  width: 100%;
  height: auto;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.flywheel-svg-wrapper {
  position: relative;
}

.flywheel-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

/* ── Markets / Who We Serve ── */
.markets-section { background: var(--off-white); }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--t-mid);
}

.market-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.market-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: block;
}

.market-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.market-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Insights / Articles ── */
.insights-section { background: var(--white); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 36px;
  transition: border-color var(--t-fast);
}

.insight-card:hover { border-color: var(--blue); }

.insight-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.insight-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 14px;
  flex: 1;
  transition: color var(--t-fast);
}

.insight-card:hover h4 { color: var(--blue); }

.insight-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.insight-meta {
  font-size: 13px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}

.insight-meta span + span::before {
  content: '·';
  margin-right: 12px;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--grad-section);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,62,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p  { color: rgba(255,255,255,0.62); font-size: 18px; max-width: 560px; }

/* ── Feature Band (dark on light split) ── */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.feature-band-dark {
  background: var(--grad-section);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band-light {
  background: var(--off-white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Detail Service Page ── */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}

.service-detail-num {
  font-size: 80px;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-outcomes {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.service-outcomes h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.outcome-item:last-child { border-bottom: none; padding-bottom: 0; }

.outcome-check {
  width: 22px;
  height: 22px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.outcome-item p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

/* ── Process Steps ── */
.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  counter-increment: step;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  width: 40px;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-num::before { content: "0" counter(step); }

.step-content h5 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.step-content p  { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ── Technology Platform ── */
.tech-section {
  background: var(--nav);
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  transition: all var(--t-mid);
}

.tech-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,62,200,0.4);
}

.tech-card h4 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.tech-card p  { color: rgba(255,255,255,0.55); font-size: 15px; margin: 0; line-height: 1.65; }

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34,184,74,0.15);
  border: 1px solid rgba(34,184,74,0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* ── About Page ── */
.mission-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.mission-quote {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  border-left: 4px solid transparent;
  border-image: var(--grad-brand) 1;
  padding-left: 32px;
  max-width: 820px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.value-card {
  padding: 0;
}

.value-num {
  font-size: 48px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.value-card h4 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.value-card p  { font-size: 16px; color: var(--text-muted); margin: 0; }

/* ── Team Section ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.team-card {
  border-top: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  padding-top: 24px;
}

.team-card h4 { font-size: 22px; margin-bottom: 4px; }
.team-title   { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.team-card p  { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ── PBC Banner ── */
.pbc-banner {
  background: linear-gradient(135deg, rgba(26,62,200,0.06) 0%, rgba(34,184,74,0.06) 100%);
  border: 1px solid rgba(34,184,74,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.pbc-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pbc-icon svg { width: 28px; height: 28px; stroke: var(--white); stroke-width: 2; }
.pbc-banner h4 { font-size: 22px; margin-bottom: 10px; color: var(--text); }
.pbc-banner p  { font-size: 16px; color: var(--text-body); margin: 0; line-height: 1.65; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info h3 { margin-bottom: 20px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-detail h5 { font-size: 13px; font-weight: 600; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail p  { font-size: 16px; color: var(--text); margin: 0; }

/* ── Form ── */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

textarea.form-control {
  height: 140px;
  padding: 16px;
  resize: vertical;
  line-height: 1.6;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238E9BBD' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,62,200,0.12);
}

.form-control::placeholder { color: var(--text-muted); }

.form-submit {
  width: 100%;
  height: 56px;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--t-mid);
  font-family: var(--font);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,62,200,0.35);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--rule);
}

.divider-grad {
  height: 2px;
  background: var(--grad-brand);
  opacity: 0.4;
}

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 300px;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-logo { height: 40px; width: auto; max-width: 260px; }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-icon {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.footer-wordmark {
  height: 44px;
  width: auto;
  max-width: 240px;
}

.footer-col h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.25);
}

/* ── Insights Full Page ── */
.insights-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.insight-full-card {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 40px;
  transition: border-color var(--t-fast);
  cursor: pointer;
}
.insight-full-card:hover { border-color: var(--blue); }

.insight-full-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color var(--t-fast);
}
.insight-full-card:hover h3 { color: var(--blue); }

.insight-full-card p {
  font-size: 16px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .container { padding: 0 36px; }
  .container-narrow { padding: 0 36px; }
  .stat-item { padding: 40px 28px; }
}

@media (max-width: 960px) {
  :root { --section-pad: 80px; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 24px 36px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  h1 { font-size: 40px; }
  h2 { font-size: 32px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; gap: 32px; }
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-full-grid { grid-template-columns: 1fr 1fr; }
  .flywheel-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tech-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-body { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .pbc-banner { flex-direction: column; gap: 20px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  :root { --section-pad: 60px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .insights-full-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .stat-item { padding: 32px 20px; }
  .service-card { padding: 32px 24px; }
  .contact-form { padding: 32px 24px; }
  .feature-band-dark, .feature-band-light { padding: 60px 24px; }
}
