:root {
  --ink: #05050a;
  --charcoal: #0b0b12;
  --navy: #111827;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --soft: #f7f7fb;
  --white: #ffffff;
  --purple: #6d28d9;
  --purple-dark: #5b21b6;
  --purple-soft: #f3e8ff;
  --purple-pale: #ede9fe;
  --radius: 8px;
  --max: 1296px;
  --shadow: 0 24px 70px rgba(5, 5, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand strong {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.06;
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  min-height: 84px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--purple);
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  color: #d8b4fe;
  font-size: 12px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.nav-cta,
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta,
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(109, 40, 217, 0.34);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--text);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn.outline {
  box-shadow: none;
}

.btn.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero {
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  min-height: 620px;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.92fr);
  gap: 60px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.eyebrow,
.section-kicker {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--purple);
}

.hero-text {
  max-width: 760px;
  color: #d1d5db;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-panel h2,
.hero-panel h3 {
  color: var(--white);
}

.hero-panel p {
  margin-top: 14px;
  color: #d1d5db;
  font-size: 18px;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.course-panel-kicker {
  margin-bottom: 14px;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.course-panel .panel-title-row {
  display: block;
  margin-bottom: 26px;
  text-align: center;
}

.course-panel .panel-title-row h2 {
  max-width: none;
}

.video-preview,
.mini-video {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 20%, rgba(109, 40, 217, 0.58), rgba(26, 11, 58, 0.96) 64%);
  color: var(--white);
  text-align: center;
}

.video-embed-preview {
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.video-embed-preview iframe,
.youtube-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-player {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  cursor: pointer;
  isolation: isolate;
}

.youtube-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.youtube-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.14), rgba(5, 5, 10, 0.64)),
    radial-gradient(circle at 50% 42%, rgba(109, 40, 217, 0.1), rgba(5, 5, 10, 0.5));
  z-index: -1;
}

.youtube-play {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 34px;
  line-height: 1;
  padding-left: 4px;
  box-shadow: 0 18px 48px rgba(5, 5, 10, 0.34);
}

.youtube-caption {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(5, 5, 10, 0.66);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 34px;
  line-height: 1;
  padding-left: 4px;
}

.video-preview strong,
.video-preview small {
  display: block;
}

.video-preview small {
  color: #ddd6fe;
}

.mini-video {
  min-height: 160px;
  margin-top: 24px;
  font-weight: 900;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.stats-row div {
  min-width: 0;
  min-height: 72px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--white);
  font-size: clamp(21px, 1.9vw, 24px);
  line-height: 1.1;
  overflow-wrap: normal;
}

.stats-row span {
  color: #d1d5db;
  font-size: 12px;
}

.course-panel .stats-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  font-weight: 800;
}

.compare-panel {
  display: grid;
  gap: 16px;
}

.swap {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.swap span,
.swap strong {
  display: block;
}

.swap span {
  color: #c4b5fd;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.swap strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 24px;
}

.positive {
  background: var(--purple-soft);
  color: var(--text);
}

.positive strong {
  color: var(--text);
}

.section {
  padding: 92px 0;
  background: var(--white);
}

.section.light {
  background: var(--soft);
}

.section.lavender {
  background: var(--purple-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
  display: grid;
  gap: 14px;
}

.section-heading p:not(.section-kicker) {
  font-size: 18px;
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.card-grid,
.feature-grid,
.result-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.feature-grid article,
.result-grid article,
.step-grid article,
.offer-card,
.form-card,
.quiz-card,
.video-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.path-card {
  min-height: 236px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.path-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.09);
  transform: translateY(-2px);
}

.path-card span,
.path-card strong {
  color: var(--purple);
  font-weight: 900;
}

.path-card span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  font-size: 25px;
  font-weight: 500;
}

.path-card p {
  flex: 1;
}

.dark-card,
.offer-card.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.dark-card p,
.offer-card.dark p {
  color: #d1d5db;
}

.dark-card h3,
.dark-card strong,
.offer-card.dark h2,
.offer-card.dark h3 {
  color: var(--white);
}

.two-col,
.lead-grid,
.split-cards,
.final-grid {
  display: grid;
  gap: 48px;
}

.two-col,
.lead-grid,
.split-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.two-col > div,
.plain-copy {
  display: grid;
  gap: 24px;
}

.check-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  position: absolute;
  left: 0;
  top: 0.68em;
}

.proof-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.proof-action {
  margin-top: 18px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.proof-action strong,
.proof-action span {
  display: block;
}

.proof-action span {
  color: var(--muted);
  font-size: 14px;
}

.proof-action a {
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--purple);
  color: var(--white);
  font-weight: 900;
}

