/* ==========================================================================
   GrowthBridge — Marketing Site Styles
   Single source of truth for brand tokens, layout, and components.
   Edit brand colors / type in the :root block below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS  (brand colors, type, spacing, radius, shadow)
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette (from GrowthBridge brand file) */
  --navy:        #1E2A3A;  /* Deep Navy   — trust, structure, headlines */
  --teal:        #2E8C87;  /* Teal Green  — action, growth, CTAs        */
  --clay:        #C7825A;  /* Warm Clay   — accents, dividers, markers   */
  --offwhite:    #F7F4EE;  /* Soft Off-White — page background           */
  --charcoal:    #25303B;  /* Charcoal Slate — deep section bg, body ink */
  --bluegray:    #AAB5C0;  /* Blue Gray   — muted supporting elements    */

  /* Derived / functional tokens */
  --navy-900:    #16202C;
  --navy-700:    #243345;
  --teal-700:    #246F6B;
  --teal-050:    #E6F1F0;
  --clay-050:    #F6EBE2;
  --ink:         #1E2A3A;  /* primary body text on light */
  --ink-soft:    #4B5763;  /* secondary text             */
  --line:        #E4DED4;  /* hairline borders on offwhite */
  --line-strong: #D6CFC2;
  --white:       #FFFFFF;
  --card:        #FFFFFF;
  --surface:     #FBFAF6;  /* slightly lifted off-white  */

  /* Typography */
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans:  "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(30,42,58,.06), 0 1px 3px rgba(30,42,58,.05);
  --shadow:    0 4px 14px rgba(30,42,58,.07), 0 2px 6px rgba(30,42,58,.05);
  --shadow-lg: 0 18px 50px rgba(30,42,58,.12), 0 6px 18px rgba(30,42,58,.07);

  --container: 1180px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.01em; }

h1, h2, h3, h4 { line-height: 1.12; color: var(--navy); font-weight: 700; letter-spacing: -.015em; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--clay);
  display: inline-block;
}

.section-head { max-width: 760px; margin-bottom: var(--space-7); }
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 2.7rem);
  letter-spacing: -.02em;
  color: var(--navy);
}
.section-head p { margin-top: var(--space-4); color: var(--ink-soft); font-size: 1.12rem; max-width: 64ch; }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

section { padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem); }
.section-tint   { background: var(--surface); }
.section-offset { background: linear-gradient(180deg, var(--offwhite), var(--surface)); }
.section-dark   { background: var(--navy); color: #DDE4EA; }
.section-dark h2 { color: #fff; }
.section-dark .section-head p { color: #AEBAC6; }

.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.6rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .92rem 1.4rem; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(46,140,135,.28); }
.btn-primary:hover { background: var(--teal-700); color: #fff; box-shadow: 0 10px 26px rgba(46,140,135,.34); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); background: rgba(30,42,58,.03); }

.btn-on-dark { background: #fff; color: var(--navy); }
.btn-on-dark:hover { background: var(--offwhite); color: var(--navy); transform: translateY(-1px); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.07); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: .7rem 1.05rem; font-size: .92rem; }

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,238,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(30,42,58,.05); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; }
.site-logo { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, .4rem + 1.3vw, 2rem); }
.nav-links a {
  color: var(--charcoal); font-weight: 500; font-size: .98rem; letter-spacing: -.01em;
  padding: .35rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--teal); transition: width .22s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none; background: transparent; border: 1.5px solid var(--line-strong);
  border-radius: 10px; padding: .5rem; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu panel */
.mobile-menu {
  display: none; position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--offwhite); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.6rem;
}
.mobile-menu.open { display: block; animation: slidedown .22s ease; }
.mobile-menu a {
  display: block; padding: .85rem .25rem; font-size: 1.08rem; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1.1rem; }
@keyframes slidedown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3rem, 1.5rem + 7vw, 6rem); overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(95deg, rgba(247,244,238,.99) 0%, rgba(247,244,238,.955) 37%, rgba(247,244,238,.72) 58%, rgba(247,244,238,.30) 100%),
    url("../img/hero-strategy-ai-overlay.svg"),
    radial-gradient(50% 48% at 78% 24%, rgba(46,140,135,.22), transparent 62%),
    radial-gradient(36% 42% at 88% 76%, rgba(199,130,90,.17), transparent 66%),
    url("../img/photos/band-advisor.jpg"),
    linear-gradient(135deg, var(--offwhite), #EFE9DE);
  background-position:
    center,
    right 6% center,
    center,
    center,
    right center,
    center;
  background-size:
    cover,
    min(54vw, 680px) auto,
    cover,
    cover,
    cover,
    cover;
  background-repeat: no-repeat;
}
/* keep the bottom edge clean where the hero meets the next section */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%; z-index: -1;
  background: linear-gradient(transparent, var(--offwhite));
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 100px; padding: .4rem .9rem .4rem .55rem;
  font-size: .85rem; font-weight: 600; color: var(--charcoal); box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--teal-050); }
