/* ══════════════════════════════════════════════════════════════════
   FMH — FEUR MEDIA HOUSE — MAIN STYLES
   Design system: Navy #0B1B2A | Blue #076FB2 | Cream #F4F2EE
   Fonts: Sora (headings) + Poppins (body)
══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1B2A;
  --navy-mid: #0f2236;
  --blue: #076FB2;
  --blue-bright: #1A8FD8;
  --cream: #F4F2EE;
  --white: #FFFFFF;
  --gray: #8A8A8A;
  --gray-light: #E0DDD8;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: page-enter 0.35s ease both;
}


/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--blue); z-index: 9997;
  width: 0%; transition: width 0.1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 60px; height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease;
}
nav.filled {
  background: rgba(11,27,42,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-logo em { color: var(--blue); font-style: normal; }
.nav-logo-img { height: 65px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 48px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--blue); }
.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 24px; text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.nav-cta:hover { border-color: var(--blue); background: var(--blue); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* ── MOBILE MENU — Split Panel ── */
.nav-mobile {
  position: fixed; inset: 0; top: 72px;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  z-index: 1000;
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}

/* Left panel */
.nav-mobile-left {
  width: 58%; background: #0b1b2a;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  padding: 32px 24px 28px;
  position: relative; overflow: hidden;
}
.nav-mobile-left::after {
  content: '';
  position: absolute; bottom: -50px; left: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.nav-mobile-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
  margin-bottom: 28px;
}
.nav-mobile-links {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.nav-mobile-link {
  width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; cursor: pointer; text-align: left;
  transition: border-color 0.25s;
}
.nav-mobile-links li:last-child .nav-mobile-link { border-bottom: none; }
.nav-mobile-link.active { border-color: rgba(59,130,246,0.25); }
.nml-num {
  font-size: 9px; font-weight: 600; font-family: monospace;
  color: rgba(255,255,255,0.18); min-width: 18px;
  transition: color 0.25s;
}
.nav-mobile-link.active .nml-num { color: var(--blue); }
.nml-label {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 5.5vw, 26px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: rgba(255,255,255,0.32);
  transition: color 0.25s, transform 0.25s;
}
.nav-mobile-link.active .nml-label { color: var(--white); transform: translateX(4px); }
.nml-arrow {
  margin-left: auto; font-size: 14px;
  color: transparent;
  transition: color 0.25s, transform 0.25s;
}
.nav-mobile-link.active .nml-arrow { color: var(--blue); transform: translateX(3px); }
.nav-mobile-cta {
  display: block; margin-top: 28px; padding: 11px 16px;
  background: var(--blue); border-radius: 6px;
  font-family: 'Sora', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; text-align: center;
}

/* Right panel */
.nav-mobile-right {
  flex: 1; background: #0d2137;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  position: relative; overflow: hidden;
}
.nmr-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transition: background 0.35s;
}
.nmr-bg-num {
  position: absolute; top: 8px; right: -8px;
  font-size: 90px; font-weight: 900; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none; user-select: none;
  transition: opacity 0.25s;
}
.nmr-content { position: relative; z-index: 2; }
.nmr-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.25s, opacity 0.25s;
}
.nmr-headline {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--white); line-height: 1.4; margin-bottom: 7px;
  transition: opacity 0.25s;
}
.nmr-desc {
  font-size: 11px; color: rgba(255,255,255,0.38);
  line-height: 1.6;
  transition: opacity 0.25s;
}
.nmr-visit-btn {
  display: inline-block; margin-top: 14px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, opacity 0.25s;
}
.nmr-visit-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.nmr-fading .nmr-visit-btn { opacity: 0; }
.nmr-fading .nmr-tag,
.nmr-fading .nmr-headline,
.nmr-fading .nmr-desc { opacity: 0; }

/* Page blur overlay while menu open */
.nav-mobile-backdrop {
  position: fixed; inset: 0; top: 72px;
  background: rgba(5,12,22,0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.nav-mobile-backdrop.open { opacity: 1; pointer-events: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 60px 100px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.page-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: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 40%, transparent 100%);
}
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; position: relative; z-index: 2;
}
.page-hero-eyebrow-line { width: 24px; height: 1px; background: var(--blue); }
.page-hero-eyebrow span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue);
}
.page-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95; letter-spacing: -0.04em;
  color: var(--white); position: relative; z-index: 2;
}
.page-hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.page-hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 520px;
  margin-top: 32px; position: relative; z-index: 2;
}

/* ── SECTION COMMONS ── */
.section-pad { padding: 120px 60px; }
.section-inner { max-width: 1320px; margin: 0 auto; }
.label-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.label-line { width: 24px; height: 1px; background: var(--blue); }
.label-text {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue);
}
.rule { width: 40px; height: 2px; background: var(--blue); margin-bottom: 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white); background: var(--blue);
  padding: 14px 32px; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px; text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--blue); background: rgba(7,111,178,0.15); }
