/* =========================================
   FUTURE PATH FINANCIAL PLANNING
   Brand Palette — Slate Blue & Moss Green
   ========================================= */

/* --- CSS Variables --- */
:root {
  /* Primary Brand Colors */
  --slate:        #1B2A3B;   /* Primary text — aligns with logo navy */
  --slate-deep:   #0F1E2B;   /* Darker for contrast */
  --slate-mid:    #5C7A8F;   /* Mid slate */
  --slate-light:  #7A9AAF;   /* Lighter slate */
  --slate-pale:   #C2D4DF;   /* Very light slate */
  --slate-frost:  #EBF2F7;   /* Background tint */

  /* Moss Green — Brand Path Element */
  --moss:         #4A7A3D;   /* Primary CTA, brand element — matches logo green */
  --moss-deep:    #35592C;   /* Darker moss for hover */
  --moss-mid:     #5E9450;   /* Medium moss */
  --moss-light:   #8BBD7E;   /* Light moss */
  --moss-pale:    #C2DFB8;   /* Very light moss */
  --moss-frost:   #EDF6E9;   /* Moss background tint */

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --light-gray:   #F0F4F7;
  --mid-gray:     #E2E8ED;
  --border:       #D0DCE5;
  --text-muted:   #8EA5B4;

  /* Dark shades for contrast sections */
  --dark-bg:      #1B2A3B;   /* Matches logo navy */
  --dark-deeper:  #131F2A;   /* Deep navy */
  --dark-text:    rgba(235,242,247,.85);
  --dark-subtle:  rgba(235,242,247,.55);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Radius */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows — slate-tinted */
  --shadow-sm:  0 1px 3px rgba(74,98,116,.08), 0 1px 2px rgba(74,98,116,.05);
  --shadow:     0 4px 16px rgba(74,98,116,.10), 0 2px 6px rgba(74,98,116,.07);
  --shadow-lg:  0 12px 40px rgba(74,98,116,.14), 0 4px 12px rgba(74,98,116,.09);
  --shadow-xl:  0 24px 64px rgba(74,98,116,.18);

  --transition:      all .22s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .14s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--slate);
  background: var(--slate-frost);
}
.nav-links .nav-cta {
  background: var(--moss);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: .01em;
}
.nav-links .nav-cta:hover {
  background: var(--moss-deep);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}
.btn-primary:hover {
  background: var(--moss-deep);
  border-color: var(--moss-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,142,107,.28);
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover {
  color: var(--moss-deep);
  background: transparent;
  border-bottom-color: var(--moss);
}
/* Ghost button on dark background (solution section) - show as proper outlined button */
.solution-section .btn-ghost {
  color: rgba(235,242,247,0.90);
  font-weight: 600;
  border: 1.5px solid rgba(235,242,247,0.45);
  border-radius: var(--radius);
  padding: 12px 28px;
}
.solution-section .btn-ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.10);
  border-color: rgba(235,242,247,0.80);
}
.btn-outline {
  background: transparent;
  color: var(--moss);
  border-color: var(--moss);
}
.btn-outline:hover {
  background: var(--moss);
  color: var(--white);
}
.btn-outline-slate {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate-pale);
}
.btn-outline-slate:hover {
  background: var(--slate-frost);
  border-color: var(--slate-light);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}
.btn-large {
  font-size: 17px;
  padding: 17px 36px;
  border-radius: var(--radius);
}
.btn-full { width: 100%; }

/* =========================================
   SECTION LABELS & TITLES
   ========================================= */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss-deep);
  background: var(--moss-frost);
  border: 1px solid var(--moss-pale);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  padding: 168px 24px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 25% 65%, rgba(107,142,107,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 25%, rgba(74,98,116,.08) 0%, transparent 70%),
    linear-gradient(160deg, var(--white) 0%, var(--slate-frost) 50%, var(--moss-frost) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--slate-frost);
  border: 1px solid var(--slate-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--slate-deep);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: var(--moss-deep);
  display: block;
  margin-top: 6px;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-sub strong { color: var(--slate); font-weight: 700; }
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--moss-light);
  padding-left: 14px;
}
/* Hero Stacked Photos Design */
.hero-visual { position: relative; }
.hero-photos-stack {
  position: relative;
  width: 420px;
  height: 500px;
  flex-shrink: 0;
}

