/* ===================================================================
   BROKERFLO — 3-Page Site
   Editorial Luxury × Modern Fintech
   Brand Guide v3.0
   =================================================================== */

/* --- Reset & Root --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B2541;
  --navy-deep: #111828;
  --mustard: #E5A230;
  --mustard-hover: #CC8E20;
  --mustard-10: rgba(229,162,48,0.10);
  --mustard-20: rgba(229,162,48,0.20);
  --mustard-glow: rgba(229,162,48,0.28);
  --blue: #4A6FA5;
  --blue-10: rgba(74,111,165,0.10);
  --blue-20: rgba(74,111,165,0.20);
  --teal: #2B9E8F;
  --white: #FFFFFF;
  --cloud: #F4F6FA;
  --fog: #FAFBFD;
  --slate: #5A6578;
  --mist: #E5E8EE;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-micro: cubic-bezier(0.22, 0.68, 0, 1);

  --section-py: clamp(96px, 12vw, 140px);
  --container: 1180px;
  --r-card: 18px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 9999px;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
h1, h2, h3, h4, h5 { color: var(--navy); font-family: var(--font-display); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Grain Overlay --- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}

/* ===================================================================
   SCROLL REVEAL — GPU-only (transform + opacity)
   =================================================================== */
.rv {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  will-change: opacity, transform;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.rv.vis {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.rv-d1 { transition-delay: 0.06s; }
.rv-d2 { transition-delay: 0.12s; }
.rv-d3 { transition-delay: 0.18s; }
.rv-d4 { transition-delay: 0.24s; }
.rv-d5 { transition-delay: 0.30s; }
.rv-d6 { transition-delay: 0.36s; }
.rv-d7 { transition-delay: 0.42s; }

.rv-blur {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.rv-blur.vis {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* ===================================================================
   NAVIGATION — Floating Island Pill
   =================================================================== */
.nav-wrap {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 860px;
  pointer-events: none;
}
.nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 24px;
  height: 64px;
  border-radius: var(--r-pill);
  background: rgba(27,37,65,0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(11,15,25,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  border-color: var(--mist);
  box-shadow: 0 4px 24px rgba(27,37,65,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.4s var(--ease-out);
  flex-shrink: 0;
}
.nav-logo span { color: var(--mustard); }
.nav.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  transition: color 0.25s var(--ease-micro), background 0.25s var(--ease-micro);
  white-space: nowrap;
}
.nav-links a:hover {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.1);
}
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--navy); background: var(--cloud); }
.nav.scrolled .nav-links a.active { color: var(--navy); background: var(--cloud); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--mustard) !important;
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: var(--r-pill);
  transition: background 0.3s var(--ease-spring), transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--mustard-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--mustard-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-right: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-spring);
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 768px) {
  .nav-wrap { top: 10px; width: calc(100% - 20px); }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 84px;
    left: 10px;
    right: 10px;
    background: var(--white);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    border-radius: var(--r-lg);
    box-shadow: 0 16px 48px rgba(27,37,65,0.15), 0 0 0 1px var(--mist);
    transform: translate3d(0, -12px, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-spring), opacity 0.35s var(--ease-spring);
  }
  .nav-links.open { transform: translate3d(0, 0, 0); opacity: 1; pointer-events: all; }
  .nav-links a {
    color: var(--navy) !important;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 14px;
    width: 100%;
  }
  .nav-links a:hover { background: var(--cloud) !important; }
  .nav-cta { width: 100%; justify-content: center; padding: 13px 20px; margin-top: 4px; }
}

/* ===================================================================
   BUTTONS — Magnetic Physics (JS-driven)
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  transition: all 0.35s var(--ease-spring);
  letter-spacing: 0.01em;
  position: relative;
  isolation: isolate;
}
.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-spring);
  flex-shrink: 0;
}
.btn-icon svg { width: 16px; height: 16px; }
.btn:hover .btn-icon { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-mustard { background: var(--mustard); color: var(--navy); }
.btn-mustard:hover {
  background: var(--mustard-hover);
  box-shadow: 0 8px 28px var(--mustard-glow);
  transform: translateY(-2px);
}

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 28px rgba(27,37,65,0.18);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--mist);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--fog);
  transform: translateY(-2px);
}

.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover {
  background: #3d5f94;
  box-shadow: 0 8px 28px rgba(74,111,165,0.25);
  transform: translateY(-2px);
}

/* ===================================================================
   HERO — Editorial Finance (Firms page)
   High-end NYC agency × Modern fintech
   =================================================================== */
.hero-editorial {
  background: #0B0F16;
  padding: 0;
  display: block;
  min-height: min(100dvh, 980px);
}
.hero-editorial::before {
  background:
    radial-gradient(ellipse 55% 60% at 22% 50%, rgba(229,162,48,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 85% 25%, rgba(74,111,165,0.025) 0%, transparent 60%);
}
.hero-editorial .hero-geo,
.hero-editorial .hero-inner { display: none; }

.he-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 72px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 56px 100px;
  min-height: min(100dvh, 980px);
}

/* --- Left column: Copy --- */
.he-copy { max-width: 600px; }

.he-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 36px;
  opacity: 0;
  animation: heFadeIn 0.7s 0.1s var(--ease-out) forwards;
}
.he-rule {
  width: 32px;
  height: 1.5px;
  background: var(--mustard);
  opacity: 0.45;
  flex-shrink: 0;
}

.hero-editorial h1 {
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 0;
  opacity: 0;
  animation: heSlideUp 1s 0.18s var(--ease-spring) forwards;
}
.hero-editorial h1 br { content: ''; }
.hero-editorial h1 em {
  font-style: normal;
  color: var(--mustard);
  -webkit-text-stroke: 1.5px var(--mustard);
  -webkit-text-fill-color: transparent;
}
/* Firefox fallback — no text-stroke support, show solid color */
@supports not (-webkit-text-fill-color: transparent) {
  .hero-editorial h1 em { color: var(--mustard); }
}

.he-divider {
  width: 48px;
  height: 2px;
  background: rgba(229,162,48,0.35);
  margin: 34px 0;
  opacity: 0;
  animation: heFadeIn 0.6s 0.42s var(--ease-out) forwards;
}

.he-sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heSlideUp 0.9s 0.48s var(--ease-spring) forwards;
}

.he-ctas {
  margin-bottom: 18px;
  opacity: 0;
  animation: heSlideUp 0.9s 0.58s var(--ease-spring) forwards;
}

.he-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em;
  opacity: 0;
  animation: heFadeIn 0.8s 0.72s var(--ease-out) forwards;
}

/* --- Right column: Proof panel --- */
.he-proof {
  padding-left: 56px;
  border-left: 1px solid rgba(255,255,255,0.06);
  position: relative;
  opacity: 0;
  animation: heSlideLeft 1.1s 0.35s var(--ease-spring) forwards;
}
.he-proof-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 44px;
}
.he-stat { margin-bottom: 6px; }
.he-stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.he-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  max-width: 240px;
}
.he-stat-sep {
  height: 1px;
  background: rgba(255,255,255,0.045);
  margin: 26px 0;
}