.btn-outline.dark { color: var(--navy); border-color: rgba(11,27,42,0.2); }
.btn-outline.dark:hover { color: var(--white); background: var(--navy); border-color: var(--navy); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.up { 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; }

/* ── SERVICES TICKER ── */
.svc-ticker {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 20px 0;
}
.svc-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.svc-ticker { cursor: grab; user-select: none; }
.svc-ticker.is-dragging { cursor: grabbing; }
.svc-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.svc-item:hover { opacity: 0.75; }
.svc-phase {
  font-family: 'Sora', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(7,111,178,0.4);
  color: rgba(7,111,178,0.85);
  padding: 2px 7px;
}
.svc-name {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .svc-ticker { padding: 14px 0; }
  .svc-item { padding: 0 24px 0 0; margin-right: 24px; }
  .svc-name { font-size: 15px; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 60px 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: 36px;
}
.footer-logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px; display: block;
}
.footer-logo em { color: var(--blue); font-style: normal; }
.footer-logo .nav-logo-img { height: 55px; }
.footer-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.35); font-weight: 300;
  margin-bottom: 32px; max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-btn:hover { border-color: var(--blue); color: var(--blue); }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════ HOMEPAGE SPECIFIC ══════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  background: var(--navy);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-spotlight {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,111,178,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.6s ease, top 0.6s ease;
}
.hero-eyebrow {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--blue); }
.hero-eyebrow span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--blue);
}
.hero-title {
  position: relative; z-index: 2;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 13vw, 192px);
  line-height: 1.0; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 48px; overflow: hidden;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.1em; }
.hero-title .line-inner {
  display: block; transform: translateY(110%);
  animation: slideUp 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.34s; }
@keyframes slideUp { to { transform: translateY(0); } }
.hero-title .accent { color: var(--blue); }
.hero-bottom {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  justify-content: space-between;
  opacity: 0; animation: fadeIn 0.8s 0.7s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-tagline {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 400px;
}
.hero-tagline strong { color: var(--white); font-weight: 600; }
.hero-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll-hint span {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* About section (homepage) */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.about-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy); position: sticky; top: 120px;
}
.about-headline em { font-style: italic; font-weight: 300; color: var(--gray); }
.about-body { padding-top: 12px; }
.about-body p {
  font-size: 18px; line-height: 1.85;
  color: #444; margin-bottom: 28px; font-weight: 300;
}
.about-body p strong { color: var(--navy); font-weight: 600; }
.about-divider { width: 100%; height: 1px; background: var(--gray-light); margin: 48px 0; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-pillar-num {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--blue); margin-bottom: 10px;
}
.about-pillar-title {
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.about-pillar-text { font-size: 13px; line-height: 1.75; color: var(--gray); }

/* Statement band */
#statement {
  background: var(--navy);
  padding: 120px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.statement-text {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--white); max-width: 1100px;
}
.statement-text em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.statement-text .hl, .statement-pull .hl { color: var(--blue); }

/* Capabilities (homepage) */
#capabilities { background: var(--cream); }
.cap-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
}
.cap-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -0.03em; color: var(--navy);
}
.cap-intro { max-width: 380px; font-size: 16px; line-height: 1.75; color: #666; font-weight: 300; padding-bottom: 8px; }
.phase-tabs { display: flex; border-bottom: 1px solid var(--gray-light); }
.phase-tab {
  padding: 20px 40px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray); border: none; background: none;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.phase-tab.active { color: var(--navy); border-bottom-color: var(--blue); }
.phase-tab .tab-num { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 400; color: var(--gray); margin-left: 8px; opacity: 0.7; }
.phase-panel { display: none; }
.phase-panel.active { display: block; }
.phase-intro-bar {
  display: flex; align-items: flex-start;
  gap: 60px; padding: 48px 0 40px;
  border-bottom: 1px solid var(--gray-light);
}
.phase-intro-heading {
  font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; white-space: nowrap;
}
.phase-intro-heading em { font-style: normal; color: var(--blue); }
.phase-intro-desc { font-size: 15px; line-height: 1.75; color: var(--gray); font-weight: 300; max-width: 560px; padding-top: 4px; }
.services-list { border-top: 1px solid var(--gray-light); }
.service-row {
  display: grid; grid-template-columns: 64px 1fr 1fr auto;
  gap: 40px; align-items: center; padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.3s; text-decoration: none;
}
.service-row:hover { background: rgba(7,111,178,0.04); }
.service-row:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-row:hover .service-num { color: var(--blue); }
.service-num {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: rgba(138,138,138,0.5); transition: color 0.3s;
}
.service-name {
  font-family: 'Sora', sans-serif; font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.service-desc { font-size: 14px; line-height: 1.7; color: var(--gray); font-weight: 300; }
.service-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(7,111,178,0.3); padding: 5px 12px; white-space: nowrap;
}
.service-arrow {
  width: 30px; height: 30px; border: 1px solid var(--gray-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s;
}

/* Numbers */
#numbers { background: var(--navy); }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.number-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 56px 40px;
}
.number-val {
  font-family: 'Sora', sans-serif; font-size: clamp(48px, 5vw, 72px);
  font-weight: 800; letter-spacing: -0.04em; color: var(--white); line-height: 1; margin-bottom: 16px;
}
.number-val span { color: var(--blue); }
.number-label { font-size: 14px; font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.45); }

