/* ============================================================
   TRUE SIGNAL COACHING — SITE STYLES
   ------------------------------------------------------------
   This file holds the layout rules. You usually don't need to
   touch it — colours, fonts and spacing live in variables.css.
   ============================================================ */

/* ---------- BASE ---------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
}

img { max-width: 100%; }

a { color: inherit; }

/* Text that is read by screen readers and search engines but not shown */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-emerald);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ---------- NAVIGATION ---------- */

.site-nav {
  background: var(--bg-white);
  border-bottom: 1px solid rgba(26,58,66,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; line-height: 0; }
.nav-logo img { height: 50px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-teal-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-emerald); }

.nav-links a[aria-current="page"] {
  font-weight: 600;
  border-bottom: 2px solid var(--accent-emerald);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--color-deep-button);
  color: var(--bg-white);
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--color-deep); }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--color-deep);
  transition: background 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-deep);
  transition: transform 0.2s, top 0.2s;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.site-nav.is-open .nav-toggle span { background: transparent; }
.site-nav.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }


/* ---------- BUTTONS & LINKS ---------- */

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--light {
  background: var(--bg-white);
  color: var(--color-deep-button);
  box-shadow: var(--shadow-btn);
}
.btn--light:hover { background: var(--bg-cream); }

.btn--ghost {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
  font-weight: 500;
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--deep {
  background: var(--color-deep-button);
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn--deep:hover { background: var(--color-deep); }

/* "Read more →" links between pages */
.readmore {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-emerald);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-emerald);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.readmore:hover { color: var(--color-deep); border-bottom-color: var(--color-deep); }

.readmore--rose { color: var(--accent-rose); border-bottom-color: var(--accent-rose); }
.readmore--teal { color: var(--color-teal); border-bottom-color: var(--color-teal); }

.readmore-wrap { text-align: center; margin-top: 2.5rem; }


/* ---------- SECTION LAYOUT ---------- */

.section {
  width: 100%;
  background: var(--bg-white);
  padding: var(--space-xl) 2rem;
  margin-bottom: var(--section-gap);
  font-family: var(--font-body);
  color: var(--text-primary);
}

.section--pale    { background: var(--bg-pale); }
.section--cream   { background: var(--bg-cream); }
.section--gradient {
  background: linear-gradient(135deg, rgba(16,201,160,0.12) 0%, rgba(58,168,184,0.1) 50%, rgba(16,201,160,0.08) 100%);
  padding: 6rem 2rem;
}
.section--roomy   { padding: var(--space-2xl) 2rem; }
.section--relief  { position: relative; overflow: hidden; }

.wrap        { max-width: var(--width-content); margin: 0 auto; }
.wrap--text  { max-width: var(--width-text); }
.wrap--wide  { max-width: var(--width-wide); }
.wrap--820   { max-width: 820px; }
.wrap--900   { max-width: 900px; position: relative; z-index: 1; }

.sec-head { text-align: center; margin-bottom: 3.5rem; }
.sec-head--tight { margin-bottom: 2.5rem; }
.sec-head--mid   { margin-bottom: 3rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--size-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: var(--space-md);
}

.eyebrow--tight { margin-bottom: var(--space-sm); }

.h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.h2--gap { margin-bottom: 2rem; }

.italic-rose    { color: var(--accent-rose); font-style: italic; }
.italic-emerald { color: var(--accent-emerald); font-style: italic; }

/* Soft background glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.glow--emerald {
  top: -100px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,201,160,0.08) 0%, transparent 70%);
}
.glow--rose {
  bottom: -120px; left: -100px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,82,122,0.06) 0%, transparent 70%);
}


/* ---------- HERO ---------- */

.hero {
  width: 100%;
  background: var(--color-teal);
  color: var(--bg-white);
  min-height: 900px;
  display: flex;
  flex-direction: column;
}

.hero--short { min-height: 0; }

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) 2rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,90,108,0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--size-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 300;
  margin: 0 0 2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bg-white);
  max-width: 16em;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--bg-white);
  border-bottom: 2px solid var(--accent-emerald);
  padding-bottom: 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 2rem;
}

.hero-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-hero);
}