/* Back photo (professional) — slightly rotated, behind */
.hero-photo-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(3deg);
  transform-origin: top right;
  box-shadow: 0 12px 40px rgba(74,98,116,0.22), 0 3px 10px rgba(74,98,116,0.10);
  border: 4px solid var(--white);
  outline: 1px solid var(--slate-pale);
  z-index: 1;
}
.hero-photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Front photo (travel) — slightly counter-rotated, in front */
.hero-photo-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 360px;
  height: 290px;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-2.5deg);
  transform-origin: bottom left;
  box-shadow: 0 16px 50px rgba(74,98,116,0.25), 0 4px 14px rgba(74,98,116,0.12);
  border: 4px solid var(--white);
  outline: 1px solid var(--slate-pale);
  z-index: 2;
}
.hero-photo-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* Small label tags on each photo */
.hero-photo-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--slate);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--slate-pale);
  z-index: 3;
}

/* No accent circles */

/* =========================================
   PROBLEM BAR
   ========================================= */
.problem-bar {
  background: var(--dark-bg);
  padding: 40px 0;
}
.problem-grid {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.problem-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 28px;
  color: var(--dark-subtle);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.problem-item--divided::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(235,242,247,0.35);
  border-radius: 1px;
}

/* =========================================
   SCATTERED SUCCESS SYNDROME
   ========================================= */
.sss-section {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-frost) 100%);
  overflow: hidden;
}

/* --- Opening question --- */
.sss-opener {
  margin-bottom: 24px;
}
.sss-big-question {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--slate-deep);
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 8px;
  max-width: 780px;
  letter-spacing: -0.01em;
}
.sss-big-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.2;
  max-width: 740px;
  margin: 0;
  letter-spacing: -0.005em;
}
/* Lead-in paragraph before the name reveal */
.sss-pre-name {
  margin-bottom: 32px;
}
.sss-body-lead {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 680px;
}

/* --- SSS Name inline (no box) --- */
.sss-name-inline {
  margin: 20px 0 24px;
}
.sss-name-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss-deep);
  display: block;
  margin-bottom: 6px;
}
.sss-name-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--slate-deep);
  display: block;
}
.sss-name-break { display: none; }
.sss-name-underline {
  width: 200px;
  max-width: 100%;
  margin: 6px 0 0;
  opacity: .7;
}
.sss-name-underline svg {
  width: 100%;
  height: 12px;
  display: block;
}
.sss-name-descriptor {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.5;
  font-style: italic;
}