/* Keyframes */
@keyframes heFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heSlideUp {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heSlideLeft {
  from { opacity: 0; transform: translate3d(-16px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Responsive */
@media (max-width: 960px) {
  .he-inner {
    grid-template-columns: 1fr;
    padding: 120px 24px 64px;
    gap: 48px;
    min-height: auto;
  }
  .he-proof {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .he-stat-sep { display: none; }
  .he-proof-label { display: none; }
  .he-stat { margin-bottom: 0; }
}
@media (max-width: 580px) {
  .hero-editorial h1 { line-height: 0.96; }
  .he-proof { grid-template-columns: 1fr; gap: 0; }
  .he-stat { margin-bottom: 6px; }
  .he-stat-sep { display: block; }
}

/* ===================================================================
   HERO — Cinematic Dark (Homepage + Firms)
   =================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  min-height: min(100dvh, 920px);
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(229,162,48,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(74,111,165,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Architectural geometry */
.hero-geo {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 42vw, 580px);
  height: clamp(380px, 42vw, 580px);
  pointer-events: none;
}
.hero-geo-rect-1 {
  position: absolute;
  width: 72%;
  height: 88%;
  right: 0;
  top: 6%;
  border-radius: 40px;
  background: rgba(229,162,48,0.06);
  border: 1px solid rgba(229,162,48,0.06);
  transform: rotate(-6deg);
}
.hero-geo-rect-2 {
  position: absolute;
  width: 48%;
  height: 56%;
  right: 22%;
  top: 28%;
  border-radius: 28px;
  background: rgba(74,111,165,0.05);
  border: 1px solid rgba(74,111,165,0.05);
  transform: rotate(3deg);
}
.hero-geo-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 8%;
  bottom: 12%;
  border-radius: 50%;
  border: 1px solid rgba(229,162,48,0.08);
}
.hero-geo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.2;
  right: 38%;
  top: 18%;
}
.hero-geo-line {
  position: absolute;
  width: 80px;
  height: 1px;
  background: rgba(229,162,48,0.12);
  right: 15%;
  top: 35%;
  transform: rotate(-20deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  background: rgba(229,162,48,0.08);
  border: 1px solid rgba(229,162,48,0.1);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade 0.7s 0.15s var(--ease-out) forwards;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroSlide 0.9s 0.25s var(--ease-spring) forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--mustard);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroSlide 0.9s 0.4s var(--ease-spring) forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroSlide 0.9s 0.5s var(--ease-spring) forwards;
}

.hero-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  opacity: 0;
  animation: heroFade 0.8s 0.65s var(--ease-out) forwards;
}

.hero-trust {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFade 1s 0.8s var(--ease-out) forwards;
}
.hero-trust-item {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.hero-trust-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.45;
  flex-shrink: 0;
}
.hero-trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: center;
}

@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroSlide {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 24px 72px; min-height: auto; }
  .hero-geo { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-trust-sep { display: none; }
}

/* ===================================================================
   HERO — Light Variant (Brokers page)
   =================================================================== */
.hero-light {
  background: var(--white);
}
.hero-light::before {
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(74,111,165,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(229,162,48,0.04) 0%, transparent 60%);
}
.hero-light .hero-eyebrow {
  background: var(--blue-10);
  border-color: rgba(74,111,165,0.12);
  color: var(--blue);
}
.hero-light .hero-eyebrow-dot { background: var(--blue); }
.hero-light h1 { color: var(--navy); }
.hero-light h1 em { color: var(--blue); }
.hero-light .hero-sub { color: var(--slate); }
.hero-light .hero-micro { color: var(--slate); }
.hero-light .hero-geo-rect-1 {
  background: rgba(74,111,165,0.04);
  border-color: rgba(74,111,165,0.06);
}
.hero-light .hero-geo-rect-2 {
  background: rgba(229,162,48,0.04);
  border-color: rgba(229,162,48,0.04);
}
.hero-light .hero-geo-circle { border-color: rgba(74,111,165,0.08); }
.hero-light .hero-geo-dot { background: var(--blue); }
.hero-light .hero-geo-line { background: rgba(74,111,165,0.1); }

/* ===================================================================
   CREDENTIAL STRIP / FEATURE BAR
   =================================================================== */
.credentials {
  background: var(--cloud);
  padding: 32px 24px;
  border-bottom: 1px solid var(--mist);
}
.credentials-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.credential {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  opacity: 0.55;
  white-space: nowrap;
  transition: opacity 0.35s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 8px;
}
.credential::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.5;
  flex-shrink: 0;
}
.credential:hover { opacity: 0.85; }
.cred-sep {
  width: 1px;
  height: 20px;
  background: var(--navy);
  opacity: 0.1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .credentials-inner { gap: 12px 20px; flex-wrap: wrap; justify-content: center; }
  .cred-sep { display: none; }
  .credential { font-size: 12.5px; }
}

/* ===================================================================
   EYEBROW / SECTION HEAD utilities
   =================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-mustard { color: var(--mustard); }
.eyebrow-blue { color: var(--blue); }
.eyebrow-line {
  width: 24px;
  height: 2px;
  border-radius: 1px;
}
.eyebrow-mustard .eyebrow-line { background: var(--mustard); opacity: 0.5; }
.eyebrow-blue .eyebrow-line { background: var(--blue); opacity: 0.5; }

.sh { margin-bottom: 48px; }
.sh h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.sh .sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 540px;
}

/* ===================================================================
   SPLIT CARDS — Homepage Two Paths
   =================================================================== */
.s-split {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.s-split .sh {
  text-align: center;
  margin-bottom: 52px;
}
.s-split .sh .sub { margin: 0 auto; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.split-card {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease-spring);
  border: 1px solid transparent;
}
.split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
}
.split-card-mustard::before { background: var(--mustard); }
.split-card-blue::before { background: var(--blue); }
.split-card:hover {
  background: var(--white);
  border-color: var(--mist);
  box-shadow: 0 4px 16px rgba(27,37,65,0.04), 0 16px 48px rgba(27,37,65,0.08);
  transform: translate3d(0, -4px, 0);
}

.split-card .eyebrow { margin-bottom: 12px; }
.split-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.split-card-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.split-card-bullets li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.split-card-bullets li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
.split-card-mustard .split-card-bullets li svg { color: var(--mustard); stroke: var(--mustard); }
.split-card-blue .split-card-bullets li svg { color: var(--blue); stroke: var(--blue); }

@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   STATS INTERSTITIAL (dark)
   =================================================================== */
.s-stats {
  background: var(--navy);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.s-stats .grain { opacity: 0.035; }
.s-stats .sh {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}
.s-stats .sh h2 { color: var(--white); }
.s-stats .sh .sub { color: rgba(255,255,255,0.4); margin: 0 auto; }
.s-stats .eyebrow {
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}
.stats-subtext {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.s-about {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-text h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.about-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-body p + p { margin-top: 16px; }
.about-body strong { color: var(--navy); font-weight: 600; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-hl {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.about-hl-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--mustard-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-hl-ic svg { width: 17px; height: 17px; color: var(--mustard); stroke: var(--mustard); }
.about-hl h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1px;
}
.about-hl p {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

/* Stats panel — Double-bezel */
.stats-panel-outer {
  padding: 5px;
  background: var(--mist);
  border-radius: calc(var(--r-lg) + 5px);
}
.stats-panel {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
}
.stats-panel::before {
  content: '';
  position: absolute;
  right: -36px;
  top: -36px;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: var(--mustard);
  opacity: 0.04;
  transform: rotate(-15deg);
  pointer-events: none;
}
.sp-item {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.sp-item:last-child { margin-bottom: 0; }
.sp-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 6px;
}
.sp-label {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}
.sp-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.s-cta {
  background: var(--cloud);
  padding: var(--section-py) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%) rotate(12deg);
  width: 340px;
  height: 340px;
  border-radius: 56px;
  background: var(--mustard);
  opacity: 0.04;
  pointer-events: none;
}
.s-cta .container { position: relative; z-index: 2; }
.s-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.s-cta .sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--navy-deep);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: var(--mustard); }
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s var(--ease-micro);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.15);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 580px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ===================================================================
   PROBLEM SECTION
   =================================================================== */
.s-problem {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.problem-inner {
  max-width: 680px;
  margin: 0 auto;
}
.problem-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.problem-body {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.85;
}
.problem-body p + p { margin-top: 20px; }
.problem-body strong { color: var(--navy); font-weight: 600; }
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--mustard);
  line-height: 1.35;
  text-align: center;
  padding: 32px 0;
  margin-top: 40px;
  border-top: 2px solid var(--mustard-10);
  border-bottom: 2px solid var(--mustard-10);
}

