:root {
  --mint: #9FE1CB;
  --teal: #1D9E75;
  --mid: #0F6E56;
  --forest: #085041;
  --deep: #04342C;
  --sage: #F0FBF7;
  --sage2: #E1F5EE;
  --white: #ffffff;
  --charcoal: #2C2C2A;
  --muted: #5F5E5A;
  --light: #D3D1C7;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--sage2);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-mark {
  width: 36px; height: 36px; background: var(--mint);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--deep); letter-spacing: -0.5px;
}
.nav-wordmark span { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--charcoal); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--mid) !important; }
.cta-short { display: none; }

/* Hamburger toggle — hidden on desktop, shown under 768px */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--deep); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage2) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 40px 60px;
}
.hero-bg-circle1 {
  position: absolute; right: -120px; top: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: var(--mint); opacity: 0.45;
}
.hero-bg-circle2 {
  position: absolute; right: 80px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--teal); opacity: 0.18;
}
.hero-bg-circle3 {
  position: absolute; right: 300px; top: 80px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--teal); opacity: 0.15;
}
.hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--mint); }
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--sage2);
  color: var(--teal); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px; text-transform: uppercase;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  color: var(--deep); line-height: 1.05;
  margin-bottom: 24px; max-width: 700px;
}
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-sub {
  font-size: 18px; color: var(--muted);
  line-height: 1.7; max-width: 520px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-main {
  background: var(--teal); color: var(--white);
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-main:hover { background: var(--mid); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--teal);
  border: 1px solid var(--mint);
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--teal); background: var(--sage2); }
.hero-oneoff-link { margin: -32px 0 44px; }
.hero-oneoff-link a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  border-bottom: 1px dotted var(--mint);
  transition: color 0.2s, border-color 0.2s;
}
.hero-oneoff-link a:hover { color: var(--teal); border-color: var(--teal); }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; color: var(--teal); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--sage); border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--forest);
}
.proof-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage2); border: 1px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ── SECTION BASICS ── */
section { padding: 72px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  color: var(--teal); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px); color: var(--deep);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--mint); border-radius: 16px;
  padding: 40px; color: var(--deep);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--sage2);
}
.about-card-mark {
  width: 64px; height: 64px; background: var(--white);
  border-radius: 12px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.about-name { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--deep); margin-bottom: 4px; position: relative; z-index: 1; }
.about-role { font-size: 14px; color: var(--forest); margin-bottom: 20px; position: relative; z-index: 1; letter-spacing: 1px; }
.about-badges { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.about-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--deep);
}
.about-badge::before { content: '✦'; color: var(--teal); font-size: 10px; flex-shrink: 0; }
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--mint); border-radius: 12px;
  padding: 16px 20px; min-width: 140px;
  box-shadow: 0 8px 32px rgba(4,52,44,0.2);
}
.about-float-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--deep); }
.about-float-label { font-size: 11px; color: var(--forest); font-weight: 600; letter-spacing: 1px; margin-top: 2px; }
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-content strong { color: var(--deep); font-weight: 600; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--charcoal); line-height: 1.5;
}
.about-list li::before { content: '✦'; color: var(--teal); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.accreditation-block {
  margin-top: 32px;
  background: var(--sage);
  border: 1px solid var(--sage2);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
}
.accreditation-block .accred-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--deep);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.accreditation-block .accred-title::before { content: '🎓'; font-size: 18px; }
.accreditation-block p {
  font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0;
}
.accred-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.accred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--mint);
  color: var(--forest); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; letter-spacing: 0.3px;
}
.accred-badge::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── DIRECTOR PHOTO CARD ── */
.director-photo-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; position: relative;
  box-shadow: 0 12px 40px rgba(4,52,44,0.14);
}
.director-photo-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.director-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.06) contrast(1.02);
}
.director-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,52,44,0) 42%, rgba(4,52,44,0.88) 100%);
}
.director-photo-caption { position: absolute; left: 28px; right: 28px; bottom: 22px; z-index: 1; }
.director-photo-caption .about-name { color: var(--white); margin-bottom: 2px; }
.director-photo-caption .about-role { color: var(--mint); margin-bottom: 0; }
.director-photo-badges { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.director-photo-float {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  background: var(--teal); color: var(--white);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(4,52,44,0.28);
  text-align: center; line-height: 1.1;
}
.director-photo-float .df-num { font-family: 'DM Serif Display', serif; font-size: 20px; display: block; }
.director-photo-float .df-label { font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

/* ── FOUNDER STORY REAL-PHOTO TILE ── */
.founder-story-card.photo { position: relative; }
.founder-story-card.photo img { filter: saturate(1.08) contrast(1.03); }
.founder-story-card.photo .story-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,52,44,0) 48%, rgba(4,52,44,0.82) 100%);
}
.founder-story-card.photo .story-photo-caption {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1;
  color: var(--white); font-size: 13px; font-weight: 600; line-height: 1.4;
}
.founder-story-card.photo .story-photo-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--teal); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 20px;
}