/* Approach steps */
#approach { background: var(--cream); }
.approach-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 80px; max-width: 700px;
}
.approach-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; border: 1px solid var(--gray-light); }
.step-card {
  background: var(--white); padding: 48px 36px;
  border-right: 1px solid var(--gray-light); transition: background 0.3s;
}
.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--navy); }
.step-card:hover .step-num { color: var(--blue); }
.step-card:hover .step-title { color: var(--white); }
.step-card:hover .step-body { color: rgba(255,255,255,0.5); }
.step-num {
  font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--gray-light); line-height: 1; margin-bottom: 32px; transition: color 0.3s;
}
.step-title {
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; transition: color 0.3s;
}
.step-body { font-size: 14px; line-height: 1.75; color: var(--gray); transition: color 0.3s; }

/* Insights preview */
#insights { background: var(--navy); }
.insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.insights-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(40px, 4.5vw, 60px); line-height: 1.08; letter-spacing: -0.03em; color: var(--white);
}
.insights-all {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.insights-all:hover { color: var(--white); }
.insights-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2px; }
.insight-card {
  border: 1px solid rgba(255,255,255,0.07); padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
  text-decoration: none; transition: background 0.3s, border-color 0.3s;
}
.insight-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.insight-card.featured { padding: 64px; }
.insight-cards-right { display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.insight-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); }
.insight-title { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.25; color: var(--white); }
.insight-card.featured .insight-title { font-size: clamp(20px, 2.2vw, 28px); }
.insight-card.small .insight-title { font-size: 18px; }
.insight-excerpt { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); font-weight: 300; }
.insight-meta { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }

/* CTA section */
#cta {
  background: var(--navy-mid); padding: 180px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.cta-bg-text {
  position: absolute; bottom: -40px; right: -20px;
  font-family: 'Sora', sans-serif; font-size: 240px; font-weight: 800;
  letter-spacing: -0.05em; color: rgba(255,255,255,0.02);
  pointer-events: none; user-select: none; line-height: 1; white-space: nowrap;
}
.cta-inner { position: relative; z-index: 2; }
.cta-headline {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95; letter-spacing: -0.04em; color: var(--white); margin-bottom: 48px; max-width: 900px;
}
.cta-headline em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.cta-actions { display: flex; gap: 24px; align-items: center; }
.cta-email {
  font-family: 'Sora', sans-serif; font-size: clamp(16px, 2vw, 22px);
  font-weight: 600; letter-spacing: -0.01em; color: var(--white);
  text-decoration: none; border-bottom: 2px solid var(--blue);
  padding-bottom: 4px; transition: color 0.2s;
}
.cta-email:hover { color: var(--blue); }
.cta-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }
.cta-sub-link {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4);
  text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
}
.cta-sub-link:hover { color: var(--white); }