/* ===================================================================
   SYSTEM / DELIVERABLES — Bento Grid (Firms)
   =================================================================== */
.s-system {
  background: var(--cloud);
  padding: var(--section-py) 24px;
}
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sys-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.sys-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mustard);
  opacity: 0;
  transition: opacity 0.4s var(--ease-spring);
}
.sys-card:hover {
  border-color: var(--mist);
  box-shadow: 0 2px 8px rgba(27,37,65,0.04), 0 12px 40px rgba(27,37,65,0.06);
  transform: translate3d(0, -4px, 0);
}
.sys-card:hover::before { opacity: 1; }
.sys-card-featured { grid-column: 1 / -1; }

.sys-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mustard-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.sys-card:hover .sys-icon { background: var(--mustard-20); }
.sys-icon svg { width: 22px; height: 22px; color: var(--mustard); stroke: var(--mustard); }

.sys-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sys-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .system-grid { grid-template-columns: 1fr; }
  .sys-card-featured { grid-column: auto; }
}

/* ===================================================================
   CASE STUDY (Firms page)
   =================================================================== */
.s-casestudy {
  background: var(--navy);
  padding: var(--section-py) 24px;
  position: relative;
  overflow: hidden;
}
.s-casestudy .grain { opacity: 0.04; }
.casestudy-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.casestudy-inner .eyebrow {
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.04);
}
.casestudy-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.casestudy-body {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}
.casestudy-body p + p { margin-top: 16px; }

.casestudy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 32px;
}
.cs-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 8px;
}
.cs-stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
}
.casestudy-services {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.casestudy-services strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

@media (max-width: 768px) {
  .casestudy-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .casestudy-stats { grid-template-columns: 1fr; }
}

/* ===================================================================
   TIMELINE — How It Works
   =================================================================== */
.s-timeline {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.s-timeline .sh {
  text-align: center;
  margin-bottom: 60px;
}
.s-timeline .sh .sub { margin: 0 auto; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  border-radius: 1px;
}
.timeline-mustard .timeline-grid::before { background: var(--mustard-20); }
.timeline-blue .timeline-grid::before { background: var(--blue-10); }

.tl-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.tl-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}
.tl-step:hover .tl-num { transform: scale(1.1); }
.timeline-mustard .tl-num { background: var(--mustard-20); color: var(--mustard); }
.timeline-mustard .tl-step:hover .tl-num { box-shadow: 0 0 0 6px var(--mustard-10); }
.timeline-blue .tl-num { background: var(--blue-10); color: var(--blue); }
.timeline-blue .tl-step:hover .tl-num { box-shadow: 0 0 0 6px var(--blue-10); }

.tl-week {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.timeline-mustard .tl-week { color: var(--mustard); }
.timeline-blue .tl-week { color: var(--blue); }

.tl-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tl-step p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline-grid::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .tl-step {
    text-align: left;
    padding-left: 80px;
  }
  .tl-num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* ===================================================================
   PRICING TIERS (Firms)
   =================================================================== */
.s-pricing {
  background: var(--cloud);
  padding: var(--section-py) 24px;
}
.s-pricing .sh {
  text-align: center;
  margin-bottom: 16px;
}
.s-pricing .sh .sub { margin: 0 auto; }
.pricing-rationale {
  text-align: center;
  font-size: 14.5px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto 36px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--mist);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  box-shadow: 0 4px 16px rgba(27,37,65,0.04), 0 16px 48px rgba(27,37,65,0.08);
  transform: translate3d(0, -4px, 0);
}
.pricing-card-featured {
  background: var(--mustard);
  border-color: var(--mustard);
}
.pricing-card-featured .pricing-tier { color: var(--navy); }
.pricing-card-featured .pricing-price { color: var(--navy); }
.pricing-card-featured .pricing-price strong { color: var(--navy); }
.pricing-card-featured .pricing-best { color: var(--navy); opacity: 0.7; }
.pricing-card-featured .pricing-desc { color: var(--navy); opacity: 0.75; }

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mustard);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 4px;
}
.pricing-price strong {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.pricing-best {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-desc {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
}

.pricing-notes {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
}
.pricing-notes li {
  font-size: 14px;
  color: var(--slate);
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-notes li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
}

/* ===================================================================
   ADDON SECTION (slim)
   =================================================================== */
.s-addon {
  background: var(--white);
  padding: 72px 24px;
}
.addon-inner {
  max-width: 680px;
  margin: 0 auto;
}
.addon-inner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.addon-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
}
.addon-body p + p { margin-top: 16px; }
.addon-body em { font-style: italic; color: var(--navy); }
.addon-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.addon-pill {
  padding: 6px 16px;
  background: var(--blue-10);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-pill);
}

/* ===================================================================
   FEATURES GRID (Brokers)
   =================================================================== */
.s-features {
  background: var(--cloud);
  padding: var(--section-py) 24px;
}
.s-features .sh {
  text-align: center;
  margin-bottom: 48px;
}
.s-features .sh .sub { margin: 0 auto; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.4s var(--ease-spring);
}
.feat-card:hover {
  border-color: rgba(74,111,165,0.25);
  box-shadow: 0 2px 8px rgba(27,37,65,0.03), 0 8px 32px rgba(27,37,65,0.06);
  transform: translate3d(0, -4px, 0);
}
.feat-card:hover::before { opacity: 1; }

.feat-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--blue-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.feat-card:hover .feat-ic { background: var(--blue-20); }
.feat-ic svg { width: 19px; height: 19px; color: var(--blue); stroke: var(--blue); }
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 960px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feat-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   SINGLE PRICING CARD (Brokers)
   =================================================================== */
.s-broker-pricing {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.s-broker-pricing .sh {
  text-align: center;
  margin-bottom: 16px;
}
.s-broker-pricing .sh .sub { margin: 0 auto; }
.broker-pricing-anchor {
  text-align: center;
  font-size: 15px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.price-outer {
  max-width: 440px;
  margin: 0 auto;
  padding: 5px;
  background: var(--navy);
  border-radius: calc(var(--r-lg) + 5px);
}
.price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  text-align: center;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}
.price-amount span { font-size: 19px; font-weight: 600; color: var(--slate); }
.price-label {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 24px;
}
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 26px;
}
.price-list li {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--mist);
}
.price-list li:last-child { border: none; }
.price-list li svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}
.price-note {
  font-size: 13px;
  color: var(--slate);
  margin-top: 12px;
}

/* ===================================================================
   TESTIMONIAL
   =================================================================== */
.s-testimonial {
  background: var(--navy);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.s-testimonial .grain { opacity: 0.04; }
.testimonial-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonial-inner .eyebrow {
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 28px;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--mustard);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mustard-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--mustard);
  margin: 0 auto 10px;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===================================================================
   PLATFORM HERO — 3-Panel Product Showcase (Brokers)
   =================================================================== */