/* ── SERVICES ── */
.services { background: var(--sage); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
  background: var(--white); border-radius: 16px;
  padding: 32px; border: 1px solid var(--sage2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(4,52,44,0.1); }
.service-card.featured {
  background: var(--mint); border-color: var(--teal);
}
.service-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute; top: 16px; right: 16px;
  background: var(--deep); color: var(--mint);
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 10px; border-radius: 20px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--sage2); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.service-card.featured .service-icon { background: var(--white); }
.service-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--deep); margin-bottom: 8px; }
.service-card.featured .service-name { color: var(--deep); }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.service-card.featured .service-desc { color: var(--forest); }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-features li { display: flex; gap: 8px; font-size: 14px; color: var(--charcoal); }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.service-card.featured .service-features li { color: var(--deep); }
.service-card.featured .service-features li::before { color: var(--forest); }
.service-price { margin-bottom: 24px; }
.service-price-main { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--deep); }
.service-card.featured .service-price-main { color: var(--deep); }
.service-price-period { font-size: 14px; color: var(--muted); }
.service-card.featured .service-price-period { color: var(--forest); }
.service-cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.service-cta-light { background: var(--sage); color: var(--teal); border: 1px solid var(--sage2); }
.service-cta-light:hover { background: var(--sage2); }
.service-cta-dark { background: var(--teal); color: var(--white); }
.service-cta-dark:hover { background: var(--mid); }