.hero-lede {
  font-family: var(--font-display);
  font-size: var(--size-hero-tagline);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.hero-p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  font-weight: 300;
}

.hero-p--last { margin-bottom: 2rem; }

.hero-p strong,
.lead-in { color: var(--text-primary); font-weight: 400; }

.hero-close {
  font-family: var(--font-display);
  font-size: var(--size-hero-close);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* Sub-page hero (smaller, used on coaching/about/organisations/testimonials) */
.page-hero {
  background: var(--color-teal);
  padding: var(--space-2xl) 2rem;
  text-align: center;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.75); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--bg-white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.page-hero p {
  font-family: var(--font-display);
  font-size: var(--size-page-lede);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: var(--space-md) auto 0;
  max-width: 700px;
}
.page-hero .italic-rose { color: #FFD1DE; }


/* ---------- THE REALITY (illustration) ---------- */

.reality-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reality-figure img {
  display: block;
  width: 100%;
  height: auto;
}


/* ---------- WHY TRUE SIGNAL (MISSION) ---------- */

.mission { text-align: center; }

.mission-q {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 2rem;
}

.mission-q em { color: var(--accent-rose); font-style: italic; }

.mission-body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 auto 1.25rem;
  max-width: var(--width-narrow);
}

.mission-body strong { color: var(--text-primary); font-weight: 500; }

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.m-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--tint-emerald);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
}

.m-tag:nth-child(2) { background: rgba(232,82,122,0.15); }
.m-tag:nth-child(3) { background: rgba(58,168,184,0.15); }
.m-tag:nth-child(4) { background: rgba(16,201,160,0.15); }


/* ---------- "I KNOW..." TRIAD (ABOUT PAGE) ---------- */

.know-intro {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.005em;
}

.know-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2rem;
}

.know-list li {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-emerald);
}

.know-list li:nth-child(2) { border-left-color: var(--accent-rose); }
.know-list li:nth-child(3) { border-left-color: var(--color-teal); }

.trust-panel {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--section-gap);
}

.trust-panel p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.trust-panel strong { color: var(--text-primary); font-weight: 500; }


/* ---------- STATS STRIP ---------- */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat {
  padding: var(--space-md) var(--space-sm);
  border-left: 1px solid var(--border-soft);
}

.stat:first-child { border-left: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--accent-emerald);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat:nth-child(2) .stat-num { color: var(--accent-rose); }
.stat:nth-child(3) .stat-num { color: var(--color-teal); }
.stat:nth-child(4) .stat-num { color: var(--accent-emerald); }

.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ---------- CREDENTIALS LIST ---------- */

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.cred-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent-emerald);
  border-radius: var(--radius-sm);
}

.cred-item:nth-child(3n+2) { border-left-color: var(--accent-rose); }
.cred-item:nth-child(3n)   { border-left-color: var(--color-teal); }

.cred-item dt {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cred-item dd {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}


/* ---------- SPEAKING APPEARANCES ---------- */

.speaking-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.speak-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.speak-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-emerald);
  line-height: 1;
}

.speak-item:nth-child(2) .speak-year { color: var(--accent-rose); }

.speak-event {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.speak-title {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.speak-link {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 500;
  color: var(--color-teal);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-teal);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.speak-link:hover { opacity: 0.7; }


/* ---------- SIGNAL ASSESSMENT ---------- */

.assessment {
  background: linear-gradient(135deg, rgba(16,201,160,0.1) 0%, rgba(58,168,184,0.12) 50%, rgba(232,82,122,0.08) 100%);
  border: 1px solid rgba(16,201,160,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.assessment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.assessment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 0;
}

.assessment-list li {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 2.25rem;
  position: relative;
}

.assessment-list .num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-emerald);
  font-weight: 500;
}

.assessment-list strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.signup {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.signup h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.005em;
}

.signup p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 0 1.25rem;
}

.field { margin-bottom: 0.85rem; }

.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
}

.field input:focus {
  border-color: var(--accent-emerald);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16,201,160,0.15);
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}

.consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent-emerald);
  cursor: pointer;
}

.consent label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  cursor: pointer;
}

.consent a { color: var(--color-teal); }