.s-platform-hero {
  background: var(--cloud);
  padding: 0 24px 72px;
}
.platform-hero {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-panel {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27,37,65,0.04), 0 12px 48px rgba(27,37,65,0.08);
  border: 1px solid var(--mist);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
}
.ph-panel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--fog);
  border-bottom: 1px solid var(--mist);
}
.ph-panel-dots { display: flex; gap: 5px; }
.ph-panel-dots span { width: 8px; height: 8px; border-radius: 50%; }
.ph-panel-dots span:nth-child(1) { background: #E8605A; }
.ph-panel-dots span:nth-child(2) { background: #F3BF4F; }
.ph-panel-dots span:nth-child(3) { background: #62C554; }
.ph-panel-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.ph-panel-url {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 11px;
  color: var(--slate);
  border: 1px solid var(--mist);
}
.ph-panel-body { padding: 0; }

/* Center — Website (largest, forward) */
.ph-center {
  width: 400px;
  z-index: 3;
  position: relative;
}
.ph-center:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 4px 12px rgba(27,37,65,0.06), 0 20px 60px rgba(27,37,65,0.12);
}
.ph-website {
  background: linear-gradient(145deg, var(--navy) 0%, #1E3052 100%);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-website::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 160px;
  height: 160px;
  border-radius: 28px;
  background: var(--mustard);
  opacity: 0.06;
}
.ph-web-hero { text-align: center; position: relative; z-index: 2; }
.ph-web-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.ph-web-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.ph-web-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--mustard);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--r-pill);
}

/* Left — CRM */
.ph-left {
  width: 260px;
  left: 0;
  z-index: 2;
  transform: translate3d(0, 8px, 0) rotate(-2deg);
}
.ph-left:hover { transform: translate3d(0, 4px, 0) rotate(-1deg); }
.ph-crm { padding: 12px 14px; }
.ph-crm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--mist);
}
.ph-crm-row:last-child { border: none; }
.ph-crm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ph-crm-green { background: var(--teal); }
.ph-crm-yellow { background: var(--mustard); }
.ph-crm-blue { background: var(--blue); }
.ph-crm-line {
  height: 5px;
  border-radius: 3px;
  background: var(--cloud);
  flex-shrink: 0;
}
.ph-crm-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  margin-left: auto;
}

/* Right — AI Automations */
.ph-right {
  width: 260px;
  right: 0;
  z-index: 2;
  transform: translate3d(0, 8px, 0) rotate(2deg);
}
.ph-right:hover { transform: translate3d(0, 4px, 0) rotate(1deg); }
.ph-auto { padding: 10px 14px; }
.ph-auto-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--mist);
}
.ph-auto-item:last-child { border: none; }
.ph-auto-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
}
.ph-auto-check { background: rgba(43,158,143,0.12); color: var(--teal); }
.ph-auto-check::after { content: '\2713'; }
.ph-auto-clock { background: var(--mustard-10); color: var(--mustard); }
.ph-auto-clock::after { content: '\25CB'; }
.ph-auto-star { background: var(--blue-10); color: var(--blue); }
.ph-auto-star::after { content: '\2605'; }
.ph-auto-pulse {
  background: rgba(43,158,143,0.12);
  color: var(--teal);
  animation: pulse-dot 2s infinite;
}
.ph-auto-pulse::after { content: '\25CF'; font-size: 7px; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.ph-auto-text {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.3;
}
.ph-auto-live .ph-auto-text { color: var(--teal); font-weight: 600; }

.platform-caption {
  text-align: center;
  font-size: 15px;
  color: var(--slate);
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 768px) {
  .platform-hero {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .ph-panel {
    position: relative !important;
    width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }
  .ph-panel:hover { transform: none !important; }
  .ph-website { height: 200px; }
}

/* ===================================================================
   POINTER SECTION (slim cross-link)
   =================================================================== */
.s-pointer {
  background: var(--cloud);
  padding: 72px 24px;
}
.pointer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.pointer-inner h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.pointer-inner p {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ===================================================================
   PROBLEM CARDS — 3-column pain point grid
   =================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.problem-card {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-spring);
  position: relative;
}
.problem-card:hover {
  background: var(--white);
  border-color: var(--mist);
  box-shadow: 0 4px 16px rgba(27,37,65,0.04), 0 12px 40px rgba(27,37,65,0.06);
  transform: translate3d(0, -4px, 0);
}
.problem-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--mustard);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 14px;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   SOLUTION — mustard accent variant for feat-grid
   =================================================================== */
.s-solution { background: var(--cloud); padding: var(--section-py) 24px; }
.s-solution .sh { text-align: center; margin-bottom: 48px; }
.s-solution .sh .sub { margin: 0 auto; }
.s-solution .feat-ic { background: var(--mustard-10); }
.s-solution .feat-card:hover .feat-ic { background: var(--mustard-20); }
.s-solution .feat-ic svg { color: var(--mustard); stroke: var(--mustard); }
.s-solution .feat-card::before { background: var(--mustard); }
.s-solution .feat-card:hover { border-color: rgba(229,162,48,0.25); }

/* ===================================================================
   FAQ / OBJECTIONS — Accordion
   =================================================================== */
.s-faq {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.s-faq .sh { text-align: center; margin-bottom: 48px; }
.s-faq .sh .sub { margin: 0 auto; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-item:first-child { border-top: 1px solid var(--mist); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s var(--ease-micro);
}
.faq-q:hover { color: var(--mustard); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
  color: var(--slate);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-item.open .faq-a {
  max-height: 240px;
}
.faq-a-inner {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

@media (max-width: 580px) {
  .faq-q { font-size: 15px; padding: 20px 0; }
}

/* ===================================================================
   CTA — Risk Reversal Bar
   =================================================================== */
.cta-risk {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cta-risk-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cta-risk-item svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}

/* ===================================================================
   FIRMS PAGE V2 — Agency-Grade Redesign
   Editorial Luxury × NYC Agency Aesthetic
   =================================================================== */

/* --- 2. Problem: Editorial Split Layout --- */
.fp-problem {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.fp-problem-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.fp-problem-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.fp-accent-rule {
  width: 40px;
  height: 3px;
  background: var(--mustard);
  margin-top: 32px;
  border-radius: 2px;
  opacity: 0.5;
}
.fp-pain {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--mist);
  align-items: start;
}
.fp-pain:first-child {
  border-top: 2px solid var(--navy);
}
.fp-pain-idx {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--mustard);
  letter-spacing: 0.06em;
  padding-top: 3px;
}
.fp-pain-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.fp-pain-body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}
.fp-pullquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--mustard);
  line-height: 1.35;
  text-align: center;
  padding: 40px 0;
  border-top: 2px solid var(--mustard-10);
  border-bottom: 2px solid var(--mustard-10);
}

@media (max-width: 768px) {
  .fp-problem-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fp-accent-rule { margin-top: 20px; }
}

/* --- 3. Solution: Asymmetric Bento Grid --- */
.fp-solution {
  background: var(--cloud);
  padding: var(--section-py) 24px;
}
.fp-sol-head {
  text-align: center;
  margin-bottom: 56px;
}
.fp-sol-head h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.fp-sol-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}
.fp-sol-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
.fp-sol-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--mist);
  transition: all 0.45s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.fp-sol-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mustard);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.fp-sol-card:hover {
  border-color: rgba(229,162,48,0.2);
  box-shadow: 0 4px 16px rgba(27,37,65,0.03), 0 16px 48px rgba(27,37,65,0.08);
  transform: translate3d(0, -4px, 0);
}
.fp-sol-card:hover::after { opacity: 1; }
.fp-sol-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--mustard);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.fp-sol-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.fp-sol-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* Featured card — dark navy treatment */
.fp-sol-featured {
  grid-row: 1 / 3;
  background: var(--navy);
  border-color: transparent;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.fp-sol-featured::after { background: var(--mustard); }
.fp-sol-featured:hover {
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(11,15,25,0.1), 0 20px 56px rgba(11,15,25,0.2);
}
.fp-sol-featured .fp-sol-num { opacity: 0.5; }
.fp-sol-featured h3 {
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 30px);
}
.fp-sol-featured p { color: rgba(255,255,255,0.42); }
.fp-sol-spacer { flex: 1; }
.fp-sol-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.fp-sol-tag {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(229,162,48,0.08);
  border: 1px solid rgba(229,162,48,0.1);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--mustard);
  letter-spacing: 0.02em;
}
.fp-sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(229,162,48,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.fp-sol-icon svg {
  width: 22px;
  height: 22px;
  color: var(--mustard);
  stroke: var(--mustard);
}

@media (max-width: 768px) {
  .fp-sol-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fp-sol-featured { grid-row: auto; }
}

/* --- 4. Case Study: Cinematic Dark --- */
.fp-case {
  background: var(--navy);
  padding: var(--section-py) 24px;
  position: relative;
  overflow: hidden;
}
.fp-case::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(229,162,48,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(74,111,165,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.fp-case .grain { opacity: 0.04; }
.fp-case-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.fp-case-eyebrow {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fp-case-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 40px;
}
.fp-case-narrative h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 20px 0 28px;
}
.fp-case-body {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
}
.fp-case-body p + p { margin-top: 16px; }

/* Stats panel — frosted card */
.fp-case-panel {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.fp-case-panel::before {
  content: '';
  position: absolute;
  right: -28px;
  top: -28px;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: var(--mustard);
  opacity: 0.04;
  transform: rotate(-15deg);
  pointer-events: none;
}
.fp-case-stat { margin-bottom: 6px; position: relative; z-index: 2; }
.fp-case-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.fp-case-stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}
.fp-case-stat-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 24px 0;
  position: relative;
  z-index: 2;
}
.fp-case-services {
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fp-case-services strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

@media (max-width: 768px) {
  .fp-case-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- 5. Process: Journey Cards --- */
.fp-process {
  background: var(--white);
  padding: var(--section-py) 24px;
}
.fp-process-head {
  text-align: center;
  margin-bottom: 56px;
}
.fp-process-head h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.fp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.fp-step {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease-spring);
}
.fp-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mustard);
  opacity: 0.35;
  transition: opacity 0.35s var(--ease-out);
}
.fp-step:hover {
  background: var(--white);
  border-color: var(--mist);
  box-shadow: 0 4px 16px rgba(27,37,65,0.04), 0 12px 40px rgba(27,37,65,0.06);
  transform: translate3d(0, -4px, 0);
}
.fp-step:hover::before { opacity: 1; }
.fp-step-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--mustard-10);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mustard);
  margin-bottom: 20px;
}
.fp-step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.05;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.fp-step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.fp-step p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fp-steps { grid-template-columns: 1fr; }
}