/* ── ONE-OFF DEEP DIVE ── */
.oneoff-divider {
  display: flex; align-items: center; gap: 18px;
  max-width: 1100px; margin: 56px auto 0;
}
.oneoff-divider::before, .oneoff-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--light);
}
.oneoff-divider span {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.oneoff-card {
  max-width: 1100px; margin: 32px auto 0;
  background: var(--white); border: 1px solid var(--sage2);
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr;
}
.oneoff-body { padding: 40px 44px; }
.oneoff-badge {
  display: inline-block; background: var(--sage2); color: var(--forest);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
.oneoff-body .service-name { font-size: 26px; margin-bottom: 10px; }
.oneoff-body .service-desc { max-width: 480px; margin-bottom: 22px; }
.oneoff-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.oneoff-list li { display: flex; gap: 8px; font-size: 14px; color: var(--charcoal); }
.oneoff-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.oneoff-panel {
  background: var(--mint); padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.oneoff-panel::before {
  content: ''; position: absolute; right: -50px; top: -50px;
  width: 180px; height: 180px; border-radius: 50%; background: var(--sage2);
}
.oneoff-price { position: relative; z-index: 1; margin-bottom: 8px; }
.oneoff-price-main { font-family: 'DM Serif Display', serif; font-size: 40px; color: var(--deep); }
.oneoff-price-period { font-size: 13px; color: var(--forest); display: block; margin-top: 2px; }
.oneoff-credit {
  position: relative; z-index: 1;
  font-size: 13px; color: var(--forest); line-height: 1.6;
  margin-bottom: 24px;
}
.oneoff-panel .service-cta { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .oneoff-card { grid-template-columns: 1fr; }
  .oneoff-body { padding: 32px 28px; }
  .oneoff-panel { padding: 28px; }
}

/* ── HOMEPAGE RESULTS SNAPSHOT ── */
.results-snapshot { background: var(--white); padding-top: 56px; padding-bottom: 56px; }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 44px;
}
.result-card {
  background: var(--sage); border: 1px solid var(--sage2); border-radius: 14px;
  padding: 26px 22px; text-decoration: none;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.result-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(4,52,44,0.08); border-color: var(--mint); }
.result-stat { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--teal); line-height: 1; }
.result-desc { font-size: 13.5px; color: var(--charcoal); line-height: 1.5; }
.result-client { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; margin-top: 4px; }
.results-cta { text-align: center; margin-top: 36px; }
.results-cta a { font-size: 14px; font-weight: 600; color: var(--teal); text-decoration: none; border-bottom: 1px dotted var(--teal); }
.results-cta a:hover { color: var(--mid); border-color: var(--mid); }
@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2; text-decoration: none;
}
.hero-scroll-hint span {
  font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-scroll-hint svg { animation: heroScrollBounce 1.8s ease-in-out infinite; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 768px) {
  .hero-scroll-hint { display: none; }
}

/* ── DIAGNOSTIC ── */
.diagnostic { background: var(--sage); }
.diag-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 0; max-width: 760px; }
.diag-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.diag-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; color: var(--deep); }
.diag-icon { font-size: 20px; width: 36px; flex-shrink: 0; }
.rag-guide { background: var(--white); border-radius: 12px; padding: 24px 28px; border: 1px solid var(--sage2); margin-bottom: 28px; }
.rag-title { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--deep); margin-bottom: 16px; border-bottom: 2px solid var(--sage2); padding-bottom: 10px; }
.rag-bands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rag-band { border-radius: 8px; padding: 12px 10px; text-align: center; }
.rag-band.red { background: #FEE2E2; border-top: 3px solid #EF4444; }
.rag-band.amber { background: #FEF3C7; border-top: 3px solid #F59E0B; }
.rag-band.yellow { background: #FEFCE8; border-top: 3px solid #EAB308; }
.rag-band.green { background: #DCFCE7; border-top: 3px solid #22C55E; }
.rag-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 4px; }
.rag-band.red .rag-label { color: #B91C1C; }
.rag-band.amber .rag-label { color: #B45309; }
.rag-band.yellow .rag-label { color: #854D0E; }
.rag-band.green .rag-label { color: #15803D; }
.rag-desc { display: block; font-size: 11px; color: var(--muted); }
.diag-cta-block { background: var(--mint); border-radius: 12px; padding: 24px 28px; color: var(--deep); }
.diag-cta-heading { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--deep); margin-bottom: 8px; }
.diag-cta-block p { font-size: 14px; color: var(--forest); margin: 0; }
.diag-visual { position: relative; }
@media (max-width: 768px) {
  .rag-bands { grid-template-columns: repeat(2, 1fr); }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--sage); border-radius: 16px; padding: 32px;
  border: 1px solid var(--sage2); position: relative;
}
.testimonial-card.featured { background: var(--mint); border-color: var(--teal); }
.testimonial-stars { color: var(--teal); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card.featured .testimonial-stars { color: var(--deep); }
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; line-height: 1.6; color: var(--deep);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card.featured .testimonial-quote { color: var(--deep); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mint); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 14px;
  color: var(--deep); flex-shrink: 0;
}
.testimonial-card.featured .testimonial-avatar { background: var(--white); color: var(--deep); }
.testimonial-avatar-logo { background: var(--white); padding: 4px; overflow: hidden; }
.testimonial-card.featured .testimonial-avatar-logo { background: var(--white); }
.testimonial-avatar-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.testimonial-card.wide { grid-column: span 3; }
.testimonials-grid-single { max-width: 900px; margin: 40px auto 0; }
.testimonials-grid-two { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.testimonials-grid-three { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
@media (max-width: 1100px) {
  .testimonials-grid-three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .testimonial-card.wide { grid-column: span 1; }
  .testimonials-grid-two { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid-three { grid-template-columns: 1fr; }
}

/* Side-by-side testimonial layout (logo beside the quote) */
.testimonial-side-by-side {
  display: flex; flex-direction: column; gap: 18px; padding: 28px 28px 24px; height: 100%;
}
.testimonial-side-logo {
  flex-shrink: 0; width: 100%; height: 88px;
  background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; overflow: hidden;
}
.testimonial-side-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.testimonial-side-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.testimonial-side-content .testimonial-stars { margin-bottom: 8px; }
.testimonial-quote-compact { font-size: 14px; line-height: 1.5; margin-bottom: 14px; flex: 1; }
.testimonials-grid-three .testimonial-quote-compact { font-size: 13px; line-height: 1.48; }
.testimonial-side-content .testimonial-author { margin-top: auto; }
@media (min-width: 701px) and (max-width: 900px) {
  .testimonial-side-logo { width: 160px; height: 110px; }
}
@media (max-width: 640px) {
  .testimonials-grid-three .testimonial-quote-compact { font-size: 14px; }
}

/* Readable testimonial layout — logo-on-top, generous type, clean stack.
   Designed to read comfortably at any width, mobile included. */
.testimonials-grid-readable {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px;
}
.testimonial-card-readable {
  background: var(--sage); border: 1px solid var(--sage2); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.testimonial-card-readable .testimonial-top {
  display: flex; align-items: center; gap: 16px;
}
.testimonial-card-readable .testimonial-logo {
  flex-shrink: 0; width: 76px; height: 76px; border-radius: 10px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  padding: 8px; overflow: hidden;
}
.testimonial-card-readable .testimonial-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.testimonial-card-readable .testimonial-top-text { min-width: 0; }
.testimonial-card-readable .testimonial-name {
  font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--deep); line-height: 1.3;
}
.testimonial-card-readable .testimonial-stars {
  color: var(--teal); font-size: 15px; letter-spacing: 2px; margin-top: 4px;
}
.testimonial-card-readable .testimonial-quote-readable {
  font-size: 16px; line-height: 1.75; color: var(--deep); margin: 0;
}
.testimonial-card-readable .testimonial-quote-readable::before { content: "\201C"; }
.testimonial-card-readable .testimonial-quote-readable::after { content: "\201D"; }
@media (max-width: 900px) {
  .testimonials-grid-readable { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .testimonial-card-readable { padding: 24px 20px; }
  .testimonial-card-readable .testimonial-logo { width: 60px; height: 60px; }
  .testimonial-card-readable .testimonial-name { font-size: 17px; }
  .testimonial-card-readable .testimonial-quote-readable { font-size: 15px; line-height: 1.7; }
}

/* Compact page-header / CTA variants — used on pages where the
   whole route should fit closer to a single viewport. */
.page-header-compact { padding: 130px 40px 40px; }
.page-header-compact .page-header-sub { max-width: 620px; }
.testimonials-compact { padding-top: 0; padding-bottom: 28px; }
.page-cta-compact { padding: 36px 40px; }
.page-cta-compact .page-cta-inner { max-width: 560px; }
.page-cta-compact h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 6px; }
.page-cta-compact p { margin-bottom: 16px; font-size: 14px; }
@media (max-width: 768px) {
  .page-header-compact { padding: 110px 20px 32px; }
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--deep); }
.testimonial-card.featured .testimonial-name { color: var(--deep); }
.testimonial-role { font-size: 12px; color: var(--muted); }
.testimonial-card.featured .testimonial-role { color: var(--forest); }

/* ── CREDENTIALS ── */
.credentials { background: var(--sage); padding: 80px 40px; }
.creds-inner { max-width: 1100px; margin: 0 auto; }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.cred-box {
  background: var(--white); padding: 32px 24px; text-align: center;
  border: 1px solid var(--sage2);
}
.cred-box:first-child { border-radius: 16px 0 0 16px; }
.cred-box:last-child { border-radius: 0 16px 16px 0; }
.cred-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--teal); line-height: 1; }
.cred-label { font-size: 12px; color: var(--muted); letter-spacing: 1.5px; margin-top: 8px; text-transform: uppercase; }

/* ── DISCOVERY CALL ── */
.discovery { background: var(--teal); padding: 100px 40px; position: relative; overflow: hidden; }
.discovery::before {
  content: ''; position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--mid); opacity: 0.5;
}
.discovery::after {
  content: ''; position: absolute;
  left: -60px; bottom: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--forest); opacity: 0.4;
}
.discovery-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.discovery h2 { font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-bottom: 16px; }
.discovery p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 40px; }
.discovery-form {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 32px;
}
.calendly-card {
  background: var(--white); border-radius: 18px;
  padding: 32px 28px 12px;
  box-shadow: 0 20px 60px rgba(4,52,44,0.28);
}
.calendly-card-head { max-width: 520px; margin: 0 auto 20px; }
.calendly-badge {
  display: inline-block; background: var(--sage2); color: var(--forest);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.calendly-card-head h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--deep); margin-bottom: 8px; }
.calendly-card-head p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.calendly-inline-widget { border-radius: 12px; overflow: hidden; }
@media (max-width: 640px) {
  .calendly-card { padding: 24px 14px 6px; }
  .calendly-inline-widget { min-width: 260px !important; height: 780px !important; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.form-field input, .form-field select {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 12px 16px; color: var(--white);
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus, .form-field select:focus { border-color: var(--mint); }
.form-field select option { background: var(--deep); color: var(--white); }
.form-submit {
  width: 100%; background: var(--white); color: var(--teal);
  border: none; border-radius: 8px; padding: 16px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--mint); transform: translateY(-1px); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ── FOOTER ── */
footer {
  background: var(--sage); padding: 60px 40px 32px;
  border-top: 1px solid var(--sage2);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--deep); margin-bottom: 16px;
}
.footer-brand .footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; color: var(--teal); text-decoration: none; }
.footer-col h4 { font-size: 12px; color: var(--forest); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--sage2);
  padding-top: 24px; display: flex; flex-direction: column; gap: 16px;
}
.footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: var(--sage2); border: 1px solid var(--mint);
  color: var(--forest); font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
}