/* --- Two-column grid — full height from top --- */
.sss-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.sss-content p {
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 16px;
}
.sss-body-intro {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--slate-deep) !important;
  margin-bottom: 20px !important;
  line-height: 1.65 !important;
}
.sss-callout {
  background: var(--dark-bg);
  color: var(--dark-text) !important;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 20px 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  border-left: 4px solid var(--moss-mid);
}
.sss-callout strong {
  color: var(--moss-light);
  font-size: 15px;
}
.sss-fault-line {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--moss-deep) !important;
  margin-top: -4px !important;
  margin-bottom: 24px !important;
}
.sss-symptoms {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.symptoms-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.symptoms-list li {
  font-size: 13px;
  color: var(--slate-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  line-height: 1.4;
}
.symptoms-list li:last-child { border-bottom: none; }

/* Responsive SSS */
@media (max-width: 900px) {
  .sss-grid { grid-template-columns: 1fr; gap: 36px; }
  .sss-symptoms { position: static; }
}
@media (max-width: 640px) {
  .sss-big-question { font-size: clamp(22px, 7vw, 34px); }
  .sss-big-sub { font-size: clamp(17px, 5vw, 24px); }
}

/* =========================================
   THE HIDDEN COST
   ========================================= */
.hidden-cost-section {
  background: var(--slate-frost);
  padding: 80px 0 60px;
}
.hidden-cost-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
/* Photo column */
.hc-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hc-photo-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(74,98,116,0.18), 0 2px 12px rgba(74,98,116,0.10);
  border: 5px solid var(--white);
  outline: 2px solid var(--slate-pale);
  aspect-ratio: 5/4;
  width: 100%;
  max-width: 420px;
}
.hc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Content column */
.hidden-cost-inner {
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.hidden-cost-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--slate-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 12px 0 20px;
}
.hidden-cost-sub {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 100%;
  margin: 0 0 48px;
}
.hidden-cost-stats {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 28px;
}
.hc-stat {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
}
.hc-stat:first-child { padding-left: 0; }
.hc-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 80px;
}
.hc-stat-number {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--moss-deep);
  line-height: 1.15;
  margin-bottom: 10px;
  white-space: nowrap;
}
.hc-sup {
  font-size: 11px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  color: var(--slate-mid);
}
.hc-stat-label {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
}
.hc-results-disclaimer {
  font-size: 11px;
  color: var(--slate-mid);
  line-height: 1.6;
  text-align: center;
  margin: 20px auto 0;
  max-width: 640px;
  opacity: 0.7;
  font-style: italic;
}
.hidden-cost-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hidden-cost-layout { grid-template-columns: 1fr; gap: 40px; }
  .hc-photo-frame { max-width: 460px; aspect-ratio: 5/4; margin: 0 auto; }
  .hidden-cost-inner { text-align: center; }
  .hidden-cost-sub { margin: 0 auto 48px; }
  .hidden-cost-stats { justify-content: center; }
  .hc-stat:first-child { padding-left: 24px; }
}
@media (max-width: 640px) {
  .hidden-cost-stats { flex-direction: column; align-items: center; gap: 32px; }
  .hc-stat-divider { display: none; }
  .hc-stat { padding: 0; }
  .hc-photo-frame { aspect-ratio: 5/4; max-width: 320px; }
}

/* =========================================
   SOLUTION / 6 FOCUS FACTORS
   ========================================= */