/* --- 6. FAQ: Split Accordion Layout --- */
.fp-faq {
  background: var(--fog);
  padding: var(--section-py) 24px;
}
.fp-faq-layout {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 72px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}
.fp-faq-head h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.fp-faq-intro {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.fp-faq-item {
  border-bottom: 1px solid var(--mist);
}
.fp-faq-item:first-child {
  border-top: 1px solid var(--mist);
}
.fp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s var(--ease-micro);
}
.fp-faq-q:hover { color: var(--mustard); }
.fp-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring), color 0.25s var(--ease-micro);
  color: var(--slate);
}
.fp-faq-item.open .fp-faq-chevron {
  transform: rotate(180deg);
  color: var(--mustard);
}
.fp-faq-item.open .fp-faq-q {
  color: var(--mustard);
}
.fp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.fp-faq-item.open .fp-faq-a {
  max-height: 280px;
}
.fp-faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .fp-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-faq-q { font-size: 15px; padding: 20px 0; }
}

/* --- 7. CTA: Dramatic Dark Close --- */
.fp-cta {
  background: var(--navy-deep);
  padding: clamp(96px, 14vw, 160px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 40%, rgba(229,162,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.fp-cta .grain { opacity: 0.04; }
.fp-cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
}
.fp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 32px;
}
.fp-cta-eyebrow .he-rule { opacity: 0.3; }
.fp-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.fp-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.fp-cta-btn {
  margin-bottom: 32px;
}
.fp-cta-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.fp-trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .fp-cta-trust {
    flex-direction: column;
    align-items: center;
  }
}

/* ===================================================================
   WOLF-INSPIRED HOMEPAGE REDESIGN
   Adapted from wolf.financial aesthetic: corner decorations,
   numbered sections, generous whitespace, bold typography,
   marquee strip, FAQ accordion, cinematic footer CTA
   =================================================================== */

/* --- Corner Decorations (wolf.financial signature element) --- */
.w-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 3;
}
.w-corner::before,
.w-corner::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.w-corner::before { height: 1.5px; width: 100%; }
.w-corner::after  { width: 1.5px; height: 100%; }

.w-corner-tl { top: 0; left: 0; }
.w-corner-tl::before { top: 0; left: 0; }
.w-corner-tl::after  { top: 0; left: 0; }

.w-corner-tr { top: 0; right: 0; }
.w-corner-tr::before { top: 0; right: 0; }
.w-corner-tr::after  { top: 0; right: 0; }

.w-corner-bl { bottom: 0; left: 0; }
.w-corner-bl::before { bottom: 0; left: 0; }
.w-corner-bl::after  { bottom: 0; left: 0; }

.w-corner-br { bottom: 0; right: 0; }
.w-corner-br::before { bottom: 0; right: 0; }
.w-corner-br::after  { bottom: 0; right: 0; }

/* ===================================================================
   WOLF HERO — Centered, dark, with corner brackets
   =================================================================== */
.w-hero {
  position: relative;
  background: var(--navy);
  min-height: min(100dvh, 960px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 120px;
  overflow: hidden;
}
.w-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 35%, rgba(229,162,48,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 80% 70%, rgba(74,111,165,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 15% 65%, rgba(229,162,48,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.w-hero-corners {
  position: absolute;
  inset: 48px;
  pointer-events: none;
  z-index: 3;
}
.w-hero-corners .w-corner { color: rgba(255,255,255,0.15); }

.w-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.w-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 36px;
  opacity: 0;
  animation: wFadeIn 0.7s 0.15s var(--ease-out) forwards;
}

.w-hero-title {
  font-size: clamp(54px, 8.5vw, 100px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  opacity: 0;
  animation: wSlideUp 1s 0.25s var(--ease-spring) forwards;
}

.w-hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: wSlideUp 0.9s 0.42s var(--ease-spring) forwards;
}

.w-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: wSlideUp 0.9s 0.56s var(--ease-spring) forwards;
}

@keyframes wFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wSlideUp {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 768px) {
  .w-hero { padding: 140px 24px 80px; min-height: auto; }
  .w-hero-corners { inset: 20px; }
  .w-hero-ctas { flex-direction: column; }
  .w-hero-ctas .btn { width: 100%; }
}

/* ===================================================================
   MARQUEE STRIP — Infinite scrolling credentials
   =================================================================== */
.w-marquee {
  background: var(--cloud);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--mist);
}
.w-marquee-track {
  display: flex;
  width: max-content;
  animation: wMarquee 35s linear infinite;
}
.w-marquee-items {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.w-marquee-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.45;
  white-space: nowrap;
  padding: 0 24px;
}
.w-marquee-sep {
  color: var(--mustard);
  opacity: 0.35;
  font-size: 8px;
  flex-shrink: 0;
}

@keyframes wMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================================
   NUMBERED SECTION HEADS
   =================================================================== */
.w-section {
  padding: var(--section-py) 24px;
  position: relative;
  overflow: hidden;
}
.w-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.w-section-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--mustard);
  letter-spacing: 0.02em;
}
.w-section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
}

