:root {
  --bg: #ffffff;
  --bg-alt: #F2F6FA;
  --text: #1a1a1a;
  --muted: #757575;
  --blue: #0167DC;
  --blue-light: #E6F0FB;
  --gold: #E1B238;
  --red: #D44F3A;
  --dark: #1a1a1a;
  --border: rgba(0,0,0,0.09);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08), 0 8px 28px rgba(0,0,0,0.07);
  --radius: 16px;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; }

.wrap { width: min(100%, var(--wrap)); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; margin-inline: auto; text-align: center; }
.section { padding: 64px 0; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.nav-logo em { font-style: normal; color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #BDD3E9 0%, #CCDff0 25%, #DDEAF6 55%, #EEF4FA 85%, #F5F8FC 100%);
  padding-top: 64px;
  padding-bottom: 72px;
  text-align: center;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 auto 28px;
}
.eyebrow-pill img { width: 16px; height: 16px; }
.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}
.hero .subline {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.hero .lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.video-card {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 28px;
  display: block;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 28px;
  padding-left: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.event-pills > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.event-pills img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.trusted {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.trusted img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── CTA BUTTON ── */
.cta-dark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 28px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cta-dark:hover { opacity: 0.86; }
.cta-dark small {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
}
.cta-dark small img { width: 13px; height: 13px; filter: invert(1); }
.cta-block { width: min(100%, 520px); margin-inline: auto; display: flex; }

/* ── WORKSHOP CARD SECTION ── */
.wc-section { background: var(--bg); }
.section-title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}
.workshop-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.wc-banner {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0e2a50 0%, #0a3d7a 100%);
  padding: 28px 0 0 28px;
  overflow: hidden;
  gap: 0;
}
.wc-banner-content {
  flex: 1;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}
.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.wc-banner-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.wc-banner-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.wc-coach-img {
  width: 165px;
  height: 165px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.wc-system-art {
  width: 118px;
  height: 118px;
  object-fit: contain;
  align-self: center;
  margin-right: -24px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.16));
}
.wc-body {
  background: #fff;
  padding: 20px 24px 24px;
}
.wc-mentor-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.wc-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.wc-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.wc-rating { text-align: right; }
.wc-stars {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 8px;
}
.wc-exc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  display: block;
  text-align: right;
  margin-top: 4px;
}
.wc-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 16px;
}
.wc-learn-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.wc-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 58px;
}
.wc-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.wc-price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.wc-learn-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wc-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.wc-list li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex-shrink: 0;
}
.wc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--bg-alt); }
.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.86; }

/* ── PROBLEM ── */
.problem { background: var(--bg-alt); }
.center-muted {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  margin: 14px 0 20px;
}
.red-head {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  margin-bottom: 24px;
}
.pain-list {
  width: min(100%, 600px);
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
}
.pain-list li {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-sm);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insight-card strong.text-red { font-size: 26px; }
.h-icon { display: inline-block; vertical-align: middle; width: 34px; height: 34px; }

/* ── PROOF ── */
.proof { background: #fff; }
.proof-title { max-width: 860px; margin-inline: auto; margin-bottom: 36px; }
.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.proof-card {
  padding: 28px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  line-height: 1.25;
  border: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  align-items: start;
}
.testimonials-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testimonials-grid img:nth-child(4) { grid-column: 1 / 2; justify-self: end; }
.testimonials-grid img:nth-child(5) { grid-column: 2 / 3; }

/* ── COACH ── */
.coach { background: var(--bg-alt); }
.coach-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 32px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.coach-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.coach-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.coach-cert {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 32px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-card strong {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}
.coach-bio {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.65;
}

/* ── LEARN ── */
.learn { background: #fff; }
.learn .section-title { margin-bottom: 36px; }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.learn-grid div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}
.concept-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.concept-icons {
  width: 82px;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  flex-shrink: 0;
}
.concept-icons img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-left: -9px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
.concept-icons img:first-child { margin-left: 0; }

/* ── DISCOVER ── */
.discover { background: var(--bg-alt); }
.discover .section-title { margin-bottom: 32px; }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.discover-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius);
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 1.35;
}
.discover-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