.solution-section {
  padding: 100px 0;
  background: var(--dark-bg);
}
.solution-section .section-label {
  color: var(--moss-light);
  background: rgba(107,142,107,.15);
  border-color: rgba(107,142,107,.25);
}
.solution-section .section-title { color: var(--white); }
.solution-section .section-subtitle { color: var(--dark-subtle); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.focus-card {
  background: rgba(235,242,247,.05);
  border: 1px solid rgba(235,242,247,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px 20px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.focus-card:hover {
  background: rgba(235,242,247,.09);
  border-color: rgba(107,142,107,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.focus-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--moss-light);
  line-height: 1;
  margin-bottom: 10px;
}
.focus-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.focus-body {
  font-size: 14px;
  color: var(--dark-subtle);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.focus-replaces {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss-light);
  background: rgba(168,196,168,.12);
  border: 1px solid rgba(168,196,168,.3);
  border-radius: 4px;
  padding: 4px 10px;
  margin-top: auto;
}
.focus-replaces strong {
  color: var(--moss-light);
  font-weight: 800;
}

/* =========================================
   PROCESS / SPRINT TIMELINE
   ========================================= */
.process-section {
  padding: 100px 0 20px;
  background: linear-gradient(180deg, var(--slate-frost) 0%, var(--white) 100%);
}
.process-section--quarterly {
  padding: 60px 0 80px;
}
.sprint-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin: 48px 0 0;
}
.sprint-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--moss), var(--moss-mid), var(--moss-light));
}
.sprint-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}
.step-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--moss-pale);
}
.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  transition: var(--transition);
}
.step-content:hover {
  box-shadow: var(--shadow);
  border-color: var(--moss-light);
}
.step-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 6px;
}
.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* =========================================
   PATH CONNECTOR — Sprint → Quarterly
   (Mirrors the logo's swooping arrow)
   ========================================= */
/* Transition bar replacing path connector — full bleed */
.transition-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  padding: 32px 64px;
  gap: 0;
  width: 100%;
}
.transition-stat {
  flex: 1;
  text-align: center;
}
.transition-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.transition-x {
  font-size: 32px;
  font-weight: 300;
}
.transition-label {
  font-size: 12px;
  color: var(--dark-subtle);
  line-height: 1.5;
}
.transition-divider {
  width: 1px;
  background: rgba(235,242,247,.15);
  align-self: stretch;
  min-height: 60px;
  margin: 0 32px;
}
.transition-center {
  flex: 2;
  text-align: center;
}
.transition-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.transition-sub {
  font-size: 13px;
  color: var(--moss-light);
  font-style: italic;
}
@media (max-width: 640px) {
  .transition-bar { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .transition-divider { width: 100%; height: 1px; min-height: unset; margin: 0; }
}

.path-connector-wrap {
  position: relative;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.path-connector-svg {
  width: 100%;
  max-width: 680px;
  height: 90px;
  display: block;
  margin: 0 auto;
  overflow: visible;
}
/* Animated draw-on effect */
.brand-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw-path 1.6s cubic-bezier(.4,0,.2,1) forwards;
  animation-play-state: paused;
}
.brand-path.visible {
  animation-play-state: running;
}
@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}
.path-label-text {
  opacity: 0;
  animation: fade-in-label 0.5s ease 1.4s forwards;
  animation-play-state: paused;
}
.path-label-text.visible {
  animation-play-state: running;
}
@keyframes fade-in-label {
  to { opacity: 0.85; }
}
.path-connector-label {
  margin-top: -8px;
  margin-bottom: 16px;
  text-align: center;
}
.path-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--moss-deep);
  background: var(--moss-frost);
  border: 1px solid var(--moss-pale);
  padding: 5px 16px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(6px);
  animation: slide-up-pill 0.5s ease 1.6s forwards;
  animation-play-state: paused;
}
.path-pill.visible {
  animation-play-state: running;
}
@keyframes slide-up-pill {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive: shrink path on mobile */
@media (max-width: 640px) {
  .path-connector-svg { height: 60px; }
  .path-label-text { display: none; }
}

/* =========================================
   QUARTERLY PLANNING CYCLE DIAGRAM
   ========================================= */
.quarterly-section {
  padding: 0;
  margin-top: 0;
}
.quarterly-header {
  text-align: center;
  margin-bottom: 48px;
}
.quarterly-section h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
}
.quarterly-section > .quarterly-header > p {
  color: var(--slate-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 15px;
}

/* --- Two-column layout: cards left, photo right --- */
.quarterly-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.quarterly-cards-col {
  display: flex;
  flex-direction: column;
}
.quarterly-photo-col {
  position: sticky;
  top: 100px;
}
.qc-photo-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(74,98,116,0.13);
  border: 3px solid var(--white);
  outline: 1px solid var(--slate-pale);
  aspect-ratio: 3/4;
  width: 100%;
  opacity: 0.88;
}
.qc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (max-width: 900px) {
  .quarterly-layout { grid-template-columns: 1fr; }
  .quarterly-photo-col { display: none; }
}

/* --- Stacked 2-col card grid --- */
.quarterly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.qc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--moss) 0%, var(--moss-light) 100%);
}
.qc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.qc-quarter-label {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 4px;
}
.qc-season {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 14px;
}
.qc-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
  line-height: 1.25;
}
.qc-body {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.7;
}

@media (max-width: 540px) {
  .quarterly-grid { grid-template-columns: 1fr; }
  .quarterly-section { padding: 0; }
}

/* =========================================
   ICP SECTION
   ========================================= */
.icp-section {
  padding: 100px 0;
  background: var(--light-gray);
}
/* ICP section header — left-aligned */
.icp-header {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.icp-header .section-label,
.icp-header .section-title,
.icp-header .section-subtitle {
  text-align: left;
}
.icp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
/* Content column — left aligned */
.icp-content-col {
  min-width: 0;
}
/* Photo column — right side, bigger */
.icp-photo-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
.icp-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(74,98,116,0.18), 0 3px 12px rgba(74,98,116,0.10);
  border: 4px solid var(--white);
  outline: 1px solid var(--slate-pale);
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
}
.icp-family-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.icp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.icp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin: 0 0 28px;
}
.icp-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.icp-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.icp-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--slate-mid);
  line-height: 1.45;
}
.icp-list li:last-child { border-bottom: none; }
.icp-list.fit li::before {
  content: '✓ ';
  color: var(--moss-deep);
  font-weight: 700;
}
.icp-list.not-fit li::before {
  content: '— ';
  color: var(--slate-light);
}
.icp-cta {
  text-align: center;
  margin-top: 28px;
}
.icp-cta p {
  font-size: 16px;
  color: var(--slate-mid);
  margin-bottom: 20px;
}

