/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --blue:        #1A6B5A;
  --blue-dark:   #145548;
  --blue-light:  #2A8A72;
  --blue-pale:   #E6F3EF;
  --navy:        #152922;
  --navy-dark:   #0E1E18;
  --teal:        #2D7D6F;
  --white:       #FFFFFF;
  --gray-50:     #FAFAFA;
  --gray-100:    #F5F5F5;
  --gray-200:    #E8E8E8;
  --gray-400:    #9CA3AF;
  --gray-600:    #5A5A6E;
  --black:       #111111;
  --text-dark:   #1A1A2E;
  --text-muted:  #6B7280;

  --font-sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 50px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 32px rgba(27,31,232,0.25);

  --max-w: 1560px;
  --section-py: 96px;
  --container-px: 3%;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }

ul { list-style: none; }

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Page load fade-in */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
main { animation: pageIn 0.4s ease; }

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

.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.section-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  white-space: nowrap;
  line-height: 1;
  position: relative;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26,107,90,0);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(26,107,90,0.3);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 12px rgba(26,107,90,0.2);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(17,17,17,0.2);
}
.btn-ghost-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.btn-ghost-dark:active { transform: translateY(0); }

.btn-ghost-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost-blue:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,90,0.1);
}
.btn-ghost-blue:active { transform: translateY(0); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-ghost-white:active { transform: translateY(0); }

.btn-blue-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-blue-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-blue-light:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,90,0.08);
}
.btn-outline:active { transform: translateY(0); }

.btn-sm  { font-size: 14px; padding: 10px 20px; }
.btn-lg  { font-size: 17px; padding: 18px 36px; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  main { animation: none; }
  .btn { transition: none; }
  .situation-card { transition: none; }
  .service-card { transition: none; }
}

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 2px 32px rgba(0,0,0,0.10);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 96px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

/* Primary nav — centred absolutely */
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header-nav-link:hover {
  color: var(--blue);
}
.header-nav-link:hover::after {
  transform: scaleX(1);
}
.header-nav-link.active {
  color: var(--blue);
  font-weight: 600;
}
.header-nav-link.active::after {
  transform: scaleX(1);
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 20px var(--container-px) 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-divider { border: none; border-top: 1px solid var(--gray-200); margin: 8px 0; }
.mobile-cta { width: 100%; justify-content: center; margin-top: 4px; }

/* Header offset for fixed nav — single 80px bar */
main { padding-top: 80px; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  height: 92vh;
  height: 92dvh;
  min-height: 600px;
  max-height: 960px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video slideshow: all slides stacked, crossfade via opacity */
.hero-video-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video-slide.active {
  opacity: 1;
}

/* Stronger multi-layer gradient for legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.35) 40%, transparent 70%),
    linear-gradient(to right, rgba(0,0,0,0.40) 0%, transparent 60%);
}

/* Content pinned bottom-left, full width */
.hero-content-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 72px;
}

.hero-content {
  max-width: 680px;
}

/* Live badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse-green 2s ease infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
}

/* Thin italic contrast word inside the headline */
.hero-hl-light {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Solid white CTA */
.btn-white-solid {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0);
}
.btn-white-solid:hover {
  background: white;
  border-color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}
.btn-white-solid:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Social proof row */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  margin-left: -8px;
  flex-shrink: 0;
}
.hero-avatar:first-child { margin-left: 0; }

.hero-proof-text {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}
.hero-proof-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Micro-copy */
.hero-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* Hero play/pause */
.hero-media-btn {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero-media-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}