/* ===================================================================
   01 — ABOUT SECTION (text + 2×3 stats grid)
   =================================================================== */
.w-about { background: var(--white); }

.w-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.w-about-copy h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.w-about-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 14px;
}
.w-about-copy p:last-child { margin-bottom: 0; }

.w-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--mist);
  border-radius: var(--r-card);
  overflow: hidden;
}
.w-stat {
  padding: 30px 26px;
  border-bottom: 1px solid var(--mist);
  border-right: 1px solid var(--mist);
  transition: background 0.35s var(--ease-out);
}
.w-stat:hover { background: var(--cloud); }
.w-stat:nth-child(2n) { border-right: none; }
.w-stat:nth-child(n+5) { border-bottom: none; }

.w-stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.w-stat-label {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .w-about-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .w-about-stats { grid-template-columns: 1fr; }
  .w-stat { border-right: none; }
  .w-stat:last-child { border-bottom: none; }
  .w-stat:nth-child(n+5) { border-bottom: 1px solid var(--mist); }
  .w-stat:last-child { border-bottom: none; }
}

/* ===================================================================
   02 — SERVICES (3-col cards with corner decorations)
   =================================================================== */
.w-services { background: var(--cloud); }

.w-services-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}

.w-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.w-service-card {
  position: relative;
  padding: 44px 34px;
  background: var(--white);
  border: 1px solid var(--mist);
  margin-left: -1px;
  transition: all 0.45s var(--ease-spring);
}
.w-service-card:first-child {
  margin-left: 0;
  border-radius: var(--r-card) 0 0 var(--r-card);
}
.w-service-card:last-child {
  border-radius: 0 var(--r-card) var(--r-card) 0;
}

.w-card-corners {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.w-card-corners .w-corner { color: var(--mustard); }
.w-service-card:hover .w-card-corners { opacity: 1; }
.w-service-card:hover {
  background: var(--white);
  box-shadow: 0 16px 56px rgba(27,37,65,0.1);
  transform: translateY(-6px);
  z-index: 2;
  border-color: transparent;
  border-radius: var(--r-card);
}

.w-service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mustard-10);
  color: var(--mustard);
  margin-bottom: 28px;
}
.w-service-icon svg { width: 26px; height: 26px; }
.w-service-icon-blue {
  background: var(--blue-10);
  color: var(--blue);
}

.w-service-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.w-service-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

.w-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mustard);
  transition: gap 0.35s var(--ease-spring);
}
.w-service-cta:hover { gap: 14px; }
.w-service-cta .btn-icon { width: 16px; height: 16px; }
.w-service-cta .btn-icon svg { width: 14px; height: 14px; stroke: var(--mustard); }
.w-service-cta-blue { color: var(--blue); }
.w-service-cta-blue .btn-icon svg { stroke: var(--blue); }

@media (max-width: 960px) {
  .w-services-grid { grid-template-columns: 1fr; }
  .w-service-card {
    margin-left: 0;
    border-radius: 0 !important;
  }
  .w-service-card:first-child {
    border-radius: var(--r-card) var(--r-card) 0 0 !important;
  }
  .w-service-card:last-child {
    border-radius: 0 0 var(--r-card) var(--r-card) !important;
  }
}

/* ===================================================================
   03 — PROCESS (4-col numbered steps)
   =================================================================== */
.w-process { background: var(--white); }

.w-process-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}

.w-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.w-process-step {
  padding: 36px 28px;
  border-left: 1px solid var(--mist);
  position: relative;
}
.w-process-step:first-child { border-left: none; }

.w-step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.07;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.w-process-step h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.w-process-step p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .w-process-grid { grid-template-columns: 1fr 1fr; }
  .w-process-step {
    border-left: none;
    border-bottom: 1px solid var(--mist);
    padding: 28px 20px;
  }
  .w-process-step:nth-child(odd) { border-right: 1px solid var(--mist); }
  .w-process-step:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .w-process-grid { grid-template-columns: 1fr; }
  .w-process-step {
    border-right: none !important;
    border-bottom: 1px solid var(--mist);
  }
  .w-process-step:last-child { border-bottom: none; }
}

/* ===================================================================
   04 — CASE STUDY (dark, with corner brackets + stats panel)
   =================================================================== */
.w-case {
  background: var(--navy);
}
.w-case .grain { opacity: 0.035; }

.w-case-corners {
  position: absolute;
  inset: 48px;
  pointer-events: none;
  z-index: 3;
}
.w-case-corners .w-corner { color: rgba(255,255,255,0.12); }

.w-case .w-section-num { color: rgba(255,255,255,0.35); }
.w-case .w-section-label { color: rgba(255,255,255,0.2); }

.w-case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.w-case-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.w-case-copy p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.36);
  line-height: 1.85;
  margin-bottom: 16px;
}
.w-case-copy p:last-child { margin-bottom: 0; }

.w-case-stats {
  padding-left: 52px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.w-case-stat { margin-bottom: 6px; }
.w-case-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.w-case-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}
.w-case-stat-sep {
  height: 1px;
  background: rgba(255,255,255,0.045);
  margin: 26px 0;
}

@media (max-width: 768px) {
  .w-case-grid { grid-template-columns: 1fr; gap: 48px; }
  .w-case-corners { inset: 20px; }
  .w-case-stats {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .w-case-stat-sep { display: none; }
}
@media (max-width: 480px) {
  .w-case-stats { grid-template-columns: 1fr; }
}

/* ===================================================================
   05 — FAQ ACCORDION (split: title left, items right)
   =================================================================== */
.w-faq { background: var(--white); }

.w-faq-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 80px;
  align-items: start;
}
.w-faq-title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.w-faq-items {
  display: flex;
  flex-direction: column;
}
.w-faq-item {
  border-bottom: 1px solid var(--mist);
}
.w-faq-item:first-child { border-top: 1px solid var(--mist); }

.w-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s var(--ease-out);
}
.w-faq-trigger:hover { color: var(--mustard); }

.w-faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cloud);
  flex-shrink: 0;
  transition: all 0.35s var(--ease-spring);
}
.w-faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
  transition: transform 0.35s var(--ease-spring), color 0.35s var(--ease-spring);
}

.w-faq-item.active .w-faq-icon {
  background: var(--navy);
}
.w-faq-item.active .w-faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}
.w-faq-item.active .w-faq-trigger {
  color: var(--navy);
}

.w-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-spring), padding 0.5s var(--ease-spring);
  padding-bottom: 0;
}
.w-faq-item.active .w-faq-answer {
  max-height: 320px;
  padding-bottom: 24px;
}
.w-faq-answer p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  max-width: 520px;
}