/* ══════════════════════ ABOUT PAGE ══════════════════════ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.mission-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.05; letter-spacing: -0.03em; color: var(--navy); position: sticky; top: 100px;
}
.mission-headline em { font-style: italic; font-weight: 300; color: var(--gray); }
.mission-body p { font-size: 18px; line-height: 1.85; color: #444; font-weight: 300; margin-bottom: 28px; }
.mission-body p strong { color: var(--navy); font-weight: 600; }
.statement-band { background: var(--navy); padding: 100px 60px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.statement-band-inner { max-width: 1320px; margin: 0 auto; }
.statement-pull {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.12; letter-spacing: -0.03em; color: var(--white);
}
.statement-pull em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.3); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.value-card {
  background: var(--white); padding: 52px 40px;
  border: 1px solid var(--gray-light); transition: background 0.3s;
}
.value-card:hover { background: var(--navy); }
.value-card:hover .value-num { color: var(--blue); }
.value-card:hover .value-title { color: var(--white); }
.value-card:hover .value-body { color: rgba(255,255,255,0.5); }
.value-num { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--blue); margin-bottom: 20px; transition: color 0.3s; }
.value-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; transition: color 0.3s; }
.value-body { font-size: 14px; line-height: 1.8; color: var(--gray); transition: color 0.3s; }
.team-headline { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(40px, 4.5vw, 60px); line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; }
.team-sub { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 520px; margin-bottom: 72px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 40px 32px; transition: background 0.3s; }
.team-card:hover { background: rgba(255,255,255,0.06); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--white);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.team-role { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.team-bio { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45); }

/* Milestones */
.milestones-outer { position: relative; overflow: hidden; margin: 0 -60px; padding: 0 60px; }
.milestones-track-wrap {
  overflow-x: auto; overflow-y: visible; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 40px; cursor: grab;
}
.milestones-track-wrap:active { cursor: grabbing; }
.milestones-track-wrap::-webkit-scrollbar { display: none; }
.milestones { display: flex; flex-direction: row; gap: 0; position: relative; min-width: max-content; padding-top: 120px; }
.milestones::before { content: ''; position: absolute; left: 0; right: 0; top: 60px; height: 1px; background: rgba(255,255,255,0.1); }
.milestone-item { width: 240px; flex-shrink: 0; position: relative; padding: 0 32px 0 0; cursor: pointer; }
.milestone-item:last-child { padding-right: 0; }
.milestone-node-wrap { position: absolute; top: -68px; left: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.milestone-year { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 8px; transition: color 0.3s; }
.milestone-node { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); background: var(--navy); position: relative; z-index: 1; transition: border-color 0.3s, background 0.3s, transform 0.3s; }
.milestone-item.is-active .milestone-node, .milestone-item:hover .milestone-node { border-color: var(--blue); background: var(--blue); transform: scale(1.5); }
.milestone-item.is-active .milestone-year, .milestone-item:hover .milestone-year { color: var(--white); }
.milestone-content { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; transition: background 0.3s, border-color 0.3s; min-height: 180px; }
.milestone-item.is-active .milestone-content, .milestone-item:hover .milestone-content { background: rgba(7,111,178,0.1); border-color: rgba(7,111,178,0.3); }
.milestone-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(7,111,178,0.35); padding: 3px 10px; margin-bottom: 12px; }
.milestone-item.is-active .milestone-badge, .milestone-item:hover .milestone-badge { background: var(--blue); color: var(--white); border-color: var(--blue); }
.milestone-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.milestone-body { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45); display: none; }
.milestone-item.is-active .milestone-body { display: block; }
.milestones-nav { display: flex; gap: 8px; margin-top: 32px; }
.milestone-nav-btn { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); background: none; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.milestone-nav-btn:hover { border-color: var(--blue); color: var(--white); background: rgba(7,111,178,0.15); }
.milestone-detail { margin-top: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px 48px; display: none; }
.milestone-detail.visible { display: block; }
.milestone-detail-year { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--blue); margin-bottom: 8px; }
.milestone-detail-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.milestone-detail-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 680px; }

/* Timeline (approach) */
.approach-headline-sm { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(40px, 4.5vw, 60px); line-height: 1.05; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 72px; max-width: 640px; }
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--gray-light); margin-left: 40px; }
.timeline-item { padding: 0 0 60px 60px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -8px; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--white); border: 2px solid var(--blue); }
.timeline-item:hover .timeline-dot { background: var(--blue); }
.timeline-step { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.timeline-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.timeline-body { font-size: 15px; line-height: 1.8; color: var(--gray); max-width: 680px; }

/* About CTA band */
.cta-band { background: var(--navy-mid); padding: 120px 60px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.cta-band-inner { max-width: 680px; margin: 0 auto; }
.cta-band-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; }
.cta-band-sub { font-size: 17px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.cta-band-actions { display: flex; gap: 20px; justify-content: center; }

/* ══════════════════════ CAPABILITIES ARCHIVE ══════════════════════ */
.caps-filter-bar { display: flex; gap: 0; margin-bottom: 0; padding: 0 60px; background: var(--cream); position: sticky; top: 72px; z-index: 100; border-bottom: 1px solid var(--gray-light); }
.cap-filter-btn {
  padding: 20px 40px; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray);
  border: none; background: none; border-bottom: 3px solid transparent; margin-bottom: -1px; transition: color 0.25s, border-color 0.25s;
}
.cap-filter-btn.active { color: var(--navy); border-bottom-color: var(--blue); }
.cap-section { padding: 0 60px 80px; background: var(--cream); }
.cap-section-inner { max-width: 1320px; margin: 0 auto; }
.cap-phase-intro { padding: 64px 0 48px; border-bottom: 1px solid var(--gray-light); margin-bottom: 0; display: flex; gap: 60px; align-items: flex-start; }
.cap-phase-title { font-family: 'Sora', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; white-space: nowrap; }
.cap-phase-title em { font-style: normal; color: var(--blue); }
.cap-phase-desc { font-size: 15px; line-height: 1.75; color: var(--gray); font-weight: 300; max-width: 560px; padding-top: 4px; }
.cap-hidden { display: none !important; }

/* ══════════════════════ SINGLE CAPABILITY ══════════════════════ */
.cap-layout { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.cap-main {}
.cap-aside { position: sticky; top: 100px; }
.cap-aside-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px 32px; margin-bottom: 2px; }
.cap-aside-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.cap-aside-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cap-aside-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 10px; }
.cap-aside-links a:hover { color: var(--white); }
.cap-aside-links a.current { color: var(--white); }
.cap-overview { font-size: 20px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 64px; }
.cap-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.cap-section-title { font-family: 'Sora', sans-serif; font-size: clamp(28px,3vw,40px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 24px; line-height: 1.1; }
.cap-body-text { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 48px; }
.cap-deliverables-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-bottom: 64px; }
.cap-deliverable { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; }
.cap-deliverable-text { font-size: 14px; font-weight: 500; color: var(--white); }
.cap-outcomes-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.cap-outcomes-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.cap-outcomes-list li::before { content: '→'; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.cap-why-matters { background: rgba(7,111,178,0.08); border: 1px solid rgba(7,111,178,0.2); border-left: 3px solid var(--blue); padding: 40px; margin-bottom: 64px; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); }

