:root {
  --orange: #e45e00;
  --orange-dark: #c84405;
  --red: #ae2100;
  --startline: #003369;
  --green: #1b573b;
  --lime: #dfe200;
  --navy: #102a3a;
  --ink: #211816;
  --muted: #68605b;
  --paper: #f7f3ea;
  --line: #dfd7cc;
  --white: #fff;
  --header-height: 76px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.page-width {
  width: min(calc(100% - 56px), var(--page-width));
  margin-inline: auto;
}

.page-width--narrow {
  max-width: 1040px;
}

.section {
  padding-block: 104px;
}

.section--orange {
  color: #fff;
  background: var(--orange);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-align: center;
}

.section-kicker--light {
  color: rgba(255, 255, 255, .82);
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.45;
  text-align: center;
}

.section-title--orange {
  color: var(--orange);
}

.section-title--red {
  color: var(--red);
}

.section-lead {
  max-width: 800px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.sp-only {
  display: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header-height);
  padding: 10px 28px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(33, 24, 22, .1);
  backdrop-filter: blur(15px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(33, 24, 22, .1);
}

.site-header__brand {
  width: min(410px, 34vw);
}

.site-header__brand img {
  width: 100%;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 800;
}

.site-header__nav a {
  text-decoration: none;
}

.site-header__cta {
  display: flex;
  min-width: 232px;
  min-height: 52px;
  padding: 7px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1.25;
}

.site-header__cta small {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
}

.site-header__cta strong {
  color: var(--lime);
  font-weight: 900;
}

.site-header__cta span {
  font-size: 12px;
  font-weight: 900;
}

.site-header__toggle {
  display: none;
}

/* Hero */

.hero {
  padding: 30px 0 26px;
  margin-top: var(--header-height);
  background: var(--orange);
}

.hero__frame {
  position: relative;
  width: min(calc(100% - 64px), 1200px);
  min-height: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: #16110f;
}

.hero__photo,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__photo {
  background: url("../images/change-break-hero.webp") center / cover no-repeat;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(15, 11, 8, .1), rgba(15, 11, 8, .08) 42%, rgba(15, 11, 8, .8) 100%),
    linear-gradient(90deg, rgba(10, 8, 7, .3), transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 800px;
  padding: 42px 44px 40px;
  flex-direction: column;
  justify-content: space-between;
}

.hero__program-logo {
  width: min(760px, 75%);
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .2));
}

.hero__program-lockup {
  width: min(1040px, 94%);
}

.hero__program-title {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(70px, 8.4vw, 116px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .88;
  text-shadow: 0 5px 14px rgba(0, 0, 0, .24);
}

.hero__programs {
  display: grid;
  width: min(720px, 76%);
  margin-top: 18px;
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr .82fr 1.12fr;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .2));
}

.hero__programs img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.hero__copy {
  max-width: 800px;
  color: #fff;
}

.hero__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(43px, 5.4vw, 78px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.25;
}

.hero__copy > p:last-child {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.hero__badge {
  position: absolute;
  right: 36px;
  top: 180px;
  bottom: auto;
  width: 170px;
  height: 170px;
  margin: 0;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .2));
  object-fit: contain;
}

.proof-bar {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1200px);
  margin: -18px auto 0;
}

.proof-bar > img {
  width: 100%;
  filter:
    hue-rotate(22deg)
    saturate(1.18)
    brightness(1.12)
    drop-shadow(0 11px 16px rgba(33, 24, 22, .14));
}

.proof-bar__mobile {
  display: none;
}

.proof-caption {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* Comparison */

.comparison {
  background: #fff;
}

.comparison-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
}

.comparison-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.comparison-card h3 {
  margin: 0;
  padding: 13px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.comparison-card--muted h3 {
  background: #bbb8b4;
}

.comparison-card--active {
  border: 3px solid var(--orange);
}

.comparison-card--active h3,
.comparison-card--active > p {
  background-color: var(--orange) !important;
}

.comparison-card ol {
  display: grid;
  margin: 0;
  padding: 16px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}

.comparison-card li {
  position: relative;
  text-align: center;
}

.comparison-card li:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -9px;
  content: "→";
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.comparison-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.comparison-card li span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
}

.comparison-card > p {
  margin: 0;
  padding: 12px 15px;
  color: #fff;
  background: #bbb8b4;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.comparison-arrow {
  color: var(--orange);
  font-size: 38px;
  font-weight: 900;
  text-align: center;
}