.hero h1 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 4.3rem);
  line-height: 1.02; letter-spacing: -.025em; color: var(--navy);
}
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1.05rem, .95rem + .5vw, 1.22rem); color: var(--ink-soft); max-width: 38ch; }
.hero-tagline { margin-top: 1rem; font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.hero-tagline span { color: var(--clay); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust {
  margin-top: 1.6rem; display: flex; align-items: flex-start; gap: .6rem;
  color: var(--ink-soft); font-size: .95rem; max-width: 44ch;
}
.hero-trust svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }

/* Revenue Leak Map card */
.leakmap {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.2rem, .8rem + 1.4vw, 1.9rem);
  position: relative;
}
.leakmap::before {
  content: "AI strategy layer";
  position: absolute;
  top: -18px;
  right: clamp(1rem, 3vw, 2.2rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(46,140,135,.28);
  background: rgba(255,255,255,.92);
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(30,42,58,.10);
}
.leakmap::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.5); pointer-events: none;
}
.leakmap-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.leakmap-title { font-weight: 700; color: var(--navy); font-size: 1.02rem; letter-spacing: -.01em; }
.leakmap-tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); background: var(--clay-050); padding: .3rem .6rem; border-radius: 100px; }
.leakmap-cols { display: grid; grid-template-columns: 1fr auto 1fr; gap: .9rem; align-items: stretch; }
.leak-col-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bluegray); margin-bottom: .55rem; }
.leak-list { display: flex; flex-direction: column; gap: .5rem; }
.leak-item {
  display: flex; align-items: center; gap: .55rem; background: var(--surface);
  border: 1px solid var(--line); border-left: 3px solid var(--clay);
  border-radius: 9px; padding: .55rem .7rem; font-size: .85rem; font-weight: 600; color: var(--charcoal);
}
.leak-item .leak-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; }
.leak-arrow { display: flex; align-items: center; justify-content: center; color: var(--bluegray); }
.leak-arrow svg { width: 26px; height: 26px; }
.gain-list { display: flex; flex-direction: column; gap: .5rem; }
.gain-item {
  display: flex; align-items: center; gap: .55rem; background: var(--teal-050);
  border: 1px solid #CFE6E4; border-left: 3px solid var(--teal);
  border-radius: 9px; padding: .55rem .7rem; font-size: .85rem; font-weight: 700; color: var(--teal-700);
}
.gain-item svg { width: 15px; height: 15px; flex: none; color: var(--teal); }
.leakmap-foot {
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.leakmap-foot .stat { display: flex; flex-direction: column; }
.leakmap-foot .stat b { font-family: var(--font-serif); font-weight: 600; font-size: 1.45rem; color: var(--navy); line-height: 1; }
.leakmap-foot .stat span { font-size: .78rem; color: var(--ink-soft); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   8. CARDS (problems, services, etc.)
   -------------------------------------------------------------------------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.55rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-icon {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-700); margin-bottom: 1.05rem;
  box-shadow: 0 0 0 6px rgba(46,140,135,.06);
}
.card-icon svg { width: 23px; height: 23px; }
.card-icon.clay { background: var(--clay-050); color: var(--clay); }
.card h3 { font-size: 1.16rem; color: var(--navy); margin-bottom: .45rem; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .99rem; }

/* numbered problem cards */
.card .pnum {
  position: absolute; top: 1.1rem; right: 1.2rem; font-family: var(--font-serif);
  font-weight: 600; font-size: 1.05rem; color: var(--bluegray);
}
.card.problem { position: relative; }
.card.problem .card-icon { background: var(--clay-050); color: var(--clay); }

/* service card with footer link */
.service { display: flex; flex-direction: column; }
.service .tier {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: .7rem;
}
.service p { flex: 1; }
.service .service-foot { margin-top: 1.05rem; font-weight: 600; color: var(--teal-700); font-size: .95rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap .18s ease; }
.service .service-foot svg { width: 16px; height: 16px; flex: none; }
.service:hover .service-foot { gap: .6rem; }

/* AI Opportunity Mapping feature band (within What We Do) */
.ai-map {
  margin-top: 1.6rem; background: var(--navy); color: #DCE3EA;
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  align-items: center; position: relative; overflow: clip;
}
.ai-map::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(58% 80% at 92% 8%, rgba(46,140,135,.20), transparent 60%);
}
.ai-map > * { position: relative; z-index: 1; }
.ai-map .card-icon { background: rgba(46,140,135,.16); color: #5FBFB8; box-shadow: none; }
.ai-map .tier { color: #5FBFB8; }
.ai-map h3 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 1.55rem; margin: .55rem 0 .5rem; }
.ai-map p { color: #AEBAC6; font-size: 1rem; }
.ai-map-examples { display: flex; flex-wrap: wrap; gap: .55rem; }
.ai-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #E7ECF1; border-radius: 100px; padding: .5rem .95rem; font-size: .9rem; font-weight: 500;
}
.ai-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5FBFB8; flex: none; }