/* ── STICKY SCROLL CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--white); border-top: 2px solid var(--teal);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(4,52,44,0.12);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { color: var(--deep); font-size: 15px; font-weight: 500; }
.sticky-cta-text strong { color: var(--teal); }
.sticky-cta-btn {
  background: var(--teal); color: var(--white);
  padding: 10px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.sticky-cta-btn:hover { background: var(--mid); }
.sticky-cta-spaces {
  background: var(--sage2); border: 1px solid var(--mint);
  color: var(--forest); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; white-space: nowrap;
}

/* ── RISK REVERSAL BAND ── */
.risk-band {
  background: var(--sage); border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.risk-item { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 200px; }
.risk-icon { font-size: 28px; }
.risk-label { font-size: 13px; font-weight: 600; color: var(--forest); line-height: 1.4; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.faq-item {
  border: 1px solid var(--sage2); border-radius: 12px;
  padding: 24px 28px; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(29,158,117,0.08); }
.faq-q {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  color: var(--deep); margin-bottom: 12px;
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
}
.faq-q::after { content: '→'; color: var(--teal); font-size: 18px; flex-shrink: 0; font-family: 'DM Sans', sans-serif; margin-top: 2px; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-btns { animation: fadeUp 0.6s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.6s 0.4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-right { gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--white);
    border-bottom: 1px solid var(--sage2);
    box-shadow: 0 16px 32px rgba(4,52,44,0.12);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a {
    width: 100%; padding: 14px 20px;
    border-bottom: 1px solid var(--sage2);
    font-size: 15px;
  }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-box:first-child { border-radius: 16px 0 0 0; }
  .cred-box:last-child { border-radius: 0 0 16px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-row { flex-direction: column; gap: 16px; text-align: center; }
  .proof-bar { gap: 24px; }
  .hero-stats { gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .risk-band { gap: 24px; padding: 24px 20px; }
  .sticky-cta { padding: 12px 20px; }
  .sticky-cta-spaces { display: none; }
}

/* ════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   (page headers, breadcrumbs, nav active state,
   homepage section-preview cards, inner-page CTA band)
   ════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a.active { color: var(--teal); }

/* ── PAGE HEADER (used on every inner page in place of the full hero) ── */
.page-header {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage2) 100%);
  position: relative; overflow: hidden;
  padding: 150px 40px 70px;
}
.page-header .hero-bg-circle1 { right: -160px; top: -160px; width: 460px; height: 460px; }
.page-header .hero-bg-circle2 { right: 60px; bottom: -140px; width: 280px; height: 280px; }
.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-header .section-tag { color: var(--teal); }
.page-header h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--deep); line-height: 1.1;
  margin-bottom: 18px; max-width: 700px;
}
.page-header h1 em { color: var(--teal); font-style: italic; }
.page-header-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 560px;
}