/* ICP Photo Cards */
.icp-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
  text-align: left;
}
.icp-photo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icp-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--moss-light);
}
.icp-photo-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.icp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.icp-photo-card:hover .icp-photo {
  transform: scale(1.04);
}
.icp-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,62,74,.7) 0%, transparent 100%);
  padding: 20px 14px 12px;
}
.icp-photo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--moss);
  padding: 3px 10px;
  border-radius: 100px;
}
.icp-photo-body {
  padding: 16px 18px 20px;
}
.icp-persona-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 6px;
}
.icp-photo-body p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 1024px) {
  .icp-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .icp-photo-grid { grid-template-columns: 1fr; }
  .icp-photo-wrap { height: 200px; }
}

/* =========================================
   MY STORY
   ========================================= */
.my-story-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--slate-frost) 0%, var(--moss-frost) 100%);
}
.my-story-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
/* Oval photo column */
.my-story-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.my-story-photo-oval {
  width: 390px;
  height: 480px;
  border-radius: 50% / 40%;
  overflow: hidden;
  border: 4px solid var(--moss-pale);
  box-shadow: 0 8px 32px rgba(74,98,116,.12);
  background: var(--slate-frost);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.my-story-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.my-story-photo-icon {
  font-size: 64px;
  opacity: .35;
  display: block;
}
.my-story-photo-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-light);
}
/* Content column */
.my-story-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--slate-deep);
  line-height: 1.2;
  margin: 12px 0 24px;
  letter-spacing: -0.01em;
}
.my-story-content p {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.my-story-content .btn {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .my-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .my-story-photo-oval {
    width: 200px;
    height: 245px;
    margin: 0 auto;
  }
}

/* =========================================
   PRICING PREVIEW
   ========================================= */
.pricing-preview {
  padding: 100px 0 50px;
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-frost) 100%);
  text-align: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--moss);
  box-shadow: 0 0 0 2px rgba(107,142,107,.2), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--moss);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-type {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--slate-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-amount span {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--slate-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
.pricing-asterisk {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.6;
  text-align: center;
  opacity: .85;
}
.pf-asterisk {
  font-size: 12px;
  color: var(--slate-light);
  line-height: 1.65;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--slate-frost);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-width: 820px;
}

/* =========================================
   FULL PRICING (Services Page)
   ========================================= */
.services-section { padding: 80px 0; }
.services-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.services-intro p {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.pricing-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pricing-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card-full:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pf-badge {
  background: var(--moss);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px;
}
/* Badge that sits BELOW the dark header box */
.pf-badge-below {
  background: var(--moss-frost);
  color: var(--moss-deep);
  border-left: 4px solid var(--moss);
  border-bottom: 1px solid var(--moss-pale);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 18px 36px;
}
.pf-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-deeper) 100%);
  padding: 32px 36px;
  color: var(--white);
}
/* Business header — same padding as personal so headers align perfectly */
.pf-header-business {
  padding-bottom: 32px;
}
.pf-type {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 8px;
}
.pf-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.pf-price span {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-subtle);
}
.pf-sub {
  font-size: 14px;
  color: var(--dark-subtle);
}
.pf-body {
  padding: 36px;
  flex: 1;
}
.pf-phase { margin-bottom: 32px; }
.pf-phase h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 8px;
}
.pf-phase p {
  font-size: 14px;
  color: var(--slate-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}
.pf-phase ul { padding-left: 4px; }
.pf-phase ul li {
  font-size: 13px;
  color: var(--slate-mid);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.pf-phase ul li:last-child { border-bottom: none; }
.pf-phase ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--moss-deep);
  font-size: 12px;
}
.pf-includes h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 2px solid var(--border);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.includes-grid span {
  font-size: 13px;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pf-footer {
  padding: 28px 36px;
  border-top: 1px solid var(--border);
  background: var(--moss-frost);
}

/* Sprint add-on block — one extra week, no background color */
.pf-sprint-addon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border-left: 3px solid var(--moss);
  padding: 14px 0 14px 20px;
  margin-top: 12px;
}
.pf-sprint-addon-week {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss-deep);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 56px;
}
.pf-sprint-addon-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pf-sprint-addon-content strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
}
.pf-sprint-addon-content span {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
  font-style: italic;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.comparison-table thead tr {
  background: var(--dark-bg);
  color: var(--white);
}
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}
.comparison-table th.highlight-col {
  background: var(--moss);
  color: var(--white);
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--slate-mid);
  vertical-align: middle;
}
.comparison-table td.highlight-col {
  background: var(--moss-frost);
  font-weight: 600;
  color: var(--moss-deep);
}
.comparison-table tbody tr:hover td {
  background: var(--slate-frost);
}
.comparison-table tbody tr:hover td.highlight-col {
  background: rgba(107,142,107,.12);
}