.signup .btn--deep {
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.signup-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  margin: 1rem 0 0;
}

.signup-note a { color: var(--color-teal); }


/* ---------- ABOUT / GUIDE ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}

.about-photo {
  background: var(--bg-photo);
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,58,66,0.3);
  font-size: 14px;
  font-weight: 300;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  justify-items: center;
  margin-top: var(--space-md);
}

.badge img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.2s;
}

.badge:hover img { transform: scale(1.05); }

.badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-xs);
  font-weight: 500;
}

.about-p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
}

.about-motto {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 400;
  line-height: 1.3;
  margin: 1.5rem 0 2rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-style: italic;
}

.checks {
  font-size: var(--size-body);
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  list-style: none;
}

.checks li { margin-bottom: 0.85rem; }
.checks li:last-child { margin-bottom: 0; }
.checks li::before { content: '✓ '; color: var(--text-muted); }
.checks li span { color: var(--text-primary); }


/* ---------- PLAN / HOW IT WORKS ---------- */

.pill-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.pill {
  background: var(--tint-emerald);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.pill:nth-child(2) { background: rgba(232,82,122,0.15); }
.pill:nth-child(3) { background: rgba(58,168,184,0.15); }
.pill:nth-child(1) { background: rgba(16,201,160,0.15); }

.discovery-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-bottom: var(--space-lg);
}

.discovery-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.005em;
}

.discovery-card p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.flow-step { flex: 0 1 22%; min-width: 120px; display: flex; }

.flow-card {
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  border-left: 4px solid var(--accent-emerald);
  background: var(--tint-emerald);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.flow-step--2 .flow-card { background: var(--tint-rose); border-left-color: var(--accent-rose); }
.flow-step--3 .flow-card { background: var(--tint-teal); border-left-color: var(--color-teal); }
.flow-step--4 .flow-card {
  background: linear-gradient(135deg, rgba(255,232,168,0.25) 0%, rgba(255,244,204,0.3) 100%);
  border-left-color: var(--accent-gold);
}

.flow-trophy {
  position: absolute;
  top: -10px; right: -15px;
  opacity: 0.15;
  font-size: 4rem;
  line-height: 1;
}

.flow-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.flow-step--2 .flow-label { color: var(--accent-rose); }
.flow-step--3 .flow-label { color: var(--color-teal); }
.flow-step--4 .flow-label { color: var(--accent-gold-text); }

.flow-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}

.flow-card p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.5;
  margin: 0;
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.flow-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
  flex: 0 0 auto;
  align-self: center;
}


/* ---------- CHALLENGES ---------- */

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.challenge {
  padding: 1.75rem;
  border-left: 3px solid var(--accent-emerald);
  border-radius: var(--radius-sm);
}

.challenge:nth-child(3n+2) { border-left-color: var(--accent-rose); }
.challenge:nth-child(3n)   { border-left-color: var(--color-teal); }

.challenge h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.005em;
}

.challenge p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}


/* ---------- WHAT TO EXPECT ---------- */

.expect {
  background: linear-gradient(135deg, rgba(16,201,160,0.1) 0%, rgba(58,168,184,0.12) 50%, rgba(232,82,122,0.08) 100%);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(16,201,160,0.2);
  text-align: center;
}

.expect h3 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 400;
  color: var(--text-primary);
  margin: 2rem 0;
  letter-spacing: -0.005em;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.expect-item dt {
  font-size: var(--size-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.expect-item dd {
  font-size: var(--size-body);
  color: var(--text-muted);
  margin: 0;
}

.expect > p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.expect strong { color: var(--text-primary); font-weight: 600; }


/* ---------- WHAT BECOMES POSSIBLE ---------- */

.possible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--section-gap);
}

.possible-card {
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(16,201,160,0.2);
  backdrop-filter: blur(10px);
}

.possible-card:nth-child(2) { border-color: rgba(232,82,122,0.2); }
.possible-card:nth-child(3) { border-color: rgba(58,168,184,0.2); }

.possible-icon {
  font-size: var(--space-lg);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.possible-card h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.005em;
}