.offer-card,
.form-card,
.quiz-card,
.video-box {
  padding: 36px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.offer-card h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article {
  padding: 26px;
  min-height: 144px;
}

.feature-grid h3,
.result-grid h3,
.step-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.form-card {
  background: var(--navy);
  color: var(--white);
}

.form-card label {
  display: grid;
  gap: 8px;
}

.form-card label span {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 800;
}

.form-card input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
}

.form-card small {
  color: #cbd5e1;
}

.brevo-form-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: start;
  width: min(100%, 560px);
  justify-self: center;
}

.brevo-form-card iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
}

.resource-form-grid {
  display: grid;
  gap: 48px;
}

.resource-form-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  align-items: start;
  gap: 48px;
}

.resource-form-card > div:first-child {
  display: grid;
  gap: 18px;
}

.resource-form-card + .resource-form-card {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.quiz-card button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-align: left;
}

.result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-grid article {
  padding: 24px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article {
  min-height: 190px;
  padding: 28px;
}

.step-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--purple);
  font-weight: 900;
}

.video-box {
  background: var(--white);
}

.embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}

.final-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.final-cta p {
  color: #d1d5db;
  font-size: 18px;
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-grid span,
.footer-grid a {
  color: #d1d5db;
  font-size: 14px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.thank-header {
  min-height: 108px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-header > span {
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.thank-page {
  min-height: calc(100vh - 108px);
  background: var(--ink);
  color: var(--white);
}

.thank-page p {
  color: #d4d4d8;
}

.thank-hero,
.thank-next {
  width: min(var(--max), calc(100% - 144px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 72px;
}

.thank-hero {
  padding: 86px 0 52px;
  align-items: center;
}

.thank-copy {
  display: grid;
  gap: 30px;
}

.thank-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d8b4fe;
}

.thank-copy .eyebrow span {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 999px;
  background: var(--purple);
}

.thank-copy h1 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 1.08;
}

.thank-copy > p {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.55;
}

.thank-resource {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--charcoal);
}

.resource-preview {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--navy);
}

.resource-preview p {
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-preview h2 {
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 48px);
}

.resource-preview span {
  max-width: 420px;
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
}

.resource-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #a1a1aa;
  font-size: 15px;
  line-height: 1.6;
}

.resource-note span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--purple);
}

.resource-note p {
  color: #a1a1aa;
}

.thank-next {
  padding: 40px 0 80px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.use-card,
.next-card {
  min-height: 316px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-radius: 14px;
}

.use-card {
  background: var(--white);
  color: var(--navy);
}

.use-card p {
  color: var(--muted);
}

.use-card h2,
.next-card h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.next-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.next-card p:not(.section-kicker) {
  max-width: 640px;
  color: #d4d4d8;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    position: absolute;
    top: 18px;
    right: 24px;
  }

  .hero-grid,
  .two-col,
  .lead-grid,
  .split-cards,
  .resource-form-card {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .feature-grid,
  .result-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thank-hero,
  .thank-next {
    width: min(100% - 72px, var(--max));
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .wrap {
    width: min(100% - 36px, var(--max));
  }

  .brand {
    min-width: 0;
    padding-right: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header.nav-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    position: static;
    font-size: 14px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 0 0;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 15px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #f3f4f6;
  }

  .site-nav a.active {
    background: rgba(109, 40, 217, 0.28);
    box-shadow: inset 0 0 0 1px rgba(216, 180, 254, 0.24);
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-header.nav-open .nav-cta {
    display: inline-flex;
  }

  .thank-header {
    min-height: 78px;
    padding: 14px 18px;
  }

  .thank-header > span {
    display: none;
  }

  .thank-hero,
  .thank-next {
    width: min(100% - 36px, var(--max));
  }

  .thank-hero {
    padding: 54px 0 28px;
  }

  .thank-copy {
    gap: 24px;
  }

  .thank-copy h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .thank-copy > p {
    font-size: 18px;
  }

  .thank-resource,
  .resource-preview,
  .use-card,
  .next-card {
    padding: 24px;
  }

  .resource-preview {
    min-height: 230px;
  }

  .thank-next {
    padding: 28px 0 64px;
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0;
    gap: 42px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  body[data-page="home"] h1 {
    font-size: clamp(42px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .hero-panel,
  .offer-card,
  .form-card,
  .quiz-card,
  .video-box,
  .proof-card {
    padding: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-bar,
  .proof-action,
  .footer-grid,
  .final-grid {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .path-grid,
  .feature-grid,
  .result-grid,
  .step-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn,
  .final-grid .btn {
    width: 100%;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}