/* ============================================================
   SECTION LABELS / SHARED COMPONENTS
============================================================ */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.section-label-light { color: rgba(255,255,255,0.5); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
  margin-top: 28px;
}
.text-link:hover {
  border-color: var(--blue);
}
.text-link-light {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.2);
}
.text-link-light:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   SITUATION CARDS — under hero
============================================================ */
.situation-section {
  padding: 64px 0 80px;
  background: var(--white);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.situation-card {
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.situation-card--teal  { background: #E6F3EF; }
.situation-card--warm  { background: #FEF4EB; }
.situation-card--slate { background: #F0EDF8; }

.situation-tag {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.situation-card--warm  .situation-tag { color: #B05C1A; }
.situation-card--slate .situation-tag { color: #5C40A0; }

.situation-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
  flex-grow: 1;
}

.situation-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.situation-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  align-self: flex-start;
  margin-top: 4px;
  transition: gap var(--transition);
}
.situation-card--warm  .situation-link { color: #B05C1A; }
.situation-card--slate .situation-link { color: #5C40A0; }

.situation-link:hover { gap: 16px; }

.situation-link-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--transition);
}
.situation-card--warm  .situation-link-circle { background: #B05C1A; }
.situation-card--slate .situation-link-circle { background: #5C40A0; }

@media (max-width: 860px) {
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card { padding: 36px 32px; }
}

/* ============================================================
   MANIFESTO — side-by-side split
============================================================ */
.manifesto-section {
  padding: 100px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.manifesto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.manifesto-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.manifesto-img-wrap {
  margin: 0;
}

.manifesto-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  display: block;
}

/* Responsive — stack on tablet */
@media (max-width: 860px) {
  .manifesto-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   WHAT WE HELP WITH — side accordion
============================================================ */
.svc-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.svc-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 48px;
}

.svc-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
}

/* Left — tab list */
.svc-tabs {
  border-right: 1px solid var(--gray-200);
}

.svc-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 0 20px;
  align-items: center;
  padding: 28px 28px 28px 28px;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  box-shadow: inset 3px 0 0 transparent;
  transition: background 0.2s, box-shadow 0.2s;
}
.svc-tab:last-child { border-bottom: none; }

.svc-tab.is-active {
  background: var(--blue-pale);
  box-shadow: inset 3px 0 0 var(--blue);
}
.svc-tab:not(.is-active):hover {
  background: var(--gray-50, #F8F9FA);
}

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.svc-tab-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.svc-title {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.svc-title em {
  font-style: italic;
  color: var(--blue);
}

.svc-tab-arrow {
  display: flex;
  align-items: center;
  color: var(--gray-300);
  transition: color 0.2s, transform 0.2s;
}
.svc-tab.is-active .svc-tab-arrow {
  color: var(--blue);
  transform: translateX(3px);
}

/* Mobile toggles — hidden on desktop */
.svc-mob-toggle { display: none; }

/* Right — panels */
.svc-panels {
  display: grid;
  background: var(--white);
}

.svc-panel {
  grid-area: 1 / 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.svc-panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.svc-panel-desc {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

/* Responsive — vertical accordion on mobile */
@media (max-width: 860px) {
  .svc-accordion {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
  }
  .svc-tabs { display: none; }
  .svc-panels {
    display: flex;
    flex-direction: column;
  }
  .svc-panel {
    grid-area: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
  .svc-panel.is-active {
    max-height: 500px;
  }
  .svc-panel-desc {
    padding: 20px 24px 0;
  }
  .svc-panel .btn {
    margin: 16px 24px 24px;
  }

  /* Mobile accordion headers */
  .svc-mob-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
  }
  .svc-mob-toggle:last-of-type { border-bottom: none; }
  .svc-mob-toggle.is-active {
    background: var(--blue-pale);
  }
  .svc-mob-toggle-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .svc-mob-toggle-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .svc-mob-toggle-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
  }
  .svc-mob-toggle-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s;
  }
  .svc-mob-toggle.is-active .svc-mob-toggle-chevron {
    transform: rotate(180deg);
    color: var(--blue);
  }
}

/* ============================================================
   FEATURES / VALUES SECTION — rows layout
============================================================ */
.features-vals-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.fv-top-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.fv-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.fv-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* Individual feature rows */
.fv-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fv-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 36px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.fv-row:last-child {
  border-bottom: none;
}

.fv-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  padding-top: 4px;
}

.fv-row-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}

.fv-category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fv-card-title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}

.fv-card-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ── Mockup: Advisor profile ── */
.mock-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.mock-avatar-ring {
  position: relative;
  width: 72px;
  height: 72px;
}

.mock-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.mock-online-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.mock-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 4px 0 0;
}

.mock-role {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 4px;
}

.mock-tag {
  font-size: 13px;
  font-weight: 600;
  background: #EEF0FF;
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 99px;
}

.mock-stat-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  width: 100%;
  justify-content: space-around;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mock-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-stat strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ── Mockup: Step tracker ── */
.mock-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

.mock-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
}

.mock-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-step-item.done .mock-step-icon {
  background: #22c55e;
  color: white;
}

.mock-step-item.active .mock-step-icon {
  background: var(--blue);
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,31,232,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(27,31,232,0); }
}

.mock-step-item.pending .mock-step-icon {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
}

.mock-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mock-step-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.mock-step-item.pending .mock-step-text strong { color: var(--text-muted); }

.mock-step-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.mock-step-item.active .mock-step-text span { color: var(--blue); font-weight: 600; }

/* ── Mockup: Options / recommendations ── */
.mock-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}

.mock-option-item {
  background: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid transparent;
}

.mock-option-item.recommended {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(27,31,232,0.12);
}

.mock-option-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}