/* Revenue channels band (light) */
.channels {
  margin-top: 1.6rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  align-items: center; position: relative; overflow: clip;
}
.channels::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(56% 80% at 6% 92%, rgba(199,130,90,.12), transparent 60%);
  pointer-events: none;
}
.channels > * { position: relative; z-index: 1; }
.channels h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.55rem; color: var(--navy); margin: .5rem 0; }
.channels p { color: var(--ink-soft); }
.channels-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.ch-chip {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--white);
  border: 1px solid var(--line-strong); color: var(--charcoal); border-radius: 100px;
  padding: .5rem .95rem; font-size: .9rem; font-weight: 600;
}
.ch-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; }

/* Pricing path label */
.price-path {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: .5rem;
}

/* Revenue-share guardrails panel */
.guardrails {
  margin-top: 1.6rem; background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--clay); border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.4rem, 1rem + 2vw, 2.4rem); align-items: center;
}
.guardrails-head h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.4rem; color: var(--navy); margin: .5rem 0 .4rem; }
.guardrails-head p { color: var(--ink-soft); font-size: .98rem; }
.guardrails-list { display: grid; gap: .7rem; }
.guardrails-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .98rem; color: var(--charcoal); }
.guardrails-list svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 2px; }

/* Second best-fit panel (partnership) — clay accent to distinguish */
.bestfit.partner { margin-top: 1.3rem; box-shadow: inset 0 3px 0 var(--clay); }