/* ── HOMEPAGE: SECTION-EXPLORE GRID ── */
.explore { background: var(--sage); }
.explore-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.explore-card {
  background: var(--white); border: 1px solid var(--sage2);
  border-radius: 16px; padding: 32px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.explore-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(4,52,44,0.1); border-color: var(--mint); }
.explore-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--sage2); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.explore-name { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--deep); margin-bottom: 10px; }
.explore-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }
.explore-link { font-size: 14px; font-weight: 600; color: var(--teal); }
.explore-card:hover .explore-link { color: var(--mid); }

/* ── INNER-PAGE CTA BAND (closes out every sub-page) ── */
.page-cta {
  background: var(--teal); padding: 56px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.page-cta::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--mid); opacity: 0.5;
}
.page-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.page-cta h3 { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 12px; }
.page-cta p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 28px; }
.page-cta .btn-main { background: var(--white); color: var(--teal); }
.page-cta .btn-main:hover { background: var(--mint); color: var(--deep); }

@media (max-width: 768px) {
  .page-header { padding: 120px 20px 50px; }
  .explore-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER STORY GALLERY (About page) ── */
.founder-story { background: var(--sage); }
.founder-story-head { max-width: 640px; margin-bottom: 48px; }
.founder-story-rail {
  display: flex; gap: 24px; overflow-x: auto;
  padding: 4px 4px 20px; margin: 0 -4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--mint) transparent;
}
.founder-story-rail::-webkit-scrollbar { height: 8px; }
.founder-story-rail::-webkit-scrollbar-thumb { background: var(--mint); border-radius: 8px; }
.founder-story-rail::-webkit-scrollbar-track { background: transparent; }
.founder-story-card {
  flex: 0 0 260px; scroll-snap-align: start;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--sage2); background: var(--white);
  box-shadow: 0 8px 28px rgba(4,52,44,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.founder-story-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(4,52,44,0.12); }