.comparison-message {
  margin: 30px 0 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.comparison-message strong {
  color: var(--orange);
}

/* Process */

.process {
  background: var(--paper);
}

.process-flow {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 170px;
  gap: 13px;
  align-items: stretch;
}

.process-flow > i {
  display: none;
}

.process-step {
  position: relative;
  display: flex;
  min-height: 245px;
  padding: 25px 16px;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 2px solid;
  text-align: center;
}

.process-step:not(:nth-of-type(7))::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -25px;
  color: var(--orange);
  content: "→";
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.process-step--green {
  color: var(--green);
  border-color: var(--green);
}

.process-step--orange {
  color: var(--orange);
  border-color: var(--orange);
}

.process-step--red {
  color: var(--red);
  border-color: var(--red);
}

.process-step--startline {
  color: var(--startline);
  border-color: var(--startline);
}

.process-step > span {
  display: block;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 38px;
}

.process-step small {
  display: block;
  min-height: 30px;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 900;
}

.process-step__logo {
  width: 50%;
  height: 50px;
  min-height: 50px;
  margin: 18px 0 4px;
  object-fit: contain;
  object-position: center;
}

.process-step__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 12px 0;
  object-fit: cover;
}

.process-step__photo--startline {
  object-position: 78% center;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.process-result {
  display: grid;
  padding: 18px;
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
  place-content: center;
}

.process-summary {
  margin: 32px 0 0;
  padding: 0;
  color: var(--orange);
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

/* Future */

.future {
  padding-top: 0;
  color: #fff;
  background: var(--orange);
}

.future .section-kicker {
  color: rgba(255, 255, 255, .78);
}

.future .section-title {
  color: #fff;
}

.future__photo-strip {
  display: grid;
  height: 185px;
  margin-bottom: 92px;
  grid-template-columns: repeat(4, 1fr);
}

.future__photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future__photo-strip .future__photo-strip-india {
  object-position: 50% 66%;
}

.future-grid {
  display: grid;
  max-width: 980px;
  margin: 54px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.future-grid article {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, .18), rgba(10, 8, 6, .72)),
    var(--future-image) center / cover no-repeat;
  border-radius: 10px;
}

.future-card--01 {
  --future-image: url("../images/future-01.webp");
}

.future-card--02 {
  --future-image: url("../images/future-02.webp");
}

.future-card--03 {
  --future-image: url("../images/future-03.webp");
}

.future-card--04 {
  --future-image: url("../images/future-04.webp");
}

.future-card--05 {
  --future-image: url("../images/future-05.webp");
}

.future-card--06 {
  --future-image: url("../images/future-06.webp");
}

.future-card--07 {
  --future-image: url("../images/future-07.webp");
}

.future-card--08 {
  --future-image: url("../images/future-08.webp");
}

.future-grid span {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 32px;
}

.future-grid p {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

/* Buttons and common CTA */

.button {
  position: relative;
  display: inline-flex;
  min-height: 76px;
  padding: 15px 62px 15px 26px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid currentColor;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  transform: translateY(-2px);
}

.button__label {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.button__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6c625c;
  font-size: 12px;
  font-weight: 800;
}

.button__offer strong {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.button__arrow {
  position: absolute;
  right: 24px;
  font-size: 22px;
}

.button--orange {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.button--orange .button__offer {
  color: rgba(255, 255, 255, .72);
}

.button--orange .button__offer strong {
  color: var(--lime);
}

.button--white {
  background: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(33, 24, 22, .45);
}

.micro-notes {
  display: flex;
  margin: 18px 0 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.micro-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.micro-notes li::before {
  display: grid;
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  place-items: center;
}

.micro-notes li:first-child::before {
  content: "✓";
}

.micro-notes li:nth-child(2) {
  color: var(--red);
  font-weight: 900;
}

.micro-notes--light {
  color: rgba(255, 255, 255, .78);
}

.micro-notes--light li:nth-child(2) {
  color: var(--lime);
}

/* Session CTA */

.session {
  padding-block: 80px;
  background: #100d0c;
}

.session-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.52fr) minmax(330px, .76fr);
  background: #111;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.session-main {
  padding: 60px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(8, 7, 7, .96), rgba(8, 7, 7, .78)),
    url("../images/full-hero-landscape.webp") center / cover no-repeat;
}

.session-main .section-kicker {
  text-align: left;
}

.session-main h2 {
  margin: 0 0 20px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.4;
}

.session-main > p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.session-points {
  display: grid;
  margin: 28px 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.session-points li {
  padding: 13px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 700;
}

.session-points span {
  display: block;
  margin-bottom: 3px;
  color: var(--orange);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
}

.session-main .button {
  width: min(570px, 100%);
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.session-main .button__offer {
  color: rgba(255, 255, 255, .7);
}

.session-main .button__offer strong {
  color: var(--lime);
}

.session-main .micro-notes {
  max-width: 570px;
}

.diagnosis {
  display: flex;
  padding: 42px 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f2f5f5;
  text-align: center;
}

.diagnosis__eyebrow {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.diagnosis__icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 50%;
  font-size: 32px;
  place-content: center;
}

.diagnosis h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
}

.diagnosis__maincopy {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis__description {
  margin: 12px 0 0;
  color: #596871;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.diagnosis ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.diagnosis li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.8;
}

.diagnosis li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--navy);
  border-radius: 50%;
  content: "";
}

.button--diagnosis {
  width: 100%;
  min-height: 62px;
  margin-top: 20px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  font-size: 12px;
}

.diagnosis__note {
  margin: 11px 0 0;
  color: #66747c;
  font-size: 12px;
  font-weight: 700;
}

/* Program */

.program {
  border-top: 18px solid var(--orange);
}

.phase-overview {
  position: relative;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.phase-overview::before {
  position: absolute;
  z-index: 0;
  top: 46px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

.phase-card {
  position: relative;
  background: transparent;
  text-align: center;
}

.phase-card__stage {
  position: relative;
  z-index: 1;
  display: flex;
  height: 62px;
  align-items: flex-start;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}

.phase-card__stage::after {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  background: #fff;
  border: 4px solid;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.phase-card--green .phase-card__stage {
  color: var(--green);
}

.phase-card--green .phase-card__stage::after {
  border-color: var(--green);
}

.phase-card--orange .phase-card__stage {
  color: var(--orange);
}

.phase-card--orange .phase-card__stage::after {
  border-color: var(--orange);
}

.phase-card--red .phase-card__stage {
  color: var(--red);
}

.phase-card--red .phase-card__stage::after {
  border-color: var(--red);
}

.phase-card > img:not(.phase-card__logo) {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 14px solid;
}

.phase-card--green > img {
  border-color: var(--green) !important;
}

.phase-card--orange > img {
  border-color: var(--orange) !important;
}

.phase-card--red > img {
  border-color: var(--red) !important;
}

.phase-card > p {
  min-height: 48px;
  margin: 14px 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.phase-card__logo {
  width: 75%;
  height: 62px;
  margin: 0 auto;
  object-fit: contain;
}

.program-list {
  display: grid;
  max-width: 1000px;
  margin-top: 70px;
  margin-inline: auto;
  gap: 24px;
}

.program-detail {
  display: grid;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  min-height: 335px;
  padding: 28px;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  background: #fff;
  border: 14px solid;
}

.program-detail--green {
  border-color: var(--green);
}

.program-detail--orange {
  border-color: var(--orange);
}

.program-detail--red {
  border-color: var(--red);
}

.program-detail__copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, .8fr);
  align-content: start;
  column-gap: 25px;
}

.program-detail__copy > img {
  width: 90%;
  height: 78px;
  grid-column: 1 / -1;
  object-fit: contain;
  object-position: left center;
}

.program-detail h3 {
  grid-column: 1 / -1;
  margin: 15px 0 13px;
  font-size: 24px;
  font-weight: 900;
}

.program-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.95;
}

.program-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-detail li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 800;
  line-height: 2;
}

.program-detail li::before {
  position: absolute;
  top: .75em;
  left: 0;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.program-detail--green li {
  color: var(--green);
}

.program-detail--orange li {
  color: var(--orange);
}

.program-detail--red li {
  color: var(--red);
}

.program-detail__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 5px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}

.program-detail__link:hover,
.program-detail__link:focus-visible {
  gap: 18px;
  color: #b94500;
}

/* Mid CTA */

.mid-cta {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(78, 20, 5, .84), rgba(228, 94, 0, .8)),
    url("../images/mid-cta-background.webp") center 42% / cover no-repeat;
  text-align: center;
}

.mid-cta h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
}