@media (max-width: 768px) {
  .w-faq-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===================================================================
   WOLF FOOTER — Bold headline CTA + structured bottom
   =================================================================== */
.w-footer { background: var(--navy-deep); }

.w-footer-cta {
  position: relative;
  text-align: center;
  padding: 110px 24px 90px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.w-footer-corners {
  position: absolute;
  inset: 48px;
  pointer-events: none;
  z-index: 3;
}
.w-footer-corners .w-corner { color: rgba(255,255,255,0.1); }

.w-footer-headline {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 700px;
  margin: 0 auto 22px;
}
.w-footer-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 40px;
  line-height: 1.7;
}

.w-footer-bottom {
  padding: 60px 24px 44px;
}
.w-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.w-footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 12px;
}
.w-footer-logo span { color: var(--mustard); }
.w-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
}

.w-footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.w-footer-col ul { list-style: none; }
.w-footer-col li { margin-bottom: 12px; }
.w-footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s var(--ease-out);
}
.w-footer-col a:hover { color: var(--white); }

.w-footer-legal {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .w-footer-cta { padding: 72px 24px 56px; }
  .w-footer-corners { inset: 20px; }
  .w-footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Minimal footer (firms v2) — centered logo + tagline + legal */
.w-footer-minimal {
  padding: 64px 24px 48px;
  text-align: center;
}
.w-footer-minimal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.w-footer-minimal .w-footer-logo {
  font-size: 26px;
  margin-bottom: 0;
}
.w-footer-minimal .w-footer-tagline {
  margin: 0;
  max-width: 420px;
}
.w-footer-minimal .w-footer-legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* ===================================================================
   FIRMS PAGE — Wolf-Inspired Variants
   =================================================================== */

/* --- Editorial Hero (two-column: copy left, proof right) --- */
.w-hero-editorial {
  text-align: left;
  justify-content: flex-start;
  padding: 0;
}
.w-hero-editorial .w-hero-eyebrow {
  text-align: left;
}
.w-hero-editorial::before {
  background:
    radial-gradient(ellipse 55% 60% at 22% 50%, rgba(229,162,48,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 85% 25%, rgba(74,111,165,0.03) 0%, transparent 60%);
}

.wf-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 72px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 56px 100px;
  min-height: min(100dvh, 960px);
}
.wf-hero-copy { max-width: 600px; }

.wf-hero-title {
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 0;
  opacity: 0;
  animation: wSlideUp 1s 0.2s var(--ease-spring) forwards;
}
.wf-hero-title em {
  font-style: normal;
  color: var(--mustard);
  -webkit-text-stroke: 1.5px var(--mustard);
  -webkit-text-fill-color: transparent;
}
@supports not (-webkit-text-fill-color: transparent) {
  .wf-hero-title em { color: var(--mustard); }
}

.wf-hero-divider {
  width: 48px;
  height: 2px;
  background: rgba(229,162,48,0.35);
  margin: 34px 0;
  opacity: 0;
  animation: wFadeIn 0.6s 0.42s var(--ease-out) forwards;
}
.wf-hero-ctas {
  opacity: 0;
  animation: wSlideUp 0.9s 0.55s var(--ease-spring) forwards;
}
.wf-hero-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em;
  margin-top: 16px;
  opacity: 0;
  animation: wFadeIn 0.8s 0.7s var(--ease-out) forwards;
}

/* Proof panel */
.wf-hero-proof {
  padding-left: 56px;
  border-left: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: wSlideUp 1.1s 0.35s var(--ease-spring) forwards;
}
.wf-proof-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 44px;
}
.wf-proof-stat { margin-bottom: 6px; }
.wf-proof-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.wf-proof-text {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  max-width: 240px;
}
.wf-proof-sep {
  height: 1px;
  background: rgba(255,255,255,0.045);
  margin: 26px 0;
}

@media (max-width: 960px) {
  .wf-hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 24px 64px;
    gap: 48px;
    min-height: auto;
  }
  .wf-hero-proof {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .wf-proof-sep { display: none; }
  .wf-proof-label { display: none; }
  .wf-proof-stat { margin-bottom: 0; }
}
@media (max-width: 580px) {
  .wf-hero-title { line-height: 0.96; }
  .wf-hero-proof { grid-template-columns: 1fr; gap: 0; }
  .wf-proof-stat { margin-bottom: 6px; }
  .wf-proof-sep { display: block; }
}

/* --- Firms Problem Section --- */
.wf-problem-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.wf-problem-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.wf-accent-rule {
  width: 40px;
  height: 3px;
  background: var(--mustard);
  margin-top: 32px;
  border-radius: 2px;
  opacity: 0.5;
}
.wf-pain {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--mist);
  align-items: start;
}
.wf-pain:first-child { border-top: 2px solid var(--navy); }
.wf-pain-idx {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--mustard);
  letter-spacing: 0.06em;
  padding-top: 3px;
}
.wf-pain-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.wf-pain-body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}
.wf-pullquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--mustard);
  line-height: 1.35;
  text-align: center;
  padding: 40px 0;
  border-top: 2px solid var(--mustard-10);
  border-bottom: 2px solid var(--mustard-10);
}

@media (max-width: 768px) {
  .wf-problem-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Solution subtitle + tags --- */
.wf-sol-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 52px;
}
.wf-sol-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.wf-sol-tag {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(229,162,48,0.08);
  border: 1px solid rgba(229,162,48,0.1);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--mustard);
  letter-spacing: 0.02em;
}
.wf-service-featured {
  background: var(--navy) !important;
  border-color: transparent !important;
}
.wf-service-featured h3 { color: var(--white); }
.wf-service-featured p { color: rgba(255,255,255,0.42); }
.wf-service-featured .w-service-icon {
  background: rgba(229,162,48,0.08);
}
.wf-service-featured .w-card-corners .w-corner { color: rgba(229,162,48,0.3); }
.wf-service-featured .w-card-corners { opacity: 0.6; }
.wf-service-featured:hover {
  box-shadow: 0 16px 56px rgba(11,15,25,0.25) !important;
}

/* --- Case study service list --- */
.wf-case-services {
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.wf-case-services strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* --- Process 3-col variant --- */
.wf-process-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 768px) {
  .wf-process-grid { grid-template-columns: 1fr !important; }
}

/* --- Step badges --- */
.wf-step-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--mustard-10);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mustard);
  margin-bottom: 16px;
}
.wb-badge-blue {
  background: var(--blue-10);
  color: var(--blue);
}

/* --- FAQ intro text --- */
.wf-faq-intro {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  margin-top: 16px;
}

/* --- Trust pills --- */
.wf-trust-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wf-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.wf-trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .wf-trust-pills { flex-direction: column; align-items: center; }
}

/* ===================================================================
   BROKERS PAGE — Wolf-Inspired Variants
   =================================================================== */

/* --- Light Hero --- */
.w-hero-light {
  background: var(--white);
}
.w-hero-light::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(74,111,165,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 80% 70%, rgba(229,162,48,0.03) 0%, transparent 60%);
}
.w-hero-light .w-hero-corners .w-corner { color: rgba(27,37,65,0.1); }
.w-hero-light .w-hero-title { color: var(--navy); }
.w-hero-light .w-hero-title em { color: var(--blue); }
.w-hero-light .w-hero-sub { color: var(--slate); }
.wb-eyebrow-blue { color: var(--blue) !important; }
.wb-hero-micro {
  font-size: 13px;
  color: var(--slate);
  text-align: center;
  margin-top: 18px;
  opacity: 0;
  animation: wFadeIn 0.8s 0.65s var(--ease-out) forwards;
}

/* --- Blue section numbers --- */
.wb-num-blue { color: var(--blue) !important; }