/* --------------------------------------------------------------------------
   9. HOW IT WORKS — process flow
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }
.process::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
  display: grid; place-items: center; background: var(--white); color: var(--navy);
  font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem;
  border: 2px solid var(--teal); box-shadow: 0 6px 16px rgba(46,140,135,.18);
}
.step:nth-child(odd) .step-num { background: var(--navy); color: #fff; border-color: var(--navy); }
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   10. PRICING
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .22s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.featured {
  border: 2px solid var(--teal);
  background: linear-gradient(180deg, var(--teal-050), var(--white) 42%);
  box-shadow: 0 22px 56px rgba(46,140,135,.22);
  position: relative; padding-top: 2.1rem;
}
.price-card.featured::before {
  content: "★ Recommended starting point"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: var(--teal); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .4rem .95rem; border-radius: 100px;
  box-shadow: 0 8px 18px rgba(46,140,135,.34);
}
.price-card.featured .price-name { color: var(--teal-700); }
.price-name { font-weight: 700; color: var(--navy); font-size: 1.18rem; letter-spacing: -.01em; }
.price-amount { font-family: var(--font-serif); font-weight: 600; font-size: 1.75rem; color: var(--navy); margin: .55rem 0 .15rem; }
.price-amount small { font-family: var(--font-sans); font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.price-desc { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.price-features { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.4rem; flex: 1; }
.price-features li { display: flex; gap: .55rem; font-size: .94rem; color: var(--charcoal); align-items: flex-start; }
.price-features svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 3px; }
.price-note {
  text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 1.6rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.price-note svg { width: 16px; height: 16px; color: var(--clay); }
.pricing-secondary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 1.3rem; }
.price-card.wide { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.price-card.wide .price-features { flex-direction: row; flex-wrap: wrap; gap: .4rem 1.3rem; flex-basis: 100%; margin-bottom: 0; }
.price-card.wide .pc-head { flex: 1 1 230px; }
.price-card.wide .pc-action { flex: none; }

/* --------------------------------------------------------------------------
   11. WHO WE HELP
   -------------------------------------------------------------------------- */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.client-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; display: flex; align-items: center; gap: .85rem; font-weight: 600;
  color: var(--navy); font-size: .98rem; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .18s ease;
}
.client-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.client-card .ci { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.client-card .ci svg { width: 21px; height: 21px; }

.bestfit {
  margin-top: 2rem; background: var(--navy); color: #DCE3EA; border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem;
}
.bestfit h3 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; }
.bestfit p { color: #AEBAC6; margin-top: .6rem; font-size: .98rem; }
.bestfit ul { display: grid; gap: .7rem; }
.bestfit li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: #E7ECF1; }
.bestfit li svg { width: 20px; height: 20px; color: var(--teal); flex: none; margin-top: 2px; }

/* --------------------------------------------------------------------------
   12. TRUST (dark)
   -------------------------------------------------------------------------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; }
.trust-point { display: flex; gap: .7rem; align-items: flex-start; }
.trust-point svg { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 2px; }
.trust-point b { color: #fff; display: block; font-size: 1.02rem; font-weight: 600; }
.trust-point span { color: #9FACBA; font-size: .9rem; }
.trust-copy .serif-quote {
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.4rem, 1rem + 1.8vw, 2rem);
  color: #fff; line-height: 1.25; letter-spacing: -.015em;
}
.trust-copy p { color: #AEBAC6; margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   13. EXAMPLE LEAKS — table/cards
   -------------------------------------------------------------------------- */
.leak-table { display: grid; gap: .9rem; }
.leak-row {
  display: grid; grid-template-columns: 44px 1fr auto 1fr; gap: 1.2rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.4rem; box-shadow: var(--shadow-sm); transition: border-color .2s ease;
}
.leak-row:hover { border-color: var(--line-strong); }
.leak-row .lr-num { font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem; color: var(--clay); }
.leak-row .lr-leak b, .leak-row .lr-fix b { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .25rem; }
.leak-row .lr-leak b { color: var(--clay); }
.leak-row .lr-fix b { color: var(--teal-700); }
.leak-row .lr-leak span, .leak-row .lr-fix span { color: var(--charcoal); font-size: .98rem; }
.leak-row .lr-arrow { color: var(--bluegray); display: grid; place-items: center; }
.leak-row .lr-arrow svg { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   14. ABOUT
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.about-copy p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.about-copy p:first-of-type { margin-top: 1.4rem; }
.about-values { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.chip {
  font-size: .85rem; font-weight: 600; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: .45rem .9rem;
}
.founder-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow); text-align: center;
}
.founder-photo {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(46,140,135,.16), transparent 55%),
    radial-gradient(120% 120% at 80% 90%, rgba(199,130,90,.16), transparent 55%),
    var(--surface);
  border: 1px dashed var(--line-strong);
  display: grid; place-items: center; color: var(--bluegray); margin-bottom: 1.1rem;
}
.founder-photo svg { width: 54px; height: 54px; opacity: .7; }
.founder-photo .ph-label { font-size: .8rem; font-weight: 600; margin-top: .4rem; }
.founder-card h3 { color: var(--navy); font-size: 1.15rem; }
.founder-card .role { color: var(--teal-700); font-weight: 600; font-size: .9rem; margin-top: .15rem; }
.founder-card p { color: var(--ink-soft); font-size: .94rem; margin-top: .7rem; }

/* --------------------------------------------------------------------------
   15. FINAL CTA (dark band)
   -------------------------------------------------------------------------- */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%); color: #fff; text-align: center; position: relative; overflow: clip; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 70% at 50% 0%, rgba(46,140,135,.22), transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; max-width: 760px; }