.mock-option-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.mock-option-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Mockup: Messages ── */
.mock-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.mock-msg {
  border-radius: 14px;
  padding: 8px 12px;
  max-width: 88%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-msg p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.mock-msg span {
  font-size: 12px;
  opacity: 0.6;
}

.mock-msg.received {
  background: var(--white);
  color: var(--text-dark);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  align-self: flex-start;
}

.mock-msg.sent {
  background: var(--blue);
  color: white;
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
  box-shadow: 0 4px 16px rgba(27,31,232,0.25);
}

.mock-msg.sent p { color: white; }

/* Responsive */
@media (max-width: 640px) {
  .fv-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 40px 0;
  }
  .fv-number { padding-top: 0; }
}


/* ============================================================
   HOW IT WORKS — large image cards
============================================================ */
.how-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.how-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.how-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 14px;
}

.how-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.how-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.how-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.how-nav-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.how-scroll-hint {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 16px;
  animation: pulseHint 2.5s ease-in-out infinite;
}
@keyframes pulseHint {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@media (max-width: 640px) {
  .how-scroll-hint { display: block; }
}

.how-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.how-cards::-webkit-scrollbar { display: none; }

.how-card {
  flex: 0 0 min(720px, 82vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  min-height: 360px;
}

.how-card-visual {
  position: relative;
  overflow: hidden;
}

.how-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.how-card:hover .how-card-img {
  transform: scale(1.04);
}


.how-card-text {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.how-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.how-step-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.how-card-title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}

.how-card-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.how-card-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
}

@media (max-width: 768px) {
  .how-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .how-card { flex: 0 0 90vw; grid-template-columns: 1fr; }
  .how-card-visual { min-height: 220px; }
  .how-card-text { padding: 32px 28px; }
  .how-nav { display: none; }
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.testimonials-head {
  display: flex;
  align-items: baseline;
  gap: 64px;
  padding-bottom: 56px;
}

.testimonials-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0;
  flex-shrink: 0;
}

.testimonials-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 420px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-200);
}

.tq {
  padding: 52px 56px 52px 0;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.tq:nth-child(even) {
  padding: 52px 0 52px 56px;
  border-right: none;
}
.tq:nth-child(3),
.tq:nth-child(4) {
  border-bottom: none;
}

.tq-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  margin-bottom: 8px;
  display: block;
  user-select: none;
}

.tq-text {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 28px;
}

.tq-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tq-attr {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.tq-location {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

.tq-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-300, #D1D5DB);
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .testimonials-head {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 36px;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tq,
  .tq:nth-child(even) {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .tq:last-child { border-bottom: none; }
}

/* ============================================================
   EDITORIAL GRID SECTIONS
============================================================ */
.editorial-section,
.audience-section {
  padding: var(--section-py) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.editorial-label-col {
  padding-top: 8px;
}

.editorial-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.editorial-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.editorial-copy:last-of-type { margin-bottom: 0; }

/* ============================================================
   YOUR ROLE — dark section
============================================================ */
.role-section {
  background: var(--navy-dark);
  padding: calc(var(--section-py) * 1.25) 0;
}

.role-inner {
  max-width: 760px;
}

.role-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.role-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   HOW IT WORKS — process steps
============================================================ */
.process-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.process-header {
  margin-bottom: 56px;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ============================================================
   TRUST / POSITIONING — premium dark
============================================================ */
.positioning-section {
  background: var(--navy);
  padding: calc(var(--section-py) * 1.4) 0;
  position: relative;
  overflow: hidden;
}

.positioning-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(27,31,232,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(27,31,232,0.15) 0%, transparent 45%);
  pointer-events: none;
}

.positioning-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.positioning-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}

.positioning-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
}
.positioning-copy:last-child { margin-bottom: 0; }

/* ============================================================
   SPEAK WITH US — soft final CTA
============================================================ */
.speak-section {
  padding: calc(var(--section-py) * 1.8) 0;
  background: var(--blue-pale);
}

.speak-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
}

.speak-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-dark);
  margin: 0;
}

.speak-headline em {
  font-style: italic;
  color: var(--blue);
}