.possible-card p {
  font-family: var(--font-body);
  font-size: var(--size-possible);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.possible-close {
  text-align: center;
  background: linear-gradient(135deg, rgba(16,201,160,0.15) 0%, rgba(232,82,122,0.1) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem var(--space-lg);
  border: 1px solid rgba(16,201,160,0.25);
}

.possible-close p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.95rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.mark-emerald { color: var(--accent-emerald); font-weight: 500; }
.mark-rose    { color: var(--accent-rose); font-weight: 500; }
.mark-teal    { color: var(--color-teal); font-weight: 500; }
.mark-rose-i  { color: var(--accent-rose); font-style: italic; font-weight: 500; }


/* ---------- IF NOTHING CHANGES ---------- */

.stakes {
  background: var(--bg-offwhite);
  border-left: 5px solid var(--accent-slate);
  border-radius: var(--radius);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.stakes-glow {
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(115,138,149,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stakes-inner { position: relative; z-index: 1; }

.stakes p {
  font-family: var(--font-body);
  font-size: var(--size-stakes);
  line-height: 1.8;
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  font-weight: 300;
}

.stakes p:nth-of-type(3) { margin-bottom: 2rem; }

.stakes-close {
  border-top: 1px solid rgba(115,138,149,0.2);
  padding-top: 2rem;
  margin-top: var(--space-md);
}

.stakes-close p {
  color: var(--text-primary);
  font-weight: 400;
  margin: 0;
}

.stakes-close .soft { color: var(--text-muted); }


/* ---------- THREE WAYS TO WORK ---------- */

.ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.way-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.way-head {
  border-left: 4px solid var(--accent-emerald);
  padding-left: 1.25rem;
}

.way-card--rose .way-head { border-left-color: var(--accent-rose); }
.way-card--teal .way-head { border-left-color: var(--color-teal); }

.way-head h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.005em;
}

.way-card > p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.8;
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.way-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.way-list li {
  font-size: var(--size-body-lg);
  color: var(--text-primary);
  font-weight: 500;
}

.way-foot { margin-top: auto; }

.way-link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-emerald);
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  border-bottom: 1px solid var(--accent-emerald);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.way-card--rose .way-link { color: var(--accent-rose); border-bottom-color: var(--accent-rose); }
.way-card--teal .way-link { color: var(--color-teal); border-bottom-color: var(--color-teal); }

.way-link:hover { opacity: 0.7; }


/* ---------- FOR ORGANISATIONS ---------- */

.b2b-lede {
  max-width: var(--width-narrow);
  margin: 0 auto var(--section-gap);
  text-align: center;
}

.b2b-lede p {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.85;
  color: var(--text-primary);
  font-weight: 300;
  margin: 0;
}

.b2b-panel {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--section-gap);
  border-left: 4px solid var(--accent-emerald);
}

.b2b-panel h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.005em;
}

.b2b-panel--delivers { background: var(--bg-cream); text-align: center; }
.b2b-panel--how      { background: var(--bg-white); }
.b2b-panel--how h3   { margin-bottom: var(--space-md); }

.b2b-panel--stakes {
  background: var(--bg-offwhite);
  border-left: 5px solid var(--accent-slate);
  border-radius: var(--radius-md);
}
.b2b-panel--stakes h3 { margin-bottom: var(--space-md); }

.b2b-delivers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: var(--space-md);
  text-align: left;
}

.b2b-metric dt {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 600;
  color: var(--accent-emerald);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b2b-metric:nth-child(2) dt { color: var(--accent-rose); }
.b2b-metric:nth-child(3) dt { color: var(--color-teal); }

.b2b-metric dd {
  font-size: var(--size-body);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.b2b-panel--how p {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.b2b-stakes-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.b2b-stakes-list li {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: var(--space-md);
  position: relative;
}

.b2b-stakes-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-slate);
}

.b2b-statement {
  text-align: center;
  margin-bottom: var(--section-gap);
}

.b2b-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
}

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