.mid-cta p {
  margin: 14px 0 30px;
  font-size: 12px;
  font-weight: 600;
}

.mid-cta .button {
  width: min(900px, 100%);
}

/* Schedule */

.schedule {
  background: #fff;
}

.schedule-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.schedule-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--red);
  box-shadow: 0 10px 25px rgba(80, 35, 20, .08);
  text-align: center;
}

.schedule-grid span {
  color: var(--red);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.schedule-grid h3 {
  margin: 9px 0 5px;
  font-size: 17px;
  font-weight: 900;
}

.schedule-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.roadmap {
  position: relative;
  margin-top: 62px;
  padding: 34px 26px 38px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e0d8;
  box-shadow: 0 20px 60px rgba(71, 37, 22, .1);
}

.roadmap__phases {
  display: grid;
  margin: 0 0 30px;
  grid-template-columns: 2fr 1fr 4fr;
  gap: 12px;
}

.roadmap__phase {
  margin: 0;
  padding: 13px 16px;
  text-align: center;
}

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

.roadmap__phase strong {
  font-size: 22px;
  font-weight: 900;
}

.roadmap__phase span {
  margin-top: 3px;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .06em;
}

.roadmap__phase--before {
  color: var(--green);
  background: #eef6f1;
}

.roadmap__phase--journey {
  color: var(--orange);
  background: #fff1e8;
}

.roadmap__phase--after {
  color: var(--red);
  background: #fff0ed;
}

.roadmap ol {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  list-style: none;
}

.roadmap ol::before {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 5%;
  left: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0 28.5%, var(--orange) 28.5% 42.8%, var(--red) 42.8%);
  content: "";
}