/* =========================================
   NEXT THREE STEPS
   ========================================= */
.next-steps-section {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, var(--slate-frost) 0%, var(--white) 100%);
  text-align: center;
}
.next-steps-title {
  margin-bottom: 56px;
}
.next-steps-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0 16px;
  align-items: center;
}
.next-step {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-pale);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(52,72,89,0.07);
}
.next-step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--moss-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.next-step-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.next-step-body {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.7;
}
.next-steps-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.next-steps-section .section-label {
  color: var(--moss-deep);
}
.next-steps-section .section-title {
  color: var(--slate-deep);
}
/* Hero arrow watermark */
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
/* Next step arrow connectors */
.next-step-arrow {
  width: 80px;
  height: 32px;
  display: block;
  align-self: center;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .next-steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .next-step-arrow { display: none; }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 48px 0;
  background: var(--white);
}
.faq-section .section-title {
  margin-bottom: 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-deep);
  line-height: 1.25;
  transition: color .2s ease;
}
.faq-q:hover {
  color: var(--moss);
}
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-mid);
  transition: all .25s ease;
  line-height: 1;
}
.faq-open .faq-icon {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-open .faq-q {
  color: var(--moss);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.6;
  padding-bottom: 4px;
}
.faq-a p:last-child {
  padding-bottom: 12px;
}
.faq-link {
  color: var(--moss);
  font-weight: 600;
  text-decoration: none;
}
.faq-link:hover {
  text-decoration: underline;
}


/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-deeper) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(107,142,107,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.cta-inner p {
  font-size: 17px;
  color: var(--dark-subtle);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-fine {
  font-size: 13px !important;
  color: rgba(235,242,247,.4) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
  padding: 156px 0 72px;
  background: linear-gradient(160deg, var(--white) 0%, var(--slate-frost) 60%, var(--moss-frost) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-content { max-width: 640px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--slate-deep);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--slate-mid);
  line-height: 1.7;
}
.om-hero {
  background: linear-gradient(160deg, var(--white) 0%, var(--slate-frost) 50%, var(--moss-frost) 100%);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
/* ── MY FAMILY SECTION ── */
.family-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate-frost) 0%, #eef3ef 100%);
}
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.family-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.family-photo-main {
  grid-column: 1 / -1;
}
.family-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(44, 62, 74, 0.15);
}
.family-photo-main .family-img {
  height: 340px;
}
.family-photo-secondary .family-img {
  height: 200px;
}
.family-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 20px;
  line-height: 1.2;
}
.family-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-bg);
  font-weight: 500;
  margin-bottom: 16px;
}
.family-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-mid);
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .family-grid { grid-template-columns: 1fr; gap: 40px; }
  .family-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .family-photo-main .family-img { height: 260px; }
  .family-photo-secondary .family-img { height: 160px; }
}