/* ---------- FAQ ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border-left: 4px solid var(--accent-emerald);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.faq-item:nth-child(3n+2) { border-left-color: var(--accent-rose); }
.faq-item:nth-child(3n)   { border-left-color: var(--color-teal); }

.faq-q {
  width: 100%;
  text-align: left;
  background: var(--bg-white);
  border: none;
  padding: var(--space-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--size-faq-q);
  font-weight: 400;
  color: var(--text-primary);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.faq-q[aria-expanded="true"] { font-weight: 600; }

.faq-toggle {
  font-size: 1.3rem;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.faq-item:nth-child(3n+2) .faq-toggle { color: var(--accent-rose); }
.faq-item:nth-child(3n) .faq-toggle   { color: var(--color-teal); }

.faq-a {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--border-soft);
}

.faq-a[data-open="true"] { display: block; }

.faq-a p {
  font-family: var(--font-body);
  font-size: var(--size-faq-a);
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin: var(--space-sm) 0 0;
}


/* ---------- TESTIMONIAL SNIPPETS ---------- */

.testi-snippet {
  background: var(--tint-mint);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  margin: 2rem 0;
}

.testi-snippet--rose { background: var(--tint-rose-soft); }
.testi-snippet--teal { background: var(--tint-teal-soft); }

.testi-snippet--hero { margin: 2.5rem 0 0; }

.testi-snippet--standalone {
  max-width: var(--width-content);
  margin: var(--section-gap) auto;
}

.testi-snippet-text {
  font-family: var(--font-display);
  font-size: var(--size-snippet);
  font-style: italic;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.testi-snippet-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-snippet-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg-white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-snippet-avatar.emerald { background: var(--accent-emerald); }
.testi-snippet-avatar.rose    { background: var(--accent-rose); }
.testi-snippet-avatar.teal    { background: var(--color-teal); }

.testi-snippet-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ---------- FULL TESTIMONIAL CARDS ---------- */

.testi-group { margin-bottom: 4rem; }
.testi-group:last-of-type { margin-bottom: 0; }

.testi-group-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
}

.testi-group-head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  margin: 0;
}

.testi-group-note {
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: 300;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testi-card {
  --accent: var(--accent-emerald);
  --accent-tint: var(--tint-emerald-soft);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.testi-card:nth-child(3n+2) { --accent: var(--accent-rose); --accent-tint: var(--tint-rose-soft); }
.testi-card:nth-child(3n)   { --accent: var(--color-teal);  --accent-tint: var(--tint-teal-soft); }

.testi-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.testi-pull {
  background: var(--accent-tint);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 0 0 var(--space-md);
}

.testi-pull p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.testi-body { margin-bottom: var(--space-md); }

.testi-text {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.testi-text + .testi-text { margin-top: var(--space-sm); }

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-soft);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bg-white);
  flex-shrink: 0;
}

.testi-info h3 {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.2rem;
}

.testi-info p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}


/* ---------- MID-PAGE CTA BAND ---------- */

.cta-band {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 2.25rem var(--space-lg);
  text-align: center;
  margin: 4rem 0;
}

.cta-band p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.005em;
}


/* ---------- VIDEO ---------- */

.video-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}


/* ---------- FOOTER CTA ---------- */

footer.with-cta {
  background: var(--color-deep);
  padding: var(--space-2xl) 2rem;
  text-align: center;
  color: var(--bg-white);
}

.footer-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: var(--space-md);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