.speak-copy {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}

.speak-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.speak-email {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-300, #D1D5DB);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.speak-email:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Main body: brand left, columns right */
.footer-main {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-email {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }

/* Link columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 4px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.social-link:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .editorial-grid { gap: 48px; }
  .positioning-inner { gap: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .editorial-label-col { padding-top: 0; }

  .positioning-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  main { padding-top: 80px; }

  /* Header */
  .header-nav { display: none; }
  .header-ctas { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }

  /* Hero */
  .hero-content-wrap { padding-bottom: 48px; }
  .hero-headline { letter-spacing: -0.03em; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }

  /* Footer */
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-wrap: wrap; gap: 16px; }

  .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-card { padding: 28px 22px; }
}

/* ============================================================
   ABOUT — editorial layout
============================================================ */
.about-editorial {
  padding: var(--section-py) 0;
}
.about-editorial--gray {
  background: var(--gray-50);
}
.about-prose {
  max-width: 640px;
}
.about-prose--wide {
  max-width: 720px;
}
.about-section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 36px;
}
.about-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.about-body:last-child { margin-bottom: 0; }
.about-body--strong {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
}
.about-pillar {
  margin-top: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--blue);
}
.about-pillar-title {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.about-pillar .about-body {
  margin-bottom: 0;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.about-list li {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  padding: 8px 0 8px 28px;
  position: relative;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.about-commitments {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-commitments li {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.about-commitments li:first-child {
  border-top: 1px solid var(--gray-200);
}

/* ============================================================
   ABOUT — clean hero
============================================================ */
.about-hero {
  padding: 160px 0 80px;
  background: var(--gray-50);
}
.about-hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.about-hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 24px;
  max-width: 760px;
}
.about-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 580px;
}

/* ============================================================
   ABOUT — why we exist with image
============================================================ */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-why-grid--reversed {
  direction: ltr;
}
.about-why-image {
  border-radius: 20px;
  overflow: hidden;
}
.about-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 900px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-why-grid--reversed .about-why-image {
    order: -1;
  }
  .about-why-image {
    max-height: 360px;
  }
}

/* ============================================================
   PAGE HERO — interior pages (about, approach, etc.)
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  margin-top: 96px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 0%, rgba(26,107,90,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.page-hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 24px;
}
.page-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0;
}

/* ============================================================
   PURPOSE — why we exist
============================================================ */
.purpose-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.purpose-inner {
  max-width: 820px;
}
.purpose-pull {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  border-left: 3px solid var(--blue);
  padding-left: 28px;
  margin: 0 0 52px;
}
.purpose-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.purpose-body:last-child { margin-bottom: 0; }

/* ============================================================
   SERVICE — what we do
============================================================ */
.service-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.service-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.service-header-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.service-header-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(26,107,90,0.08);
}
.service-card-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-card-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}
.service-card-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.service-card-list li {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

/* ============================================================
   PRINCIPLES — how we operate
============================================================ */
.principles-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.principles-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.principles-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.principles-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.principle-item {
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle-item:nth-child(odd) {
  padding-right: 80px;
  border-right: 1px solid var(--gray-200);
}
.principle-item:nth-child(even) {
  padding-left: 80px;
}
.principle-item:nth-child(3),
.principle-item:nth-child(4) {
  border-bottom: none;
}
.principle-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.principle-title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}
.principle-desc {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* About page responsive */
@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; }
  .principle-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .principle-item:nth-child(even) { padding-left: 0; }
  .principle-item:nth-child(3) { border-bottom: 1px solid var(--gray-200); }
  .principles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 80px 0 64px; }
  .service-card { padding: 36px 28px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-banner-text a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: white; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--blue);
  color: white;
}
.cookie-btn--accept:hover { background: var(--blue-dark); }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--reject:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.is-visible { opacity: 1; }
.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.cookie-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.cookie-modal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.cookie-category {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
}
.cookie-category:last-of-type { border-bottom: 1px solid var(--gray-200); }
.cookie-cat-info { flex: 1; }
.cookie-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.cookie-cat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.cookie-cat-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 2px;
}
/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--blue);
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.cookie-modal-actions .cookie-btn { flex: 1; text-align: center; }

@media (max-width: 640px) {
  .cookie-banner { padding: 16px 0; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; padding: 12px; }
  .cookie-modal { padding: 28px 24px; border-radius: 16px; }
  .cookie-modal-actions { flex-direction: column; }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Stagger children .reveal elements */

