:root {
  --ink: #0b1c2e;
  --ink-soft: #163047;
  --bronze: #a67c3d;
  --bronze-deep: #8a6530;
  --bronze-soft: #e8d9c0;
  --paper: #f0f2f5;
  --mist: #e4e8ed;
  --snow: #fafbfc;
  --text: #0b1c2e;
  --muted: #5c6b7a;
  --border: #d5dce3;
  --link: #1a5f8a;
  --radius: 10px;
  --max-width: 1140px;
  --font: 'Outfit', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

img, iframe, video, svg {
  max-width: 100%;
}

.hero-grid > *,
.columns-2 > *,
.steps > *,
.faq-grid > *,
.contact-grid > *,
.services-rail > *,
.three-col > *,
.outcome-grid > *,
.phase-grid > *,
.insight-grid > * {
  min-width: 0;
}

.section-title,
.belief-quote,
.hero-title,
.hero-sub,
.aside-panel p,
.pillar p,
.service-cell p,
.apply-card p,
.mentor-slide-copy {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Soft scroll reveal — visible fade + light rise (kept light to avoid jank) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ── NAV ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fafbfc;
  border-bottom: 1px solid var(--mist);
}
.navbar--scrolled {
  background: #fafbfc;
  border-bottom-color: var(--mist);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}
.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: none;
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}
.nav-primary { position: relative; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-links > a {
  color: var(--ink-soft);
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  position: relative;
}
.nav-links > a:hover { color: var(--bronze-deep); }
.nav-links > a.is-active {
  color: var(--bronze-deep);
}
.nav-links > a.is-active::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.05rem;
  height: 1.5px;
  background: var(--bronze);
  border-radius: 1px;
}
.nav-links > a.nav-cta.is-active::after { display: none; }
.nav-dropdown.is-active .nav-dropdown-trigger {
  color: var(--bronze-deep);
  position: relative;
}
.nav-dropdown.is-active .nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 1.1rem;
  bottom: 0.05rem;
  height: 1.5px;
  background: var(--bronze);
  border-radius: 1px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger { color: var(--bronze-deep); }
.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  /* Flush under trigger + transparent top padding = hover bridge (no dead gap) */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 0.55rem 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 70;
}
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(11, 28, 46, 0.1);
  z-index: 0;
  pointer-events: none;
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.65rem 0.8rem;
  margin: 0 0.45rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown-menu a:first-of-type { margin-top: 0.45rem; }
.nav-dropdown-menu a:last-of-type { margin-bottom: 0.45rem; }
.nav-dropdown-menu a:hover {
  background: var(--paper);
  color: var(--bronze-deep);
}
.nav-dropdown-foot {
  margin-top: 0.25rem !important;
  border-top: 1px solid var(--mist);
  border-radius: 0 0 8px 8px !important;
  color: var(--bronze-deep) !important;
  font-weight: 600 !important;
}

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.5rem 1.05rem !important;
  background: var(--ink) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--ink-soft) !important; color: #fff !important; }