footer.with-cta > p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-cta-btn {
  padding: 0.95rem 2.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--bg-white);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.footer-cta-btn.primary {
  background: var(--bg-white);
  color: var(--color-deep-button);
}
.footer-cta-btn.primary:hover { background: #E8E2D6; }

.footer-cta-btn.secondary {
  background: transparent;
  color: var(--bg-white);
}
.footer-cta-btn.secondary:hover { background: rgba(255,255,255,0.1); }


/* ---------- SITE FOOTER ---------- */

.site-footer {
  background: var(--color-deep);
  padding: 2.25rem var(--space-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.f-logo { line-height: 1; }
.f-logo .wm-top { display: flex; align-items: baseline; }
.f-logo .wm-true {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.f-logo .wm-signal {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-emerald);
  letter-spacing: 0.03em;
}
.f-logo .wm-rule { height: 0.5px; background: rgba(255,255,255,0.15); margin: 3px 0 4px; }
.f-logo .wm-coaching {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.f-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.f-links a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.f-links a:hover { color: rgba(255,255,255,0.7); }

.f-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  width: 100%;
  text-align: center;
  margin-top: var(--space-sm);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Large tablet / small laptop --- */
@media (max-width: 1024px) {
  .possible-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .possible-card { padding: 2rem; }
  .assessment-grid { gap: 2rem; }
  .site-footer { padding: 2.25rem 2rem; }
}

/* --- Tablet: navigation collapses to hamburger --- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 16px rgba(26,58,66,0.06);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-sm) 2rem 1.5rem;
  }

  .site-nav.is-open .nav-menu { display: flex; }

  .site-nav { position: sticky; }
  .nav-inner { position: relative; }

  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links a[aria-current="page"] { border-bottom: 1px solid var(--border-soft); }
  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta { display: block; text-align: center; margin-top: var(--space-sm); padding: 0.9rem 1.4rem; font-size: 0.95rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 420px; }
  .badges { max-width: 420px; }

  .assessment-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }

  .b2b-delivers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .hero { min-height: 0; }
  .hero-body { padding: 2.5rem 1.5rem 3rem; }
  .hero-card { padding: 1.75rem 1.5rem; }

  .page-hero { padding: 3rem 1.5rem; }

  .section { padding: 2.5rem 1.5rem; margin-bottom: 2rem; }
  .section--roomy { padding: 2.5rem 1.5rem; }
  .section--gradient { padding: 2.5rem 1.5rem; }

  .sec-head, .sec-head--mid { margin-bottom: 2.5rem; }

  /* Flowchart stacks, arrows turn downward */
  .flow { flex-direction: column; align-items: stretch; gap: 0.5rem; margin-bottom: 2.5rem; }
  .flow-step { flex: 1 1 auto; min-width: 0; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }

  .possible-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .possible-close { padding: 2rem 1.5rem; }

  .challenge-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .expect { padding: 2rem 1.5rem; }
  .expect-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .ways-grid { gap: 1.5rem; }
  .way-card { padding: 1.75rem 1.5rem; }

  .stakes { padding: 1.75rem 1.5rem; }

  .b2b-panel { padding: 1.75rem 1.5rem; margin-bottom: 2rem; }
  .discovery-card { padding: 1.75rem 1.5rem; }
  .assessment { padding: 1.75rem 1.5rem; }
  .trust-panel { padding: 1.75rem 1.5rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .stat { border-left: none; padding: 1rem 0.5rem; }
  .speak-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .speak-link { justify-self: start; }
  .mission-q { margin-bottom: 1.5rem; }
  .signup { padding: 1.75rem 1.5rem; }

  .testi-card { padding: 1.75rem 1.5rem; }
  .testi-pull { padding: 1.15rem 1.25rem; }
  .testi-group { margin-bottom: 3rem; }
  .testi-group-head { flex-direction: column; gap: 0.35rem; align-items: flex-start; }
  .cta-band { padding: 1.75rem 1.5rem; margin: 3rem 0; }
  .testi-snippet--standalone { margin: 2rem auto; }

  footer.with-cta { padding: 2.5rem 1.5rem; }
  .footer-cta-buttons { flex-direction: column; gap: var(--space-sm); }
  .footer-cta-btn { width: 100%; padding: 0.9rem 2rem; }

  .site-footer { padding: 1.5rem; flex-direction: column; text-align: center; gap: 1.5rem; }
  .f-links { flex-direction: column; gap: var(--space-sm); }
  .f-copy { margin-top: 0; }

  .badges { grid-template-columns: repeat(2, 1fr); }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-menu { padding: var(--space-sm) 1.25rem 1.25rem; }
  .nav-logo img { height: 40px; }

  .section { padding: 2rem 1.25rem; }
  .section--roomy { padding: 2rem 1.25rem; }

  .hero-body { padding: 2rem 1.25rem 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .footer-cta-heading { font-size: 1.5rem; }
  .footer-cta-btn { padding: 0.8rem 1.5rem; font-size: var(--size-small); }

  .site-footer { padding: 1.25rem; }
  .f-links { gap: 0.5rem; font-size: 0.7rem; }

  .badges { grid-template-columns: 1fr; }

  .testi-author { flex-wrap: wrap; }
}