/* ══════════════════════ INSIGHTS ARCHIVE ══════════════════════ */
.insights-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.insight-archive-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); padding: 48px; display: flex; flex-direction: column; gap: 16px; text-decoration: none; transition: background 0.3s, border-color 0.3s; }
.insight-archive-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.insight-archive-card.is-featured { grid-column: span 2; }
.insights-filter { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.insight-filter-btn { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 20px; border: 1px solid rgba(255,255,255,0.15); background: none; color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.insight-filter-btn:hover, .insight-filter-btn.active { border-color: var(--blue); color: var(--white); background: rgba(7,111,178,0.1); }
.newsletter-band { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 80px 60px; }
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-title { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.newsletter-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-right: none; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 14px; padding: 14px 20px; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn { background: var(--blue); border: none; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; padding: 14px 28px; transition: background 0.25s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--blue-bright); }

/* ══════════════════════ SINGLE INSIGHT ══════════════════════ */
.insight-layout { display: grid; grid-template-columns: 1fr 300px; gap: 80px; align-items: start; }
.insight-sidebar { position: sticky; top: 100px; }
.insight-sidebar-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 32px; margin-bottom: 2px; }
.insight-sidebar-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.insight-toc-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.insight-toc-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; display: flex; align-items: flex-start; gap: 10px; }
.insight-toc-links a:hover { color: var(--white); }
.insight-toc-links a::before { content: '—'; color: var(--blue); flex-shrink: 0; font-size: 10px; margin-top: 3px; }
.article-body { font-size: 17px; line-height: 1.9; color: rgba(255,255,255,0.7); }
.article-body h2 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: var(--white); margin: 56px 0 24px; letter-spacing: -0.02em; }
.article-body h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin: 40px 0 16px; }
.article-body p { margin-bottom: 28px; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body a { color: var(--blue-bright); text-decoration: none; border-bottom: 1px solid rgba(26,143,216,0.3); }
.article-body ul, .article-body ol { margin: 0 0 28px 24px; }
.article-body li { margin-bottom: 10px; }
.pull-quote { font-family: 'Sora', sans-serif; font-size: clamp(20px,2.5vw,28px); font-weight: 300; font-style: italic; line-height: 1.4; color: rgba(255,255,255,0.8); border-left: 3px solid var(--blue); padding: 32px 48px; margin: 48px 0; background: rgba(255,255,255,0.03); }
.key-takeaways { background: rgba(7,111,178,0.08); border: 1px solid rgba(7,111,178,0.2); padding: 32px 40px; margin-bottom: 48px; }
.key-takeaways-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.key-takeaways ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.key-takeaways li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.75); }
.key-takeaways li::before { content: '→'; color: var(--blue); flex-shrink: 0; }
.article-cta { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07); padding: 48px; text-align: center; margin-top: 64px; }
.article-cta-text { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.article-meta-bar { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 48px; }
.article-meta-author { display: flex; align-items: center; gap: 16px; }
.article-meta-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.article-meta-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
.article-meta-role { font-size: 12px; color: rgba(255,255,255,0.4); }
.share-buttons { display: flex; gap: 8px; }
.share-btn { border: 1px solid rgba(255,255,255,0.12); background: none; color: rgba(255,255,255,0.5); padding: 8px 16px; font-size: 12px; transition: border-color 0.2s, color 0.2s; }
.share-btn:hover { border-color: var(--blue); color: var(--white); }
.related-insights { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 80px; padding-top: 60px; }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }

/* ══════════════════════ CONTACT PAGE ══════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap {}
.contact-info-col {}
.contact-info-item { margin-bottom: 32px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.contact-info-value { font-size: 16px; color: rgba(255,255,255,0.75); }
.contact-info-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--blue); }
.process-steps-col { margin-top: 48px; }
.process-step { display: flex; gap: 24px; margin-bottom: 40px; }
.process-step-num { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: rgba(255,255,255,0.1); line-height: 1; flex-shrink: 0; }
.process-step-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step-body { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); }

/* Form styles */
.fmh-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Poppins', sans-serif; font-size: 15px;
  padding: 14px 18px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { background: var(--blue); border: none; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; padding: 16px 40px; transition: background 0.25s, transform 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--blue-bright); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 60px; background: rgba(7,111,178,0.08); border: 1px solid rgba(7,111,178,0.2); }