.nav-toggle {
  display: none;
  border: 1px solid var(--mist);
  background: var(--snow);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

/* ── HERO (full-bleed composition) ── */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  color: #f7f4ef;
  background-color: #0b1c2e;
  background-image: linear-gradient(145deg, #07141f 0%, #0b1c2e 55%, #12283a 100%);
  padding: 4.5rem 0 5rem;
}
.hero::before { display: none; }

/* Compact classic hero for internal pages (not homepage) */
.page-hero {
  background-color: #0b1c2e;
  background-image:
    linear-gradient(115deg, rgba(166, 124, 61, 0.14) 0%, transparent 42%),
    linear-gradient(145deg, #07141f 0%, #0b1c2e 60%, #12283a 100%);
  color: #f7f4ef;
  padding: 1.15rem 0 1.4rem;
  border-bottom: 3px solid var(--bronze);
  min-height: 0 !important;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 1.75rem 2.5rem;
  align-items: stretch;
}
.page-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.55);
  margin-bottom: 0.7rem;
}
.page-crumb a { color: rgba(247, 244, 239, 0.7); }
.page-crumb a:hover { color: var(--bronze-soft); }
.page-crumb-sep { opacity: 0.45; }
.page-crumb-current { color: var(--bronze-soft); }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 0.4rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 0 0.5rem;
  color: #fff;
}
.page-hero h1 em,
.page-hero h1 span {
  font-style: italic;
  font-weight: 500;
  color: var(--bronze-soft);
}
.page-hero-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.78);
  max-width: 40rem;
  margin: 0 0 0.9rem;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.page-hero-aside {
  border: 1px solid rgba(232, 217, 192, 0.22);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.page-hero-aside strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.page-hero-aside span {
  font-size: 0.82rem;
  color: rgba(247, 244, 239, 0.65);
  line-height: 1.45;
}
.page-hero-aside-item {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero-aside-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-section {
  padding: 2.35rem 0 !important;
}
.page-section .section-header {
  margin-bottom: 1.35rem;
  max-width: 42rem;
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-aside { order: -1; flex-direction: row; flex-wrap: wrap; gap: 0.85rem 1.25rem; }
  .page-hero-aside-item { border: none; padding: 0; flex: 1 1 140px; }
}


.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.mentor-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}
.mentor-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.mentor-card h3,
.mentor-card .mentor-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.mentor-card .role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.mentor-card .bio {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0.85rem 0 0.85rem;
}
.mentor-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  border-bottom: 1px solid var(--bronze-soft);
  padding-bottom: 0.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: #fff;
}
.hero-brand span {
  display: block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-top: 0.35rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  color: var(--bronze-soft);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(247, 244, 239, 0.78);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 8px;
  padding: 0.85rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease, filter 0.12s ease;
}
.btn-primary {
  background: var(--bronze);
  color: #0b1c2e;
  border-color: var(--bronze);
}
.btn-primary:hover {
  background: #b88a48;
}
.btn-primary:active,
.btn-secondary:active,
.apply-card .btn-primary:active,
.nav-cta:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(232, 217, 192, 0.45);
  color: #f7f4ef;
}
.btn-secondary:hover {
  border-color: var(--bronze-soft);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:active,
  .btn-secondary:active,
  .apply-card .btn-primary:active,
  .nav-cta:active {
    transform: none;
    filter: none;
  }
}

/* Hero visual — pathway plane (not a card) */
.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.hero-visual-plane {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
  position: relative;
}
.hero-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(232, 217, 192, 0.22);
  border-radius: 50%;
}
.hero-ring--2 {
  inset: 18%;
  border-color: rgba(232, 217, 192, 0.14);
}
.hero-pathway {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 12% 8%;
}
.hero-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  background: rgba(7, 20, 31, 0.75);
  border: 1px solid rgba(232, 217, 192, 0.16);
  border-radius: 8px;
}
.hero-step:nth-child(1) { }
.hero-step:nth-child(2) { margin-left: 8%; }
.hero-step:nth-child(3) { margin-left: 16%; }
.hero-step:nth-child(4) { margin-left: 24%; }
.hero-step time {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  font-weight: 600;
}
.hero-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-step span {
  font-size: 0.78rem;
  color: rgba(247, 244, 239, 0.65);
}
.hero-pathway-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bronze-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.hero-pathway-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── SECTIONS ── */
section { padding: 4.25rem 0; }
.section-header { margin-bottom: 2.25rem; max-width: 40rem; }
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bronze-deep);
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.section-ink {
  background: var(--ink);
  color: #f0f2f5;
}
.section-ink .section-eyebrow { color: var(--bronze-soft); }
.section-ink .section-title { color: #fff; }
.section-ink .section-sub { color: rgba(240, 242, 245, 0.7); }
.section-snow { background: var(--snow); }

/* Belief */
.belief {
  background:
    linear-gradient(180deg, var(--snow) 0%, var(--paper) 100%);
  border-block: 1px solid var(--mist);
}
.belief-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  max-width: 28ch;
  margin-bottom: 1.25rem;
}
.belief-body {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.belief-body strong { color: var(--ink); font-weight: 600; }

/* Services rail */
.services-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-cell {
  background: var(--snow);
  padding: 1.35rem 1.25rem;
  transition: background 0.25s ease;
}
.service-cell:hover { background: #fff; }
.service-cell h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.service-cell p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.service-cell a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bronze-deep);
  letter-spacing: 0.02em;
}
.service-cell a:hover { color: var(--ink); }

/* Program pillars — open layout, not heavy cards */
.columns-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.pillar-list { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--mist);
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pillar h3 a:hover { color: var(--bronze-deep); }
.pillar p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.35rem; }
.pillar .meta { font-size: 0.82rem; color: var(--bronze-deep); font-weight: 500; }
.aside-panel {
  background: var(--ink);
  color: #e8eef3;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
}
.aside-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: #fff;
}
.aside-panel p { color: rgba(232, 238, 243, 0.72); font-size: 0.92rem; margin-bottom: 0.85rem; }
.aside-panel ul { padding-left: 0; }
.aside-panel li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  color: rgba(232, 238, 243, 0.85);
}
.aside-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--bronze);
  border-radius: 1px;
}