/* --- Problem content block --- */
.wb-problem-content {
  max-width: 680px;
}
.wb-problem-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.wb-problem-content p {
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 16px;
}
.wb-problem-content p:last-child { margin-bottom: 0; }
.wb-problem-content strong { color: var(--navy); font-weight: 600; }

/* --- Feature grid (2x3 with corners) --- */
.wb-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wb-feat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-card);
  padding: 32px 26px;
  transition: all 0.4s var(--ease-spring);
  overflow: hidden;
}
.wb-feat-card .w-card-corners .w-corner { color: var(--blue); }
.wb-feat-card .w-card-corners {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.wb-feat-card:hover .w-card-corners { opacity: 1; }
.wb-feat-card:hover {
  border-color: rgba(74,111,165,0.2);
  box-shadow: 0 8px 32px rgba(27,37,65,0.08);
  transform: translateY(-4px);
}
.wb-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.wb-feat-card:hover .wb-feat-icon { background: var(--blue-20); }
.wb-feat-icon svg { width: 22px; height: 22px; color: var(--blue); stroke: var(--blue); }
.wb-feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.wb-feat-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

@media (max-width: 960px) { .wb-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .wb-feat-grid { grid-template-columns: 1fr; } }

/* --- Pricing card --- */
.wb-pricing { background: var(--white); }
.wb-price-wrap {
  max-width: 460px;
  margin: 0 auto;
}
.wb-price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  text-align: center;
  overflow: hidden;
}
.wb-price-corners .w-corner { color: var(--blue); }
.wb-price-corners {
  opacity: 1 !important;
  inset: 16px !important;
}
.wb-price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.wb-price-amount span { font-size: 19px; font-weight: 600; color: var(--slate); }
.wb-price-label {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 28px;
}
.wb-price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.wb-price-list li {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--mist);
}
.wb-price-list li:last-child { border: none; }
.wb-price-list li svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}
.wb-price-note {
  font-size: 13px;
  color: var(--slate);
  margin-top: 14px;
}

/* --- Testimonial --- */
.wb-testimonial { text-align: center; }
.wb-testimonial-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.wb-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--mustard);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 20px;
}
.wb-quote {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 32px;
}
.wb-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mustard-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--mustard);
  margin: 0 auto 10px;
}
.wb-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.wb-role {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* --- Firm pointer section --- */
.wb-pointer { background: var(--cloud); }
.wb-pointer-inner {
  max-width: 600px;
}
.wb-pointer-inner h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.wb-pointer-inner p {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ===================================================================
   NAV — minimal variant (firms v2): centered logo + CTA only
   =================================================================== */
.nav-minimal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 8px 0 24px;
}
.nav-minimal .nav-spacer {
  display: block;
}
.nav-minimal .nav-logo {
  justify-self: center;
}
.nav-minimal .nav-cta {
  justify-self: end;
}
.nav-logo-lg {
  font-size: 29px;
  letter-spacing: -0.025em;
}
@media (max-width: 600px) {
  .nav-logo-lg { font-size: 24px; }
  .nav-minimal { padding: 0 8px 0 16px; }
  .nav-minimal .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* ===================================================================
   SYSTEM VISUAL — three-panel mockup (firms v2)
   =================================================================== */
.w-system-visual {
  background: var(--cloud);
  padding: clamp(72px, 9vw, 110px) 0 clamp(72px, 9vw, 110px);
  position: relative;
}

/* Headline + subhead + checkmark bullets above mockup */
.w-system-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.w-system-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 18px;
}
.w-system-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--slate);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 640px;
}
.w-system-bullets {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.w-system-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--navy);
  letter-spacing: -0.005em;
}
.w-system-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.w-system-check svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 700px) {
  .w-system-bullets {
    align-self: stretch;
    width: 100%;
  }
  .w-system-bullets li {
    align-items: flex-start;
  }
}
.w-system-img {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.78fr;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 30px 60px rgba(27,37,65,0.10));
}

/* Panels (browser-style cards) */
.w-sys-panel {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--mist);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27,37,65,0.06);
}
.w-sys-panel-left {
  transform: translateX(8%) translateY(-6px);
  z-index: 1;
}
.w-sys-panel-right {
  transform: translateX(-8%) translateY(-6px);
  z-index: 1;
}
.w-sys-panel-center {
  position: relative;
  z-index: 2;
  background: var(--navy);
  border: none;
  box-shadow: 0 18px 50px rgba(27,37,65,0.18);
}

/* Window bar */
.w-sys-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--mist);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.w-sys-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.w-sys-dot-r { background: #FF5F57; }
.w-sys-dot-y { background: #FEBC2E; }
.w-sys-dot-g { background: #28C840; }
.w-sys-window-title {
  margin-left: 10px;
}

/* Center panel — browser */
.w-sys-window-bar-browser {
  background: #fff;
  border-bottom: none;
  padding: 12px 14px;
  border-radius: 14px 14px 0 0;
  position: relative;
  z-index: 3;
}
.w-sys-url {
  flex: 1;
  margin-left: 10px;
  background: #F2F4F8;
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  letter-spacing: 0;
}
.w-sys-browser-body {
  position: relative;
  background: var(--navy);
  padding: 48px 24px 56px;
  text-align: center;
  min-height: 220px;
  overflow: hidden;
}
.w-sys-browser-shape {
  position: absolute;
  right: -40px;
  top: 30%;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 28px;
  transform: rotate(8deg);
}
.w-sys-browser-content {
  position: relative;
  z-index: 1;
}
.w-sys-browser-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 8px;
}
.w-sys-browser-content p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 22px;
}
.w-sys-cta {
  display: inline-block;
  background: var(--mustard);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}

/* Left panel — Pipeline */
.w-sys-pipeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.w-sys-pipeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--mist);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--slate);
}
.w-sys-pipeline li:last-child { border-bottom: none; }
.w-sys-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.w-sys-b-mustard { background: var(--mustard); }
.w-sys-b-yellow { background: #F0C341; }
.w-sys-b-navy { background: var(--navy); }
.w-sys-b-teal { background: var(--teal); }
.w-sys-bar {
  flex: 1;
  height: 6px;
  background: #ECEFF4;
  border-radius: 999px;
}
.w-sys-bar-md { width: 60%; flex: none; }
.w-sys-bar-sm { width: 35%; flex: none; }
.w-sys-stage {
  margin-left: auto;
  color: var(--navy);
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
}

/* Right panel — Automations */
.w-sys-automations {
  list-style: none;
  margin: 0;
  padding: 0;
}
.w-sys-automations li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--mist);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--navy);
}
.w-sys-automations li:last-child { border-bottom: none; }
.w-sys-auto-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-sys-auto-icon svg { width: 12px; height: 12px; }
.w-sys-auto-check {
  background: rgba(43,158,143,0.15);
  color: var(--teal);
}
.w-sys-auto-circle {
  background: rgba(229,162,48,0.15);
  border: 1.5px solid var(--mustard);
  width: 22px; height: 22px;
}
.w-sys-auto-star {
  background: rgba(74,111,165,0.12);
  color: var(--blue);
}
.w-sys-auto-dot {
  background: var(--teal);
  width: 10px; height: 10px;
}
.w-sys-auto-active {
  color: var(--teal);
  font-weight: 600;
}
.w-sys-auto-active strong {
  color: var(--teal);
  font-weight: 700;
}

/* Caption */
.w-system-caption {
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--slate);
  max-width: 640px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .w-system-img {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 460px;
    filter: none;
  }
  .w-sys-panel-left,
  .w-sys-panel-right {
    transform: none;
  }
  .w-sys-panel-center {
    order: -1;
  }
}