.form-success.visible { display: block; }
.form-success-icon { font-size: 40px; margin-bottom: 24px; }
.form-success-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.form-success-body { font-size: 15px; color: rgba(255,255,255,0.6); }

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1200px) {
  .insights-archive-grid { grid-template-columns: repeat(2,1fr); }
  .insight-archive-card.is-featured { grid-column: span 2; }
  .cap-layout { grid-template-columns: 1fr; }
  .cap-aside { position: static; }
  .insight-layout { grid-template-columns: 1fr; }
  .insight-sidebar { position: static; }
}
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .page-hero, .section-pad, footer, #statement, #cta, .statement-band, .cta-band, .newsletter-band, .cap-section, .caps-filter-bar { padding-left: 32px; padding-right: 32px; }
  .about-grid, .mission-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-headline, .mission-headline { position: static; }
  .numbers-grid, .approach-steps { grid-template-columns: repeat(2,1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .service-row { grid-template-columns: 60px 1fr 1fr; }
  .service-tag { display: none; }
  .milestones-outer { margin: 0 -32px; padding: 0 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero, .section-pad, footer, #statement, #cta, .statement-band, .cta-band, .newsletter-band, .cap-section { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: 56px; }
  .numbers-grid, .approach-steps, .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .team-grid, .cap-deliverables-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .service-num { display: none; }
  .insights-archive-grid { grid-template-columns: 1fr; }
  .insight-archive-card.is-featured { grid-column: span 1; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-btn { width: 100%; }
  .cap-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .milestones-outer { margin: 0 -24px; padding: 0 24px; }
  .phase-tabs, .caps-filter-bar { overflow-x: visible; flex-wrap: wrap; }
  .cta-band-actions { flex-direction: column; }
  .insight-layout { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  #hero { padding-left: 20px; padding-right: 20px; }
  .hero-bottom { flex-direction: column; gap: 32px; }
  .hero-scroll-hint { display: none; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════ PORTFOLIO LOGIN ══════════════════════ */
.portfolio-login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; background: var(--navy);
}
.portfolio-login-wrap { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: 24px; }
.portfolio-login-brand { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.portfolio-login-brand em { color: var(--blue); font-style: normal; }
.portfolio-login-title { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin: 0; }
.portfolio-login-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }
.portfolio-login-error { background: rgba(200,50,50,0.12); border: 1px solid rgba(200,50,50,0.3); color: #f87171; padding: 12px 16px; font-size: 14px; }
.portfolio-login-form { display: flex; flex-direction: column; gap: 16px; }
.portfolio-login-submit { width: 100%; text-align: center; margin-top: 8px; cursor: pointer; }
.portfolio-login-contact { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; margin: 0; }

/* ── PAGE TRANSITIONS — BLUR + FADE ── */
@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.pt-out {
  opacity: 0;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
  pointer-events: none;
}
.portfolio-login-contact a { color: var(--blue-bright); text-decoration: none; }
.portfolio-login-contact a:hover { text-decoration: underline; }

/* ══════════════════════ PORTFOLIO PAGE ══════════════════════ */
.portfolio-hero { padding-bottom: 40px; }
.portfolio-page-title { font-family: 'Sora', sans-serif; font-size: clamp(40px,5vw,72px); font-weight: 800; letter-spacing: -0.04em; color: var(--white); line-height: 1; margin: 24px 0 20px; }
.portfolio-page-sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 560px; }
.portfolio-grid { display: flex; flex-direction: column; gap: 2px; }
.portfolio-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.portfolio-card-img { width: 100%; height: 420px; background-size: cover; background-position: center; }
.portfolio-card-body { padding: 56px; }
.portfolio-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.portfolio-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); border: 1px solid rgba(26,143,216,0.3); padding: 4px 12px; }
.portfolio-card-title { font-family: 'Sora', sans-serif; font-size: clamp(24px,3vw,40px); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.portfolio-card-excerpt { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 720px; }
.portfolio-card-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.portfolio-card-meta span { font-size: 13px; color: rgba(255,255,255,0.45); }
.portfolio-card-meta strong { color: rgba(255,255,255,0.7); font-weight: 600; margin-right: 6px; }
.portfolio-card-content { margin-bottom: 40px; }
.portfolio-card-link { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--blue-bright); text-decoration: none; border-bottom: 1px solid rgba(26,143,216,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.portfolio-card-link:hover { color: var(--white); border-color: var(--white); }
.portfolio-logout-bar { padding-top: 24px !important; padding-bottom: 48px !important; }
.portfolio-logout-link { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.portfolio-logout-link:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
  .portfolio-card-body { padding: 32px 24px; }
  .portfolio-card-img { height: 260px; }
  .portfolio-card-meta { flex-direction: column; gap: 12px; }
}

/* ── INTRO ANIMATION ── */
body.intro-active {
  animation: none;
  opacity: 1;
  filter: none;
}
#intro-logo {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  background: var(--navy);
}
.intro-logo-img {
  height: 72px; width: auto; display: block;
  filter: brightness(0) invert(1);
  will-change: transform;
}

body.intro-active .hero-title .line-inner { animation-play-state: paused; }
body.intro-active .hero-bottom            { animation-play-state: paused; }
body.intro-active .hero-eyebrow           { opacity: 0; transition: none; }
body.intro-active .nav-links              { opacity: 0; transition: none; }
body.intro-active .nav-cta                { opacity: 0; transition: none; }
body.intro-active .nav-logo               { opacity: 0; }

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ── Header ── */
.lp-page { margin: 0; }
.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 40px;
}
.lp-header-inner {
  max-width: 1320px; margin: 0 auto;
  height: 72px; display: flex; align-items: center;
}
.lp-logo { display: flex; align-items: center; text-decoration: none; }
.lp-logo .nav-logo-img { height: 36px; width: auto; }

/* ── Footer ── */
.lp-footer {
  background: var(--navy); padding: 28px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: center;
}
.lp-footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.lp-footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.lp-footer-copy a:hover { color: var(--white); }

/* ── Body offset for fixed header ── */
.lp-page .lp-hero { padding-top: 72px; }

/* ── Hero ── */
.lp-hero {
  min-height: 88vh; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
}
.lp-hero .hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.lp-hero-inner {
  max-width: 1320px; margin: 0 auto; position: relative; z-index: 1;
}
.lp-hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.lp-hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--blue);
}
.lp-hero-eyebrow-text {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
}
.lp-hero-title {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(52px, 8vw, 100px); line-height: 1.0;
  letter-spacing: -0.04em; color: var(--white);
  margin: 0 0 32px; max-width: 900px;
}
.lp-hero-title em {
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.lp-hero-sub {
  font-size: clamp(16px, 2vw, 20px); font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 48px;
}
.lp-hero-cta {
  display: inline-block; background: var(--blue);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-decoration: none; padding: 18px 48px;
  transition: background 0.2s, transform 0.2s;
}
.lp-hero-cta:hover {
  background: var(--blue-bright); transform: translateY(-2px);
}

/* ── Problem Statement ── */
.lp-problem {
  background: #0a1622; padding: 100px 40px;
}
.lp-problem-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.lp-problem-text {
  font-family: 'Sora', sans-serif; font-weight: 300;
  font-size: clamp(22px, 3.5vw, 38px); line-height: 1.5;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.85);
}
.lp-problem-text em {
  font-style: italic; color: var(--white); font-weight: 400;
}

/* ── Approach ── */
.lp-approach { background: var(--cream); padding: 100px 40px; }
.lp-approach-inner { max-width: 1320px; margin: 0 auto; }
.lp-approach-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.1;
  letter-spacing: -0.03em; color: var(--navy);
  margin: 24px 0 60px;
}
.lp-approach-headline em {
  font-style: italic; font-weight: 300; color: var(--gray);
}