.roadmap li {
  --roadmap-color: var(--red);
  position: relative;
  z-index: 1;
  min-height: 226px;
  padding: 0 10px 18px;
  background: #fff;
  border: 1px solid var(--roadmap-color);
  border-radius: 12px;
  text-align: center;
}

.roadmap li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: -2px auto 14px;
  color: #fff;
  background: var(--roadmap-color);
  border: 4px solid #fff;
  border-radius: 50%;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  place-content: center;
}

.roadmap__step--before {
  --roadmap-color: var(--green);
}

.roadmap__step--journey {
  --roadmap-color: var(--orange);
}

.roadmap strong,
.roadmap small {
  display: block;
}

.roadmap strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.roadmap small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.roadmap__goal {
  width: fit-content;
  margin: 28px auto 0;
  padding: 10px 28px;
  color: var(--red);
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
}

/* Reasons */

.reasons {
  position: relative;
  background:
    linear-gradient(110deg, rgba(92, 24, 5, .9), rgba(202, 49, 8, .87)),
    url("../images/full-dune-group.webp") center / cover no-repeat;
}

.reasons__inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: stretch;
}

.reasons__intro {
  display: flex;
  min-height: 490px;
  padding: 44px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(15, 10, 8, .05), rgba(15, 10, 8, .88)),
    url("../images/full-jeep.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 14px 14px 0 rgba(99, 21, 2, .35);
}

.reasons__intro .section-kicker {
  text-align: left;
}

.reasons h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.45;
}

.reasons__intro > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.reasons ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.reasons li {
  display: grid;
  padding: 20px 22px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-left: 6px solid var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.reasons li span {
  color: var(--orange);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 30px;
}

.reasons li strong,
.reasons li small {
  display: block;
}

.reasons li strong {
  font-size: 15px;
}

.reasons li small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

/* Formula */

.formula-equation {
  display: flex;
  margin-top: 46px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 900;
}

.formula-equation b {
  color: var(--red);
  font-size: 45px;
  font-weight: 400;
}

.formula-result {
  width: fit-content;
  margin: 22px auto 0;
  padding: 8px 26px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--line);
  font-size: 24px;
  font-weight: 900;
  transform: rotate(-2deg);
}

.formula-flow {
  display: block;
  margin-top: 60px;
}

.formula-flow img {
  width: 100%;
  height: auto;
}

/* Voices */

.voices {
  background: var(--paper);
}

.voices-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.voices-grid article {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
}

.voices-grid article > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.participant-photo--taiga {
  object-position: right center;
}

.participant-photo--k {
  object-position: center 58%;
}

.participant-photo--mizu {
  object-position: center 28%;
}

.voices-grid article > div {
  display: flex;
  flex: 1;
  padding: 24px;
  flex-direction: column;
}

.voices-grid .voice-card__tag {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.voices-grid h3 {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
}

.voices-grid p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.voices-grid small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.voices-note {
  margin: 20px 0 0;
  color: #8a817b;
  font-size: 12px;
  text-align: center;
}

/* Closing */

.closing-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: url("../images/change-break-final-background.webp") center / cover no-repeat;
}