.final-cta h2 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 1.3rem + 3vw, 3rem); letter-spacing: -.02em; }
.final-cta p { color: #BCC7D2; font-size: 1.15rem; margin: 1.1rem auto 2rem; max-width: 58ch; }

/* --------------------------------------------------------------------------
   16. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact-aside h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.5rem); }
.contact-aside p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }
.contact-points { margin-top: 1.8rem; display: grid; gap: 1rem; }
.contact-point { display: flex; gap: .8rem; align-items: flex-start; }
.contact-point .cp-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.contact-point .cp-ic svg { width: 20px; height: 20px; }
.contact-point b { color: var(--navy); display: block; font-size: 1rem; }
.contact-point span { color: var(--ink-soft); font-size: .92rem; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .4rem; }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-050);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA6B2; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C2453B; background: #FCF1F0; }
.field .err { display: none; color: #C2453B; font-size: .82rem; margin-top: .35rem; font-weight: 500; }
.field.invalid .err { display: block; }

.help-options { display: flex; flex-wrap: wrap; gap: .55rem; }
.help-opt {
  position: relative; display: inline-flex;
}
.help-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.help-opt span {
  display: inline-block; padding: .5rem .85rem; border-radius: 100px; font-size: .88rem; font-weight: 500;
  background: var(--surface); border: 1.5px solid var(--line-strong); color: var(--charcoal);
  transition: all .15s ease; cursor: pointer;
}
.help-opt input:checked + span { background: var(--teal-050); border-color: var(--teal); color: var(--teal-700); font-weight: 600; }
.help-opt input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }

.form-foot { display: flex; align-items: center; gap: 1rem; margin-top: .4rem; flex-wrap: wrap; }
.form-privacy { font-size: .82rem; color: var(--ink-soft); flex: 1; min-width: 200px; }

.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.show { display: block; animation: slidedown .3s ease; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--teal-050); color: var(--teal);
  display: grid; place-items: center; margin: 0 auto 1.2rem;
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; color: var(--navy); }
.form-success p { color: var(--ink-soft); margin-top: .6rem; max-width: 40ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #9FACBA; padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 44px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand p { color: #93A0AE; font-size: .95rem; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: #AEBAC6; padding: .35rem 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .85rem; color: #8090A0; flex-wrap: wrap; }
.footer-bottom .tag { display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .04em; }
.footer-bottom .tag .sep { color: var(--clay); }

/* --------------------------------------------------------------------------
   18. UTILITIES & MOTION
   -------------------------------------------------------------------------- */
/* Reveal is a progressive enhancement: only hidden when JS is active (html.js).
   Without JS, all content is visible by default. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: .7rem 1rem; border-radius: 0 0 8px 0; z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-points { grid-template-columns: 1fr; }
}
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-sub, .hero-trust { max-width: 56ch; }
  .leakmap { max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bestfit { grid-template-columns: 1fr; gap: 1.4rem; }
  .ai-map { grid-template-columns: 1fr; gap: 1.4rem; }
  .channels { grid-template-columns: 1fr; gap: 1.4rem; }
  .guardrails { grid-template-columns: 1fr; gap: 1.2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pricing-secondary { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .process::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .leakmap-cols { grid-template-columns: 1fr; }
  .leak-arrow { transform: rotate(90deg); padding: .2rem 0; }
  .leak-row { grid-template-columns: 1fr; gap: .5rem; text-align: left; }
  .leak-row .lr-arrow { transform: rotate(90deg); justify-self: start; }
  .leak-row .lr-num { display: none; }
  .process { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   20. LOGO IMAGE ASSETS (real PNG brand files)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .site-logo { height: 36px; }
  .footer-brand img { height: 36px; max-width: 220px; }
}

/* --------------------------------------------------------------------------
   21. CURATED PHOTOGRAPHY (real stock imagery)
   -------------------------------------------------------------------------- */
/* Who We Help — diverse owner/operator band */
.who-photos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(.8rem, .5rem + 1vw, 1.3rem); margin: 0 0 1rem;
}
.who-photo {
  margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface);
}
.who-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.who-photo:hover img { transform: scale(1.045); }
.who-photos-cap {
  margin: 0 0 var(--space-7); color: var(--ink-soft); font-size: .95rem;
  text-align: center;
}

/* About — warm working-session banner */
.about-banner {
  margin: 0 0 clamp(1.6rem, 1rem + 2vw, 2.8rem); aspect-ratio: 16 / 6.2;
  overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.about-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block;
}

@media (max-width: 640px) {
  .who-photos { grid-template-columns: 1fr; gap: 1rem; }
  .who-photo { aspect-ratio: 16 / 9; }
  .who-photos-cap { margin-bottom: var(--space-6); }
  .about-banner { aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   22. HERO PHOTO + UPPER-PAGE PHOTO BANDS
   -------------------------------------------------------------------------- */
/* Slim full-width photo bands that break up the card-heavy upper page */
.photo-band-section { padding-block: clamp(1rem, .4rem + 1.4vw, 1.9rem); }
.photo-band {
  margin: 0; position: relative; aspect-ratio: 16 / 5; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.photo-band-cap {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.6rem 1.15rem;
  background: linear-gradient(transparent, rgba(30,42,58,.74));
}
.photo-band-cap span {
  color: #fff; font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: clamp(1.05rem, .9rem + 1vw, 1.5rem); letter-spacing: -.01em;
}

@media (max-width: 640px) {
  .photo-band { aspect-ratio: 16 / 8; }
  .photo-band-cap { padding: 2rem 1.1rem .9rem; }
}
/* Mobile hero: stronger, more even scrim so copy stays crisp over the bg photo */
@media (max-width: 760px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(247,244,238,.95) 0%, rgba(247,244,238,.9) 55%, rgba(247,244,238,.86) 100%),
      radial-gradient(70% 38% at 92% 6%, rgba(46,140,135,.12), transparent 60%),
      url("../img/photos/hero-bg.jpg") center / cover no-repeat,
      var(--offwhite);
  }
}