.founder-story-rail button.founder-story-card {
  appearance: none; -webkit-appearance: none;
  padding: 0; margin: 0; font: inherit; text-align: left;
  display: block; cursor: zoom-in;
}
.founder-story-rail button.founder-story-card:focus-visible {
  outline: 3px solid var(--teal); outline-offset: 2px;
}
.founder-story-card img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.founder-story-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-top: 8px;
}
.founder-story-hint::before { content: '↔'; color: var(--teal); font-weight: 700; }
@media (max-width: 768px) {
  .founder-story-card { flex-basis: 220px; }
}

/* ── HOMEPAGE FOUNDER STORY TEASER BAND ── */
.founder-story {
  background: var(--white);
  border-top: 1px solid var(--sage2); border-bottom: 1px solid var(--sage2);
  padding: 72px 40px;
}
.founder-story .section-sub { max-width: 640px; margin-bottom: 36px; }

.founder-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--sage2);
  background: var(--sage);
  padding: 0; cursor: pointer;
  box-shadow: 0 6px 18px rgba(4,52,44,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item-wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item::after {
  content: '⤢';
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(4,52,44,0.55); color: var(--white);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease;
}
.gallery-item:hover, .gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(4,52,44,0.16);
  outline: none;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

.founder-gallery-cta { margin-top: 36px; text-align: center; }
.founder-teaser-link {
  display: inline-block;
  color: var(--teal); font-weight: 600; text-decoration: none;
  white-space: nowrap; border: 1px solid var(--mint); border-radius: 8px;
  padding: 12px 22px; transition: background 0.2s, color 0.2s;
}
.founder-teaser-link:hover { background: var(--teal); color: var(--white); }

@media (max-width: 900px) {
  .founder-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .founder-story { padding: 48px 20px; }
  .founder-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item-wide { grid-column: span 2; aspect-ratio: 1 / 1; }
}

/* ── FOUNDER STORY LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4,52,44,0.92);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-stage {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img {
  max-width: 100%; max-height: 74vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
}
.lightbox-caption {
  color: var(--sage); font-size: 14px; line-height: 1.6;
  text-align: center; max-width: 640px; margin-top: 16px;
}
.lightbox-count {
  color: var(--mint); font-size: 12px; letter-spacing: 0.5px;
  margin-top: 8px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ── TAX TIP BANNER ── */
.tax-tip-band {
  background: var(--sage);
  border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tax-tip-icon { font-size: 18px; flex-shrink: 0; }
.tax-tip-text { font-size: 14px; color: var(--forest); margin: 0; }
.tax-tip-text strong { color: var(--deep); }
@media (max-width: 640px) {
  .tax-tip-band { padding: 16px 20px; }
}

/* ── CONVERSION UPGRADES: Lead magnet, coach profile, client logos, contact qualifier ── */
.lead-magnet { background: var(--sage); padding: 72px 40px; }
.lead-magnet-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.lead-magnet-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.lead-magnet-points div { background: var(--white); border: 1px solid var(--sage2); border-radius: 12px; padding: 18px; }
.lead-magnet-points strong { display: block; font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--teal); line-height: 1; }
.lead-magnet-points span { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 6px; }
.lead-magnet-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.text-link { color: var(--teal); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--teal); }
.lead-magnet-card { background: var(--mint); border-radius: 18px; padding: 32px; color: var(--deep); box-shadow: 0 20px 60px rgba(4,52,44,0.12); }
.diag-card-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--deep); margin-bottom: 22px; }
.diag-score-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(4,52,44,0.12); font-size: 14px; color: var(--deep); }
.diag-score-row strong { font-size: 11px; letter-spacing: 1px; border-radius: 20px; padding: 4px 10px; }
.score-green { background: #DCFCE7; color: #15803D; }
.score-amber { background: #FEF3C7; color: #B45309; }
.score-red { background: #FEE2E2; color: #B91C1C; }
.score-yellow { background: #FEFCE8; color: #854D0E; }
.lead-magnet-card p { margin-top: 20px; color: var(--forest); font-size: 14px; }
.meet-coach { background: var(--white); }
.meet-coach-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.meet-coach-card { background: var(--mint); border-radius: 18px; padding: 40px; color: var(--deep); position: relative; overflow: hidden; }
.meet-coach-card::before { content: ''; position: absolute; right: -50px; top: -50px; width: 180px; height: 180px; border-radius: 50%; background: var(--sage2); }
.coach-name { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--deep); position: relative; z-index: 1; }
.coach-role { font-size: 13px; color: var(--forest); letter-spacing: 1px; text-transform: uppercase; margin: 6px 0 24px; position: relative; z-index: 1; }
.coach-badges { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.coach-badges span { padding: 10px 12px; border-radius: 8px; background: var(--white); color: var(--deep); font-size: 13px; }
.meet-coach-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn-ghost-light { color: var(--deep); border-color: var(--deep); }
.btn-ghost-light:hover { color: var(--white); background: var(--teal); border-color: var(--teal); }
.client-logo-strip { background: var(--sage); padding: 44px 40px; }
.client-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.client-logo-grid a { background: var(--white); border: 1px solid var(--sage2); border-radius: 14px; height: 110px; display: flex; align-items: center; justify-content: center; padding: 18px; transition: transform 0.2s, box-shadow 0.2s; }
.client-logo-grid a:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(4,52,44,0.08); }
.client-logo-grid img { max-width: 100%; max-height: 74px; object-fit: contain; }
.challenge-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.challenge-options label { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; padding: 10px 12px; color: rgba(255,255,255,0.82); font-size: 13px; text-transform: none; letter-spacing: 0; cursor: pointer; }
.challenge-options input { width: auto; margin-right: 6px; }
@media (max-width: 900px) { .lead-magnet-inner, .meet-coach-inner { grid-template-columns: 1fr; gap: 36px; } .client-logo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lead-magnet { padding: 56px 20px; } .lead-magnet-points, .challenge-options { grid-template-columns: 1fr; } .client-logo-strip { padding: 36px 20px; } .client-logo-grid { grid-template-columns: 1fr; } }


/* ── CONVERSION UPGRADE: Primary diagnostic CTA and proof sections ── */
.hero-proof-card {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--sage2);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 760px;
  margin: -34px 0 44px;
  box-shadow: 0 12px 32px rgba(4,52,44,0.08);
}
.hero-proof-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.hero-proof-stat img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--sage2);
  border-radius: 10px;
  padding: 6px;
}
.hero-proof-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--teal);
  line-height: 1;
}
.hero-proof-stat span {
  display: block;
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.hero-proof-stat small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.hero-proof-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted var(--teal);
}
.growth-network {
  background: var(--sage);
  border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
}
.growth-network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.growth-network-cards {
  display: grid;
  gap: 14px;
}
.growth-network-card {
  background: var(--white);
  border: 1px solid var(--sage2);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 18px 20px;
}
.growth-network-card strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
  margin-bottom: 5px;
}
.growth-network-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-conversion-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.contact-proof-panel {
  background: var(--white);
  color: var(--deep);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 16px 44px rgba(4,52,44,0.24);
}
.contact-proof-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-proof-panel h3 {
  color: var(--deep);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-proof-result {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--sage2);
}
.contact-proof-result img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--sage2);
  border-radius: 10px;
  padding: 7px;
  background: var(--sage);
  flex-shrink: 0;
}
.contact-proof-result strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
}
.contact-proof-result span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
}
.contact-proof-note {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 18px 0 !important;
}
.contact-proof-cta {
  display: inline-flex;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted var(--teal);
}
@media (max-width: 900px) {
  .growth-network-inner,
  .contact-conversion-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof-card {
    margin: -30px 0 40px;
  }
}
@media (max-width: 640px) {
  .hero-proof-card {
    align-items: stretch;
  }
  .hero-proof-stat {
    min-width: 100%;
  }
}