/* Roadmap */
.phase-grid-wrapper { position: relative; padding-top: 2.5rem; }
.phase-progress-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--mist);
}
.phase-progress-fill {
  height: 2px;
  width: 0%;
  background: var(--bronze);
  transition: width 0.25s ease;
}
.phase-dots {
  position: absolute;
  top: -5px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 calc(12.5% - 6px);
  pointer-events: none;
}
.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--mist);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.phase-dot.is-active {
  border-color: var(--bronze);
  background: var(--bronze);
}
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.phase {
  padding: 0.85rem 0.75rem 0.5rem;
  font-size: 0.88rem;
  border-top: none;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.phase:hover {
  background: rgba(201, 162, 97, 0.06);
}
.phase:focus-visible {
  box-shadow: 0 0 0 2px var(--bronze-soft);
}
.phase.is-active {
  background: rgba(201, 162, 97, 0.1);
  box-shadow: inset 0 2px 0 0 var(--bronze);
}
.phase-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bronze-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.phase h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.phase > span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.phase ul { padding-left: 0; }
.phase li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.phase li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--bronze);
}

/* Roadmap on dark panels (service pages) */
.section-dark .phase {
  color: #e8eef3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.section-dark .phase:hover {
  background: rgba(201, 162, 97, 0.1);
}
.section-dark .phase.is-active {
  background: rgba(201, 162, 97, 0.14);
  box-shadow: inset 0 2px 0 0 var(--bronze);
}
.section-dark .phase-tag {
  color: var(--bronze-soft);
}
.section-dark .phase h3 {
  color: #fff;
}
.section-dark .phase > span {
  color: rgba(232, 238, 243, 0.65);
}
.section-dark .phase li {
  color: rgba(232, 238, 243, 0.78);
}
.section-dark .phase li::before {
  color: var(--bronze-soft);
}

/* Who / three col — open, border-top only */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.fit-block {
  padding-top: 1.15rem;
  border-top: 2px solid var(--ink);
}
.fit-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.fit-block p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.65rem; }
.fit-block ul { padding-left: 0; }
.fit-block li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--mist);
}
.fit-block li:last-child { border-bottom: none; }

/* Legacy aliases used by older markup */
.pill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.pill, .card, .side-card, .meta-panel {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.pill h3, .card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.35rem; }
.pill p, .card p { font-size: 0.88rem; color: var(--muted); }
.side-card, .meta-panel {
  background: var(--ink);
  color: #e8eef3;
  border-color: transparent;
}
.side-card h3, .meta-panel h3 { font-family: var(--font-display); color: #fff; margin-bottom: 0.5rem; }
.side-card p, .meta-panel p { color: rgba(232,238,243,0.7); }
.side-card ul, .meta-panel ul { padding-left: 1rem; margin: 0.5rem 0; }
.side-card li, .meta-panel li { font-size: 0.86rem; margin-bottom: 0.3rem; }

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2rem;
}
.step-list { list-style: none; }
.step-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--mist);
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.step-item p { font-size: 0.92rem; color: var(--muted); }

/* Outcomes strip */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.outcome {
  padding: 1.25rem 0;
  border-top: 2px solid var(--bronze);
}
.outcome strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.outcome span {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Mentors */
.mentor-slider { position: relative; margin-top: 1.25rem; }
.mentor-slider-shell {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem;
}
.mentor-slider-window {
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  width: 100%;
}
.mentor-slider-track {
  display: flex;
  gap: 1rem;
  min-width: 0;
}
.mentor-slide {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 2rem) / 3);
  width: calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-width: 0;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.mentor-slide:hover {
  border-color: var(--bronze-soft);
}
.mentor-slide-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.mentor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bronze-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--mist);
}
.mentor-avatar--lg {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  font-size: 1rem;
}
.mentor-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.mentor-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 6px;
  color: #0a66c2;
  background: rgba(10, 102, 194, 0.08);
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.mentor-linkedin:hover {
  background: #0a66c2;
  color: #fff;
}
.mentor-role { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; }
.mentor-slide-copy {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.mentor-slide-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  border-bottom: 1px solid var(--bronze-soft);
  padding-bottom: 0.15rem;
}
.mentor-slider-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mentor-slider-status { font-size: 0.78rem; color: var(--muted); }
.mentor-slider-dots { display: flex; gap: 0.4rem; justify-content: center; }
.mentor-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
}
.mentor-slider-dot.is-active { background: var(--bronze); }
.mentor-slider-nav { display: flex; gap: 0.45rem; justify-self: end; }
.mentor-slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--mist);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.mentor-slider-btn:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.mentor-slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.stat-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.stat-badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--mist);
  background: var(--snow);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 500;
}