/* Scope approach-steps to 3 columns on landing pages (global rule uses 4) */
.lp-approach .approach-steps { grid-template-columns: repeat(3,1fr); border: none; gap: 24px; }
.lp-approach .step-card { border-right: none; border: 1px solid rgba(0,0,0,0.08); }

/* ── Reviews ── */
.lp-reviews { background: var(--white); padding: 100px 40px; }
.lp-reviews-inner { max-width: 1320px; margin: 0 auto; }
.lp-review-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.lp-review-card {
  background: var(--cream); padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 16px;
}
.lp-review-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.lp-review-text {
  font-size: 15px; line-height: 1.7; color: var(--gray);
  font-weight: 300; flex: 1;
}
.lp-review-author-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.lp-review-author-name {
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.lp-review-google-icon { margin-left: auto; opacity: 0.5; }

/* ── CTA Block ── */
.lp-cta { background: var(--navy); padding: 100px 40px; }
.lp-cta-inner { max-width: 1320px; margin: 0 auto; }
.lp-cta-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--white);
  margin: 24px 0 60px;
}
.lp-cta-headline em {
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.lp-cta-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start;
}

/* Form */
.lp-form label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"],
.lp-form textarea,
.lp-form select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 0;
  padding: 16px 20px; font-family: 'Poppins', sans-serif;
  font-size: 15px; color: var(--white); outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
}
.lp-form select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center; padding-right: 48px;
}
.lp-form select option { background: #0d1f30; color: var(--white); }
.lp-form select:focus { border-color: var(--blue); }
.lp-form input::placeholder,
.lp-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.lp-form input:focus,
.lp-form textarea:focus { border-color: var(--blue); }
.lp-form textarea { min-height: 120px; resize: vertical; }
.lp-form .form-row { display: block; margin-bottom: 24px; }
.lp-form .form-row-double {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px;
}
.lp-form .lp-submit-btn {
  background: var(--blue); border: none; color: var(--white);
  padding: 18px 48px; font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.lp-form .lp-submit-btn:hover { background: var(--blue-bright); transform: translateY(-2px); }
.lp-form-msg {
  margin-top: 16px; font-size: 14px; line-height: 1.6;
  display: none;
}
.lp-form-msg.success { color: #4ade80; display: block; }
.lp-form-msg.error   { color: #f87171; display: block; }

/* Contact details */
.lp-contact-details {
  display: flex; flex-direction: column; gap: 40px; padding-top: 8px;
}
.lp-contact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.lp-contact-value {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: -0.01em;
  display: block; transition: color 0.2s;
}
.lp-contact-value:hover { color: var(--blue); }
.lp-contact-note {
  font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; line-height: 1.6;
}
.lp-contact-divider {
  width: 40px; height: 1px; background: rgba(255,255,255,0.15);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lp-header { padding: 0 24px; }
  .lp-hero { padding: 100px 24px 60px; }
  .lp-hero-title { font-size: clamp(42px, 10vw, 72px); }
  .lp-problem { padding: 70px 24px; }
  .lp-approach { padding: 70px 24px; }
  .lp-approach-inner .approach-steps { grid-template-columns: 1fr; gap: 24px; }
  .lp-reviews { padding: 70px 24px; }
  .lp-review-cards { grid-template-columns: 1fr; }
  .lp-cta { padding: 70px 24px; }
  .lp-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-form .form-row-double { grid-template-columns: 1fr; }
  .lp-footer { padding: 20px 24px; }
  .lp-hero-cta { display: block; text-align: center; }
  .lp-stats-inner { grid-template-columns: 1fr; }
  .lp-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; }
  .lp-stat-item:last-child { border-bottom: none; }
  .lp-services-grid { grid-template-columns: 1fr; gap: 2px; }
  .lp-faq-question { font-size: 15px; }
  .lp-partners { padding: 60px 24px; }
  .lp-partners-grid { flex-direction: column; align-items: center; }
}

/* ── Stats Bar ── */
.lp-stats {
  background: #071423; padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.lp-stat-item {
  text-align: center; padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-number {
  font-family: 'Sora', sans-serif; font-size: clamp(48px, 6vw, 80px);
  font-weight: 800; letter-spacing: -0.04em; color: var(--white);
  line-height: 1; margin-bottom: 12px;
}
.lp-stat-label {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); line-height: 1.5; max-width: 180px; margin: 0 auto;
}

/* ── Sub-services Grid ── */
.lp-services { background: var(--white); padding: 100px 40px; }
.lp-services-inner { max-width: 1320px; margin: 0 auto; }
.lp-services-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.1;
  letter-spacing: -0.03em; color: var(--navy); margin: 24px 0 60px;
}
.lp-services-headline em { font-style: italic; font-weight: 300; color: var(--gray); }
.lp-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.lp-service-card {
  padding: 40px 36px; background: var(--cream);
  border-bottom: 2px solid transparent; transition: border-color 0.25s;
}
.lp-service-card:hover { border-bottom-color: var(--blue); }
.lp-service-num {
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
  letter-spacing: -0.04em; color: rgba(0,0,0,0.08); line-height: 1; margin-bottom: 20px;
}
.lp-service-title {
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.lp-service-body { font-size: 14px; line-height: 1.75; color: var(--gray); }

/* ── FAQ Accordion ── */
.lp-faq { background: var(--navy); padding: 100px 40px; }
.lp-faq-inner { max-width: 900px; margin: 0 auto; }
.lp-faq-headline {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.1;
  letter-spacing: -0.03em; color: var(--white); margin: 24px 0 60px;
}
.lp-faq-headline em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-top: 1px solid rgba(255,255,255,0.1); }
.lp-faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.lp-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 28px 0; cursor: pointer; list-style: none;
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600;
  color: var(--white); transition: color 0.2s;
}
.lp-faq-question::-webkit-details-marker { display: none; }
.lp-faq-item[open] > .lp-faq-question { color: var(--blue); }
.lp-faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; position: relative;
}
.lp-faq-icon::before, .lp-faq-icon::after {
  content: ''; position: absolute; background: rgba(255,255,255,0.6);
  top: 50%; left: 50%;
}
.lp-faq-icon::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.lp-faq-icon::after {
  width: 1px; height: 10px; transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.25s;
}
.lp-faq-item[open] .lp-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.lp-faq-answer { padding: 0 0 28px; }
.lp-faq-answer p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.55); margin: 0; }

/* ── Partner Badges ── */
.lp-partners { background: var(--navy); padding: 80px 40px; }
.lp-partners-inner { max-width: 1320px; margin: 0 auto; text-align: center; }
.lp-partners-sub { font-size: 14px; font-family: inherit; color: rgba(255,255,255,0.45); margin: 0 0 36px; }
.lp-partners-grid { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.lp-partners-grid svg { border-radius: 10px; display: block; }