/* ── ABOUT SECTION ── */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-photo-placeholder {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-deeper) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  color: var(--white);
  margin-bottom: 24px;
}
.photo-icon { font-size: 64px; margin-bottom: 16px; }
.photo-caption {
  font-size: 14px;
  color: var(--dark-subtle);
  line-height: 1.5;
}
.photo-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-bg);
  margin-top: 14px;
  letter-spacing: 0.01em;
  width: 100%;
  display: block;
}
.about-photo-oval {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--moss-pale);
  box-shadow: 0 8px 32px rgba(74,98,116,.15);
  margin-bottom: 24px;
}
.about-photo-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
}
.cred-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--dark-bg);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.story-credentials {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 20px 0;
}
.story-credentials .credential {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  text-align: center;
}
.about-content-col h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-lead {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}
.about-content-col p {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content-col h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-deep);
  margin: 32px 0 14px;
}
.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.values-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--moss-light);
}
.value-icon { display: none; }
.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* =========================================
   OPPORTUNITY MAP PAGE
   ========================================= */
.om-section { padding: 80px 0; }
.om-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.om-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 28px;
}
.om-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-deep);
  margin: 36px 0 20px;
}
.om-deliverables {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.deliverable {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.deliverable:hover {
  border-color: var(--moss-light);
  box-shadow: var(--shadow);
}
.del-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--moss-deep);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.deliverable h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 6px;
}
.deliverable p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
}
.om-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 24px;
}
.om-step {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.om-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}
.om-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(93,130,93,.25);
}
.om-step-line {
  flex: 1;
  width: 2px;
  background: var(--moss-pale);
  margin: 4px 0;
  min-height: 28px;
}
.om-step-body {
  flex: 1;
  padding-bottom: 28px;
}
.om-step-last .om-step-body {
  padding-bottom: 0;
}
.om-step-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 4px;
  margin-top: 8px;
}
.om-step-body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 6px;
}
.om-step-body p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin: 0;
}
.om-guarantee {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--moss-frost);
  border: 1px solid var(--moss-pale);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}