/* Investors */
.section-dark {
  background: var(--ink);
  color: #e8eef3;
}
.section-dark .section-eyebrow { color: var(--bronze-soft); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(232, 238, 243, 0.7); }
.section-dark .section-sub a { color: var(--bronze-soft); text-decoration: underline; }

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.insight-link {
  display: block;
  padding: 1.35rem 0;
  border-top: 1px solid var(--mist);
  color: inherit;
  transition: border-color 0.2s ease;
}
.insight-link:hover { border-top-color: var(--bronze); }
.insight-link h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.insight-link p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.65rem; }
.insight-link .more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bronze-deep);
}

/* FAQ + Apply */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: 2rem;
}
.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--mist);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bronze-deep);
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--bronze-deep); }
.faq-item .faq-answer {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0 0 1rem;
}
.faq-item[open] .faq-answer {
  animation: faqReveal 0.28s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-answer { animation: none; }
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.faq-item p { color: var(--muted); font-size: 0.92rem; }
.apply-card {
  background: var(--ink);
  color: #e8eef3;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.apply-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.apply-card > p { color: rgba(232,238,243,0.7); margin-bottom: 1rem; font-size: 0.9rem; }
.form-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.form-mode-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(247,244,239,0.72);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
}
.form-mode-btn.is-active {
  background: rgba(201, 162, 97, 0.22);
  color: #fff;
}
.form-mode-btn:hover { color: #fff; }
.form-fields-full[hidden] { display: none !important; }
form { display: grid; gap: 0.7rem; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
}
label {
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(232, 238, 243, 0.85);
}
input, select, textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.55rem 0.7rem;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--bronze);
}
textarea { min-height: 90px; resize: vertical; }
.apply-card .btn-primary { width: 100%; margin-top: 0.25rem; }
.disclaimer-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: #f7f1e6;
  border: 1px solid var(--bronze-soft);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: #5c4a28;
}
.disclaimer-box h3 { color: #6b5324; margin-bottom: 0.5rem; font-size: 0.95rem; }
.disclaimer-box a { color: #6b5324; font-weight: 600; text-decoration: underline; }
.trust-signals {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(232,238,243,0.6);
  margin-top: 0.5rem;
  justify-content: center;
}
.trust-signals svg { width: 14px; height: 14px; fill: #6ee7a8; }

/* Contact */
.contact-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--ink);
  color: #e8eef3;
  border-radius: var(--radius);
}
.contact-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 36rem;
}
.contact-cta-copy strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}
.contact-cta-copy span {
  font-size: 0.9rem;
  color: rgba(232, 238, 243, 0.72);
  line-height: 1.5;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.contact-cta-primary {
  background: var(--bronze);
  color: #0b1c2e;
  border-color: var(--bronze);
}
.contact-cta-primary:hover {
  background: #b88a48;
  color: #0b1c2e;
}
.contact-cta-secondary {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bronze-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-cta-secondary:hover { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.contact-row { margin-bottom: 0.65rem; }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-value { font-size: 0.95rem; margin-top: 0.15rem; }
.contact-value a { color: var(--link); text-decoration: underline; }
.contact-path {
  padding: 1rem 0;
  border-top: 1px solid var(--mist);
}
.contact-path:first-of-type { border-top: none; padding-top: 0.15rem; }
.contact-path-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--bronze-deep);
  margin-bottom: 0.35rem;
}
.contact-path p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.contact-path .btn-primary,
.contact-path .btn-secondary {
  width: 100%;
}
.contact-path-investor-btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.contact-path-investor-btn:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: #fff;
}
.contact-path-note {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--mist);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.seo-related {
  margin-top: 2.5rem;
  padding: 1.35rem 1.4rem;
  border-top: 1px solid var(--mist);
  background: var(--snow);
  border-radius: var(--radius);
}
.seo-related-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.seo-related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-related-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--mist);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.seo-related-list li:last-child { border-bottom: none; }
.seo-related-list a {
  color: var(--bronze-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-related-list a:hover { color: var(--ink); }

/* Sticky enquire (White Lotus–inspired) */
.enquire-fab {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 80;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.1rem 0.55rem;
  border-radius: 8px 0 0 8px;
  transition: background 0.2s ease;
}
.enquire-fab:hover { background: var(--bronze-deep); color: #fff; }

/* Footer layout — balanced columns (avoid one tall Quick Links stack) */
.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.footer-col-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
}
.footer-link-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link-list a:hover { color: #e2e8f0; }
.footer-meta-list li { color: #94a3b8; }
.footer-meta-list strong { color: #cbd5e1; }

@media (max-width: 960px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11, 28, 46, 0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.7rem 1rem;
  z-index: 99;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.mobile-sticky-bar .text {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
  min-width: 0;
  line-height: 1.3;
}
.mobile-sticky-bar .btn-primary {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* ── Responsive: tablet + mobile ── */

/* Large tablet / small laptop */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0.2rem 0.75rem;
    font-size: 0.82rem;
  }
  .nav-cta { margin-left: 0.15rem; padding: 0.45rem 0.85rem !important; }
}

/* Tablet: hamburger + 2-col layouts */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.is-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    padding: 0.85rem;
    gap: 0.15rem;
    min-width: 260px;
    max-height: min(80vh, 560px);
    overflow-y: auto;
    z-index: 60;
    box-shadow: 0 12px 32px rgba(11, 28, 46, 0.12);
  }
  .nav-links.is-open > a,
  .nav-links.is-open .nav-dropdown-trigger {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: var(--ink);
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }
  .nav-links.is-open > a:hover,
  .nav-links.is-open .nav-dropdown-trigger:hover { background: var(--paper); }
  .nav-links.is-open .nav-cta {
    margin: 0.35rem 0 0;
    text-align: center;
    justify-content: center;
    background: var(--ink) !important;
    color: #fff !important;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--paper);
    margin: 0.15rem 0 0.35rem;
    min-width: 0;
    padding: 0.35rem;
  }
  .nav-dropdown-menu::after { display: none; }
  .nav-dropdown-menu a {
    margin: 0;
  }
  .nav-dropdown-menu a:first-of-type { margin-top: 0; }
  .nav-dropdown-menu a:last-of-type { margin-bottom: 0; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.is-open:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    white-space: normal;
    padding: 0.55rem 0.7rem;
  }

  .hero { min-height: auto; padding: 3.25rem 0 3.5rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-title { max-width: 18ch; }
  .hero-visual { min-height: 0; }
  .hero-visual-plane {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: auto;
    min-height: 0;
  }
  .hero-ring,
  .hero-ring--2 { display: none; }
  .hero-pathway {
    position: relative;
    inset: auto;
    padding: 0;
    gap: 0.65rem;
  }
  .hero-step:nth-child(n) { margin-left: 0; }
  .hero-step {
    grid-template-columns: 70px 1fr;
  }

  .columns-2,
  .steps,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-cta-actions { width: 100%; }
  .contact-cta-primary { width: 100%; }

  .services-rail,
  .three-col,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .three-col,
  .outcome-grid { gap: 1.25rem; }
  .services-rail { gap: 1px; }

  .phase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .phase-dots { display: none; }

  .mentor-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .enquire-fab { display: none; }
}

/* Phablet */
@media (max-width: 720px) {
  .container { padding: 0 1.1rem; }
  section { padding: 3.25rem 0; }

  .logo-main { font-size: 0.95rem; }
  .logo-sub { font-size: 0.6rem; letter-spacing: 0.1em; }
  .logo-mark { width: 36px; height: 36px; }

  .hero { padding: 2.75rem 0 2.85rem; }
  .hero-brand { font-size: 1.15rem; margin-bottom: 0.85rem; }
  .hero-title {
    max-width: none;
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    margin-bottom: 0.85rem;
  }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.35rem; }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    width: 100%;
  }

  .section-title { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .belief-quote { font-size: clamp(1.35rem, 6vw, 1.75rem); max-width: none; }

  .services-rail,
  .three-col,
  .outcome-grid,
  .phase-grid {
    grid-template-columns: 1fr;
  }
  .services-rail {
    border-radius: var(--radius);
  }
  .service-cell { padding: 1.2rem 1.1rem; }

  .mentor-slider-shell { padding: 0.75rem; }
  .mentor-slider-track { gap: 0.75rem; }
  .mentor-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .mentor-slider-controls {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.65rem;
  }
  .mentor-slider-status { justify-self: center; text-align: center; }
  .mentor-slider-nav { justify-self: center; }

  .form-row { grid-template-columns: 1fr; }
  .disclaimer-box label { font-size: 0.82rem; }

  .mobile-sticky-bar { display: flex !important; }
  body { padding-bottom: 76px; }

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

/* Small phones */
@media (max-width: 400px) {
  .mobile-sticky-bar .text { font-size: 0.78rem; }
  .hero-step {
    grid-template-columns: 58px 1fr;
    padding: 0.55rem 0.7rem;
  }
  .hero-step strong { font-size: 0.95rem; }
  .nav-inner { padding: 0.7rem 0; }
}