/* ── FIT ── */
.fit { background: #fff; }
.fit .section-title { margin-bottom: 28px; }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 40px;
}
.fit-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.fit-no {
  border-color: rgba(212,79,58,0.2);
  background: rgba(212,79,58,0.04);
}
.fit-yes {
  border-color: rgba(1,103,220,0.2);
  background: rgba(1,103,220,0.04);
}
.fit-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 16px;
}
.fit-no h3 { color: var(--red); }
.fit-yes h3 { color: var(--blue); }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li {
  padding: 9px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.fit-card li:last-child { border-bottom: 0; }
.steps-list {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin: 32px auto;
}
.steps-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  transition: opacity 0.15s;
}
.steps-list a:hover { opacity: 0.88; }
.steps-icon { width: 26px; height: 26px; flex-shrink: 0; filter: invert(1); }

/* ── FAQ ── */
.faq { background: var(--bg-alt); }
.faq .section-title { margin-bottom: 32px; }
.accordion { max-width: 820px; margin: 0 auto; }
details {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
summary::-webkit-details-marker { display: none; }
details p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  padding: 24px 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 10px;
}
footer a { color: rgba(255,255,255,0.55); }
footer a::after { content: "|"; margin: 0 10px; color: rgba(255,255,255,0.25); }
footer a:last-child::after { content: ""; margin: 0; }
footer p { text-align: center; max-width: 1200px; margin: 0 auto; }

/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.88);
}
.modal[hidden] { display: none; }
.modal iframe {
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  border-radius: 12px;
}
.modal-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── RESPONSIVE ── */
/* LEAD FORM MODAL */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
}
.lead-modal[hidden] { display: none; }
.lead-dialog {
  width: min(100%, 520px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
  padding: 28px;
}
.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.lead-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--gold);
  border-radius: 100px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.lead-dialog h2 {
  max-width: 420px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 10px;
}
.lead-copy {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}
.lead-form {
  display: grid;
  gap: 14px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.lead-form input,
.lead-form select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 13px 14px;
  outline: 0;
}
.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(1,103,220,0.55);
  box-shadow: 0 0 0 4px rgba(1,103,220,0.12);
  background: #fff;
}
.serious-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--blue-light);
  border: 1px solid rgba(1,103,220,0.18);
  border-radius: 12px;
}
.serious-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.lead-error {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(212,79,58,0.1);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.lead-submit {
  border: 0;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  padding: 15px 18px;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.lead-submit:hover { opacity: 0.88; }
.lead-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 26px; }
  .hero { padding-top: 44px; padding-bottom: 52px; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 17px; }
  .eyebrow-pill { font-size: 13px; padding: 6px 14px; }
  .event-pills { gap: 8px; }
  .event-pills > span { font-size: 13px; padding: 7px 14px; }
  .cta-dark { font-size: 16px; padding: 14px 20px; }
  .nav-logo { font-size: 15px; }
  .nav-cta { padding: 7px 13px; font-size: 13px; }
  .wc-banner { padding: 22px 0 0 20px; }
  .wc-banner-content h3 { font-size: 24px; }
  .wc-system-art {
    width: 82px;
    height: 82px;
    margin-right: -16px;
  }
  .wc-coach-img { width: 120px; height: 120px; }
  .wc-learn-row { flex-direction: column; gap: 12px; }
  .wc-actions { grid-template-columns: 1fr; }
  .three-cards,
  .stats-row,
  .learn-grid,
  .discover-grid,
  .fit-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid img:nth-child(n) { grid-column: auto; justify-self: auto; }
  .coach-card { flex-direction: column; text-align: center; }
  .red-head { font-size: 36px; }
  .steps-list a { font-size: 18px; }
  .proof-title { font-size: 22px; }
  .learn-grid div { align-items: flex-start; }
  .concept-icon { width: 54px; height: 54px; }
  .discover-card img { width: 96px; height: 96px; }
  .lead-dialog {
    padding: 24px 18px 20px;
    border-radius: 14px;
  }
  .lead-dialog h2 { font-size: 24px; }
}