.guarantee-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--moss-deep);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.om-guarantee strong {
  display: block;
  font-size: 15px;
  color: var(--slate-deep);
  margin-bottom: 8px;
}
.om-guarantee p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.6;
}
/* Form Card */
.om-form-col { position: static; }
.om-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.om-form-card::before { display: none; }
.om-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 8px;
}
.om-form-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.om-calendar { width: 100%; }
.om-calendar iframe { width: 100%; height: 700px; border: none; display: block; }
.om-optin {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--slate-frost);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.om-optin-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.om-optin-check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--moss);
  cursor: pointer;
}
.om-optin-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.om-optin-text strong {
  color: var(--slate);
  font-weight: 600;
}
.om-optin-privacy {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--moss);
  font-weight: 600;
  text-decoration: underline;
}
.om-optin-privacy:hover { color: var(--moss-mid); }
.om-privacy-link {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
}
.om-privacy-link a {
  color: var(--moss);
  font-weight: 600;
  text-decoration: underline;
}
.om-privacy-link a:hover { color: var(--moss-mid); }
.om-stay-card {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.om-stay-card::before { display: none; }
.om-stay-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.om-stay-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--moss-deep);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.om-stay-header h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-deep);
  margin: 0 0 6px;
}
.om-stay-header p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.om-stay-form { width: 100%; }
.om-stay-form iframe { width: 100%; border: none; display: block; }
.om-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: var(--transition-fast);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--moss);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107,142,107,.12);
}
.form-fine {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}
/* Success */
.form-success {
  text-align: center;
  padding: 32px 0;
}
.success-icon { font-size: 48px; margin-bottom: 14px; }
.form-success h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
}
/* FAQ */
.om-faq {
  padding: 80px 0;
  background: var(--light-gray);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--moss-light);
  box-shadow: var(--shadow);
}
.faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-deep);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-deeper);
  color: var(--dark-text);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--dark-subtle);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-tagline {
  font-style: italic;
  color: var(--moss-light) !important;
  margin-top: 12px !important;
}
.footer-links h5,
.footer-contact h5,
.footer-disclosures-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 18px;
}
.footer-links ul,
.footer-disclosures-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-links a,
.footer-disclosures-col a {
  font-size: 14px;
  color: var(--dark-subtle);
  transition: var(--transition-fast);
}
.footer-links a:hover,
.footer-disclosures-col a:hover { color: var(--white); }
.footer-contact p {
  font-size: 13px;
  color: var(--dark-subtle);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(235,242,247,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(235,242,247,.4);
}
.footer-disclaimer {
  font-size: 11px !important;
  color: rgba(235,242,247,.3) !important;
  max-width: 420px;
  line-height: 1.5 !important;
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; max-width: 720px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-photos-stack { width: 360px; height: 440px; }
  .hero-photo-back { width: 290px; height: 240px; }
  .hero-photo-front { width: 310px; height: 250px; }
  .sss-grid { grid-template-columns: 1fr; }
  .sss-symptoms { position: static; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-full { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { display: flex; flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .about-photo-placeholder { width: 100%; }
  .om-grid { grid-template-columns: 1fr; }
  .om-form-col { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-disclosures-col { grid-column: auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 18px; font-size: 15px; border-radius: var(--radius-sm); }
  .nav-links .nav-cta { margin-top: 8px; }
  .problem-grid { flex-wrap: wrap; }
  .problem-item { flex: 0 0 50%; padding: 20px 20px; }
  .problem-item--divided::before { display: none; }
  .problem-item:nth-child(n+3) { border-top: 1px solid rgba(235,242,247,0.25); }
  .problem-item:nth-child(even) { border-left: 2px solid rgba(235,242,247,0.35); }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-photos-stack { width: 300px; height: 380px; }
  .hero-photo-back { width: 240px; height: 200px; }
  .hero-photo-front { width: 260px; height: 210px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .icp-layout { grid-template-columns: 1fr; gap: 40px; }
  .icp-header { text-align: center; }
  .icp-header .section-label, .icp-header .section-title, .icp-header .section-subtitle { text-align: center; }
  .icp-cta { text-align: center; }
  .icp-photo-col { display: none; }
  .icp-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .sprint-timeline::before { left: 18px; }
  .step-dot { width: 38px; height: 38px; font-size: 13px; }
  .about-cta { flex-direction: column; }
}

@media (max-width: 480px) {
  .problem-grid { flex-direction: column; }
  .problem-item { flex: 1 1 100%; padding: 16px 20px; }
  .problem-item--divided::before { display: none; }
  .problem-item:nth-child(n+2) { border-top: 2px solid rgba(235,242,247,0.35); border-left: none; }
  .problem-item:nth-child(even) { border-left: none; }
  .focus-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .hero { padding: 108px 20px 64px; }
  .hero-headline { font-size: 30px; }
  .section-title { font-size: 26px; }
  .sss-section, .solution-section, .process-section,
  .icp-section, .pricing-preview, .final-cta { padding: 72px 0; }
  .om-form-card { padding: 28px 24px; }
}

/* ── MOBILE HORIZONTAL OVERFLOW FIX ── */
@media (max-width: 768px) {
  /* Prevent any element from exceeding viewport width */
  .container,
  section,
  .navbar,
  .nav-container,
  .hero,
  .hero-content,
  .hero-cta-group,
  .hidden-cost-section,
  .hidden-cost-inner,
  .hidden-cost-stats,
  .problem-bar,
  .problem-grid,
  .solution-section,
  .focus-grid,
  .process-section,
  .sprint-timeline,
  .quarterly-section,
  .quarterly-grid,
  .icp-section,
  .icp-grid,
  .pricing-preview,
  .next-steps-section,
  .next-steps-grid,
  .family-section,
  .family-grid,
  .about-section,
  .about-grid,
  .faq-section,
  .faq-list,
  .final-cta,
  .footer,
  .footer-grid {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Ensure hc-stat numbers don't force overflow */
  .hc-stat-number { white-space: normal; font-size: clamp(20px, 5vw, 32px); }
  .hc-stat { min-width: 0; padding: 0 8px; }

  /* Prevent buttons from overflowing their container */
  .btn { white-space: normal; word-break: break-word; }

  /* Fix hero CTA buttons stacking cleanly */
  .hero-cta-group .btn { width: 100%; text-align: center; }

  /* Prevent any absolutely/relatively positioned elements from causing overflow */
  .hero::before,
  .hero::after { max-width: 100vw; overflow: hidden; }
}