.closing-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 12, 8, .86), rgba(22, 12, 8, .2));
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  padding-block: 80px;
  flex-direction: column;
  justify-content: center;
}

.closing-cta .section-kicker {
  text-align: left;
}

.closing-cta h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4;
}

.closing-cta p {
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.closing-cta .button {
  width: min(650px, 100%);
}

.closing-cta .micro-notes {
  max-width: 650px;
}

.closing-cta__diagnosis {
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

/* Stats */

.stats {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: url("../images/full-market.webp") center 45% / cover no-repeat;
}

.stats__shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 5, .72);
}

.stats__inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
  text-align: center;
}

.stats h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
}

.stats__main {
  margin: 25px 0 18px;
}

.stats__main strong {
  color: var(--lime);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 100px;
  line-height: 1;
}

.stats__main span {
  color: var(--lime);
  font-size: 20px;
  font-weight: 900;
}

.stats__grid {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats__grid div {
  padding: 15px 10px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.stats__grid div:last-child {
  border-right: 0;
}

.stats__grid strong {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 34px;
}

.stats__grid span {
  font-size: 12px;
  font-weight: 900;
}

.stats__grid small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.stats__inner > p:last-child {
  margin-top: 35px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

/* Other programs */

.other-programs-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.other-program {
  text-align: center;
}

.other-program > span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
}

.other-program > img:not(.other-program__logo) {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 12px solid;
}

.other-program--green > img {
  border-color: var(--green) !important;
}

.other-program--orange > img {
  border-color: var(--orange) !important;
}

.other-program--red > img {
  border-color: var(--red) !important;
}

.other-program__logo {
  width: 74%;
  height: 62px;
  margin: 18px auto 10px;
  object-fit: contain;
}

.other-program__after-logos {
  display: grid;
  width: min(360px, 94%);
  height: 62px;
  margin: 18px auto 10px;
  align-items: center;
  gap: 10px;
  grid-template-columns: 1fr auto 1.75fr;
}

.other-program__after-logos img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.other-program__after-logos span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.other-program p {
  min-height: 62px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.other-program a {
  display: flex;
  min-height: 50px;
  padding: 10px 18px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.other-program--green a {
  background: var(--green);
}

.other-program--orange a {
  background: var(--orange);
}

.other-program--red a {
  background: var(--red);
}

/* Footer */

.site-footer {
  padding: 48px 0 90px;
  color: #fff;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px 40px;
  align-items: center;
}

.site-footer img {
  width: 300px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 24px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  text-align: right;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 66px;
  }

  .site-header__brand {
    width: 280px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .site-header__toggle {
    position: relative;
    z-index: 4;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    place-content: center;
  }

  .site-header__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform .25s ease;
  }

  .site-header__toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    width: 100vw;
    height: 100dvh;
    padding: 100px 34px 70px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: var(--orange);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header__nav > a {
    padding: 13px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
    font-size: 17px;
  }

  .site-header__cta {
    margin-top: 12px;
    color: var(--ink) !important;
    background: #fff;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .site-header__cta small {
    color: var(--red);
    font-size: 12px;
  }

  .site-header__cta span {
    font-size: 15px;
  }

  .hero__frame,
  .hero__content {
    min-height: 720px;
  }

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

  .process-result {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .process-step:not(:nth-of-type(7))::after {
    display: none;
  }

  .session-shell {
    grid-template-columns: 1fr;
  }

  .diagnosis {
    padding-block: 60px;
  }

  .program-detail {
    grid-template-columns: 1fr .85fr;
  }

  .program-detail__copy {
    display: block;
  }

  .program-detail ul {
    margin-top: 15px;
  }
}

@media (max-width: 760px) {
  .page-width {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 70px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.5;
  }

  .section-lead {
    font-size: 12px;
    line-height: 1.9;
  }

  .sp-only {
    display: block;
  }

  .site-header {
    padding: 8px 15px;
  }

  .site-header__brand {
    width: min(235px, 72vw);
  }

  .hero {
    padding: 18px 0 20px;
  }

  .hero__frame {
    width: calc(100% - 36px);
    min-height: 690px;
  }

  .hero__photo {
    background-image: url("../images/CHANGETHEBREAK-TOPFV-sp.webp");
    background-position: 60% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(12, 9, 7, .08), rgba(12, 9, 7, .22) 48%, rgba(12, 9, 7, .88) 100%);
  }

  .hero__content {
    min-height: 690px;
    padding: 24px 18px 26px;
  }

  .hero__program-logo {
    width: 100%;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    padding-right: 0;
    font-size: 32px;
    line-height: 1.35;
  }

  .hero__copy > p:last-child {
    padding-right: 20px;
    font-size: 12px;
  }

  .hero__badge {
    right: 13px;
    top: 165px;
    bottom: auto;
    width: 105px;
    height: 105px;
    padding: 12px 8px;
    font-size: 12px;
  }

  .hero__badge strong {
    font-size: 12px;
  }

  .proof-bar {
    width: min(calc(100% - 40px), 560px);
    margin-top: 20px;
  }

  .proof-bar > img {
    display: none;
  }

  .proof-bar__mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .proof-bar__mobile span {
    display: block;
    width: 100%;
    aspect-ratio: 2.45 / 1;
    background-color: #fff;
    background-image: url("../images/track-record-bar.webp");
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 14px;
    box-shadow: 0 5px 12px rgba(33, 24, 22, .1);
    filter: hue-rotate(22deg) saturate(1.18) brightness(1.12);
  }

  .proof-bar__mobile span:nth-child(1) {
    background-position: 11% center;
  }

  .proof-bar__mobile span:nth-child(2) {
    background-position: 38% center;
  }

  .proof-bar__mobile span:nth-child(3) {
    background-position: 65% center;
  }

  .proof-bar__mobile span:nth-child(4) {
    background-position: 92% center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .comparison-card ol {
    padding: 11px;
    gap: 6px;
  }

  .comparison-card img {
    height: 64px;
  }

  .comparison-card li span {
    font-size: 12px;
  }

  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-step {
    min-height: 200px;
    padding: 18px 10px;
  }

  .process-step > span {
    font-size: 29px;
  }

  .process-step__logo {
    height: 42px;
    min-height: 42px;
    margin-top: 10px;
  }

  .process-result {
    grid-column: 1 / -1;
    min-height: 100px;
  }

  .process-summary {
    font-size: 13px;
  }

  .future__photo-strip {
    height: 110px;
    margin-bottom: 65px;
  }

  .future-grid {
    margin-top: 36px;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .future-grid article {
    min-height: 160px;
    padding: 14px;
  }

  .session {
    padding: 0;
  }

  .session .page-width {
    width: 100%;
  }

  .session-main {
    padding: 55px 20px;
  }

  .session-main h2 {
    font-size: 31px;
  }

  .session-points {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 72px;
    padding: 13px 45px 13px 15px;
    font-size: 13px;
  }

  .button__arrow {
    right: 16px;
  }

  .button__offer {
    gap: 5px;
    font-size: 12px;
  }

  .micro-notes {
    gap: 8px;
    font-size: 12px;
  }

  .micro-notes li {
    gap: 3px;
  }

  .diagnosis {
    padding: 55px 20px;
  }

  .diagnosis h3 {
    font-size: 24px;
  }

  .diagnosis__description {
    max-width: 360px;
  }

  .phase-overview {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
    padding-left: 32px;
    gap: 78px;
  }

  .phase-overview::before {
    top: 10px;
    right: auto;
    bottom: 0;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .phase-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .phase-card__stage {
    height: 52px;
    justify-content: flex-start;
    text-align: left;
  }

  .phase-card__stage::after {
    top: 2px;
    left: -32px;
    transform: none;
  }

  .phase-card > img:not(.phase-card__logo) {
    height: 230px;
  }

  .program-list {
    margin-top: 55px;
  }

  .program-detail {
    display: flex;
    padding: 18px;
    flex-direction: column;
    border-width: 10px;
  }

  .program-detail__copy > img {
    height: 60px;
  }

  .program-detail h3 {
    font-size: 20px;
  }

  .program-detail__photo {
    height: 230px;
  }

  .mid-cta h2 {
    font-size: 25px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .roadmap {
    padding: 26px 18px 30px;
  }

  .roadmap__phases {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .roadmap__phase {
    padding: 9px 12px;
    text-align: left;
  }

  .roadmap__phase strong,
  .roadmap__phase span {
    display: inline;
  }

  .roadmap__phase strong {
    margin-right: 10px;
    font-size: 17px;
  }

  .roadmap ol {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .roadmap ol::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 21px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--green) 0 28.5%, var(--orange) 28.5% 42.8%, var(--red) 42.8%);
  }

  .roadmap li {
    display: grid;
    min-height: 52px;
    padding: 14px 14px 14px 60px;
    grid-template-columns: 1fr;
    align-content: center;
    text-align: left;
  }

  .roadmap li > span {
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
  }

  .roadmap small {
    margin-top: 5px;
  }

  .roadmap__goal {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
  }

  .reasons__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reasons__intro {
    min-height: 430px;
    padding: 28px 24px;
    box-shadow: 8px 8px 0 rgba(99, 21, 2, .35);
  }

  .reasons h2 {
    font-size: 31px;
  }

  .reasons li {
    padding: 17px 15px;
    grid-template-columns: 52px 1fr;
  }

  .formula-equation {
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 18px;
  }

  .formula-equation b {
    font-size: 30px;
  }

  .formula-flow {
    width: min(100%, 470px);
    margin: 45px auto 0;
  }

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

  .closing-cta {
    min-height: 720px;
    background-position: 67% center;
  }

  .closing-cta__shade {
    background: linear-gradient(180deg, rgba(22, 12, 8, .3), rgba(22, 12, 8, .9) 62%);
  }

  .closing-cta__inner {
    min-height: 720px;
    padding-block: 70px 100px;
    justify-content: flex-end;
  }

  .closing-cta h2 {
    font-size: 34px;
  }

  .stats {
    min-height: 620px;
  }

  .stats h2 {
    font-size: 25px;
  }

  .stats__main strong {
    font-size: 72px;
  }

  .stats__grid {
    gap: 0;
  }

  .stats__grid strong {
    font-size: 25px;
  }

  .stats__grid small {
    display: none;
  }

  .other-programs-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .site-footer small {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 8px;
    left: 10px;
    display: flex;
    min-height: 68px;
    padding: 10px 45px 10px 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange);
    border: 1px solid #fff;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
  }

  .mobile-cta__label small {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
  }

  .mobile-cta__label strong {
    color: var(--lime);
  }

  .mobile-cta__arrow {
    position: absolute;
    right: 18px;
  }

  body.menu-open .mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Shared page consistency */

.site-header__cta small {
  font-size: 11px;
  font-weight: 600;
}

.site-header__cta small strong {
  font-weight: 600;
}

.site-header__cta span {
  font-size: 14px;
}

.session-shell,
.reasons__intro {
  border-color: transparent;
}

.stats__message {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.5;
}

.stats h2 {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}

.other-program > span,
.other-program p {
  min-height: 110px;
  font-size: 18px;
  font-weight: 700;
}

.other-program > span {
  min-height: 0;
}

.other-program--green > span,
.other-program--green p {
  color: var(--green);
}

.other-program--orange > span,
.other-program--orange p {
  color: var(--orange);
}

.other-program--red > span,
.other-program--red p {
  color: var(--red);
}

@media (max-width: 760px) {
  .other-program p {
    min-height: 0;
  }
}

/* Price-free plan comparison */
.package-options {
  background:
    linear-gradient(135deg, rgba(228, 94, 0, .055), transparent 45%),
    var(--paper);
}

.package-options__grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-option {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(53, 35, 25, .09);
  overflow: hidden;
}

.package-option--basic {
  border-color: rgba(27, 87, 59, .42);
}

.package-option--action {
  border-color: rgba(228, 94, 0, .42);
}

.package-option--deep {
  border: 4px solid var(--red);
  box-shadow: 0 18px 48px rgba(174, 33, 0, .15);
}

.package-option--break {
  border-color: rgba(174, 33, 0, .42);
}

.package-option__recommend {
  margin: 0;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-align: center;
}

.package-option__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  width: 72px;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 7px 18px rgba(20, 35, 26, .22);
}

.package-option--action .package-option__badge {
  background: var(--orange);
}

.package-option--deep .package-option__badge {
  top: 50px;
  background: var(--red);
}

.package-option__badge strong {
  font-size: 28px;
  line-height: 1;
}

.package-option__badge span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
}

.package-option__photo {
  width: 100%;
  height: 250px;
  border: 0;
  object-fit: cover;
}

.package-option__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 25px 30px;
}

.package-option__stage {
  min-height: 43px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.package-option--action .package-option__stage {
  color: var(--orange);
}

.package-option--deep .package-option__stage {
  color: var(--red);
}

.package-option--break .package-option__stage {
  color: var(--red);
}

.package-option__logo {
  width: 62%;
  height: 64px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.package-option__logos {
  display: grid;
  height: 64px;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  grid-template-columns: 1fr auto 1fr;
}

.package-option__logos--three {
  gap: 6px;
  grid-template-columns: 1fr auto .78fr auto 1fr;
}

.package-option__logos img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.package-option__logos span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.package-option__body h3 {
  min-height: 83px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.65;
}

.package-option__body > p:not(.package-option__stage) {
  min-height: 92px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.package-option__body ul {
  margin: auto 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-option__body li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.package-option__body li::before {
  position: absolute;
  left: 2px;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.package-option__body li > strong,
.package-option__body li > span {
  display: block;
}

.package-option__body li > strong {
  margin-bottom: 3px;
  color: var(--green);
  font-size: 12px;
}

.package-option--action .package-option__body li > strong {
  color: var(--orange);
}

.package-option--deep .package-option__body li > strong {
  color: var(--red);
}

.package-option--break .package-option__body li > strong {
  color: var(--red);
}

.phase-card__after-logos,
.program-detail__after-logos {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr;
}

.phase-card__after-logos {
  width: min(300px, 88%);
  margin-inline: auto;
}

.program-detail__after-logos {
  width: min(440px, 100%);
}

.phase-card__after-logos img,
.program-detail__after-logos img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.phase-card__after-logos span,
.program-detail__after-logos span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.package-option__body li > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.package-option__detail-link {
  display: flex;
  min-height: 56px;
  margin-top: 22px;
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.package-option__detail-link:hover,
.package-option__detail-link:focus-visible {
  color: var(--green);
  background: var(--white);
  transform: translateY(-2px);
}

.package-builder {
  width: min(100%, 1080px);
  margin: 52px auto 0;
  padding: 46px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(228, 94, 0, .27), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(174, 33, 0, .22), transparent 42%),
    #17120f;
  box-shadow: 0 24px 60px rgba(45, 29, 20, .2);
}

.package-builder__label {
  margin: 0 0 16px;
  color: #ff8a3d;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-align: center;
}

.package-builder__logos {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .95);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-builder__logos img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.package-builder__message {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
}

.package-builder__message p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.9;
}

.package-builder__message p + p {
  margin-top: 14px;
}

.package-builder__message strong {
  color: var(--white);
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.45;
}

.package-builder__points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.package-builder__points li {
  position: relative;
  padding: 15px 14px 15px 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.package-builder__points li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  color: #ff8a3d;
  content: "✓";
  font-weight: 900;
}

.package-options__session {
  display: grid;
  max-width: 920px;
  align-items: center;
  gap: 28px;
  margin: 32px auto 0;
  padding: 30px 34px;
  color: var(--white);
  border-radius: 10px;
  background: var(--navy);
  grid-template-columns: 1fr auto;
}

.package-options__session p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.package-options__session strong {
  font-size: 17px;
}

.package-options__session .button {
  min-width: 320px;
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 980px) {
  .package-options__grid {
    max-width: 700px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .package-option__photo {
    height: 350px;
  }

  .package-option__stage,
  .package-option__body h3,
  .package-option__body > p:not(.package-option__stage) {
    min-height: 0;
  }

  .package-option__logo {
    width: min(300px, 58%);
  }

  .package-option__logos {
    width: min(470px, 90%);
  }

  .package-options__session {
    grid-template-columns: 1fr;
  }

  .package-options__session .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .package-options__grid {
    margin-top: 32px;
  }

  .hero__programs {
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }

  .hero__program-title {
    font-size: clamp(44px, 14vw, 56px);
    line-height: .92;
  }

  .hero__programs img {
    max-height: 38px;
  }

  .package-option__photo {
    height: 230px;
  }

  .package-option__body {
    padding: 25px 21px 26px;
  }

  .package-option__badge {
    width: 62px;
    height: 62px;
  }

  .package-option__badge strong {
    font-size: 24px;
  }

  .package-option__body h3 {
    font-size: 19px;
  }

  .package-option__logo {
    width: min(245px, 72%);
  }

  .package-option__logos {
    width: 100%;
    gap: 7px;
  }

  .package-option__logos--three {
    gap: 5px;
  }

  .package-options__session {
    padding: 26px 20px;
  }

  .package-builder {
    margin-top: 34px;
    padding: 27px 20px;
    border-radius: 18px;
  }

  .package-builder__logos {
    gap: 18px 16px;
    padding: 22px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-builder__logos img {
    max-height: 48px;
  }

  .package-builder__message {
    margin-top: 26px;
  }

  .package-builder__message strong {
    font-size: 21px;
  }

  .package-builder__points {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
}
