@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../font/nunito-sans-var.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --green-deepest: #12351d;
  --green-dark: #1c4f2b;
  --green: #2e6a3a;
  --green-light: #e6f2e9;
  --yellow: #fec12b;
  --gold-text: #8a6410;
  --yellow-light: #fff6e0;
  --heading: #1a2024;
  --body: #3c444c;
  --muted: #5f6b75;
  --border: #e2e6ea;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(18, 53, 29, 0.08);
  --shadow-md: 0 22px 60px rgba(18, 53, 29, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1160px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 104px 0;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.section-dark::before,
.section-dark::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(254, 193, 43, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-dark::before {
  top: -220px;
  right: 8%;
}

.section-dark::after {
  bottom: -260px;
  left: -80px;
}

.section-heading {
  width: min(100%, 790px);
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading > p:last-child {
  margin-inline: auto;
  max-width: 720px;
  font-size: 1.08rem;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading-on-dark h2,
.section-heading-on-dark p {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: var(--yellow);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-yellow {
  background: var(--yellow);
  color: var(--green-deepest);
  box-shadow: 0 10px 25px rgba(18, 53, 29, 0.14);
}

.button-yellow:hover {
  background: #ffd05d;
  box-shadow: 0 14px 30px rgba(18, 53, 29, 0.22);
}

.button-green {
  background: var(--green);
  color: var(--white);
}

.button-green:hover {
  background: var(--green-dark);
}

.button-ghost-on-dark {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: var(--white);
}

.button-ghost-on-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
}

.button-block {
  width: max-content;
}

.microcopy {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.microcopy-on-dark {
  color: rgba(255, 255, 255, 0.8);
}

/* Header and brand */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(18, 53, 29, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--green-deepest);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid var(--green-deepest);
  border-radius: 14px;
  background:
    linear-gradient(to right, var(--yellow) 0 50%, var(--yellow-light) 50% 100%) top / 100% 50% no-repeat,
    linear-gradient(to right, var(--green) 0 50%, var(--green-dark) 50% 100%) bottom / 100% 50% no-repeat;
}

.brand-symbol {
  position: absolute;
  display: grid;
  width: 50%;
  height: 50%;
  place-items: center;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.brand-symbol-plus {
  top: 0;
  left: 0;
  color: var(--green-deepest);
  font-size: 1.08rem;
}

.brand-symbol-minus {
  top: 0;
  right: 0;
  color: var(--green-deepest);
  font-size: 1.12rem;
}

.brand-symbol-times {
  bottom: 0;
  left: 0;
  color: var(--white);
  font-size: 1.08rem;
}

.brand-symbol-divide {
  right: 0;
  bottom: 0;
  color: var(--white);
  font-size: 1.12rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.brand-copy strong span {
  color: var(--green);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--heading);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--green);
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--green-deepest);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  padding: 86px 0 96px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(48px, 7vw, 88px);
}

.hero-copy h1 {
  color: var(--white);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.13rem;
}

.hero-points {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
}

.hero-points span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy .microcopy {
  margin-top: 14px;
}

.hero-visual {
  position: relative;
  display: block;
  padding: 12px;
  transform: rotate(1.2deg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 18px 20px 0 rgba(18, 53, 29, 0.36), var(--shadow-md);
  color: var(--green-deepest);
  text-decoration: none;
  transition: transform 220ms ease;
}

.hero-visual:hover {
  transform: rotate(0) translateY(-4px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.hero-video-frame {
  border-radius: 12px;
}

.hero-visual-label {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 24px;
  padding: 8px 14px;
  transform: rotate(-2deg);
  border: 2px solid var(--green-deepest);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-visual-note {
  display: block;
  padding: 12px 4px 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.video-external-link {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 5px auto 2px;
  color: var(--green-deepest);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 2px;
}

.video-state-control {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 0;
  padding: 8px 16px;
  border: 2px solid var(--green-deepest);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.video-state-control[hidden] {
  display: none;
}

.video-state-control:hover {
  background: var(--yellow-hover);
}

.video-state-icon {
  min-width: 16px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

/* Proof and summary */

.proof-strip {
  padding: 92px 0 84px;
  background: var(--white);
}

.proof-heading {
  margin-bottom: 38px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.proof-quote,
.proof-video {
  min-height: 350px;
  border-radius: var(--radius-md);
}

.proof-quote {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  background: var(--yellow-light);
}

.proof-quote::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(254, 193, 43, 0.3);
  border-radius: 50%;
  content: "";
}

.quote-mark {
  height: 48px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.proof-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--heading);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.5;
}

.quote-person {
  margin-bottom: 10px;
  color: var(--green-deepest);
  font-weight: 800;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.proof-video {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--green-deepest);
  color: var(--white);
  text-decoration: none;
}

.proof-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.proof-video-frame:hover img {
  transform: scale(1.035);
}

.proof-video-frame {
  min-height: 350px;
  aspect-ratio: 4 / 3;
}

.proof-video-overlay {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.4;
  pointer-events: none;
}

.proof-video-link {
  margin: 5px auto 10px;
  padding-inline: 16px;
  color: var(--white);
}

.trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--green-deepest);
  font-weight: 800;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list span {
  color: var(--green);
}

.service-summary {
  padding: 42px 0;
  background: var(--green-deepest);
  color: var(--white);
}

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

.summary-item {
  display: grid;
  min-height: 160px;
  align-content: center;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.summary-item:last-child {
  border-right: 0;
}

.summary-icon {
  display: inline-flex;
  width: max-content;
  min-width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding-inline: 7px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.summary-item h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.summary-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Feature and benefit cards */

.card-grid,
.benefit-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  padding: 32px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 29, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 18px solid var(--green-light);
  border-radius: 50%;
  content: "";
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-card h3 {
  min-height: 58px;
  color: var(--green-deepest);
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 0.96rem;
  line-height: 1.65;
}

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

.benefit-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 106, 58, 0.35);
  box-shadow: var(--shadow-sm);
}

.benefit-card-highlight {
  border-color: rgba(254, 193, 43, 0.5);
  background: var(--yellow-light);
}

.math-chip {
  display: inline-flex;
  min-width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 9px;
  border-radius: 9px;
  background: var(--green-light);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.benefit-card-highlight .math-chip {
  background: var(--yellow);
}

.benefit-card p {
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Inline class videos */

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0b0d0c;
}

.video-frame img,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 53, 29, 0.48));
  content: "";
  pointer-events: none;
}

.video-frame.is-playing::after {
  display: none;
}

.video-launch {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  color: var(--green-deepest);
  cursor: pointer;
  transition: transform 180ms ease;
}

.video-launch:hover {
  transform: translate(-50%, -50%) scale(1.07);
}

.video-launch span {
  margin-left: 3px;
  font-size: 1.125rem;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

.testimonial-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(18, 53, 29, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  margin-bottom: 20px;
  color: var(--heading);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.58;
}

.testimonial-name {
  margin-bottom: 7px;
  color: var(--green-deepest);
  font-weight: 800;
}

.testimonial-summary,
.student-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.text-button {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 9px 0 5px;
  border: 0;
  border-bottom: 2px solid var(--green);
  background: transparent;
  color: var(--green-deepest);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
}

.text-button span {
  font-size: 0.9em;
}

.disclaimer-centered {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: center;
}

.student-testimonials {
  background: var(--white);
}

.student-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 400px;
}

.student-card {
  display: grid;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  grid-template-columns: minmax(0, 1fr) 190px;
}

.student-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.poster-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: 0;
  align-self: center;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  background: var(--green-light);
  cursor: pointer;
}

.poster-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-button > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 53, 29, 0.92);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Trial steps and prices */

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
}

.steps-grid li {
  position: relative;
  padding: 30px 24px;
  border: 1px solid rgba(18, 53, 29, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
}

.steps-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -17px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(18, 53, 29, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  content: "→";
  font-weight: 800;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.steps-grid p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 30px;
  border: 1px solid var(--border);
  border-top: 6px solid var(--green);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-kicker {
  margin-bottom: 8px;
  color: var(--gold-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 2px;
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.price-per-session {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card .button {
  min-width: 200px;
  align-self: center;
  margin-top: auto;
}

.price-trial-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 30px 34px;
  border-radius: var(--radius-md);
  background: var(--green-deepest);
  color: var(--white);
}

.price-trial-box h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.price-trial-box p {
  color: rgba(255, 255, 255, 0.78);
}

.price-trial-box .button {
  flex: 0 0 auto;
}

/* FAQ */

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(18, 53, 29, 0.1);
  border-radius: 14px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  color: var(--heading);
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  place-items: center;
  border-radius: 9px;
  background: var(--green-light);
  color: var(--green-deepest);
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  background: var(--yellow);
  content: "−";
}

.faq-list details p {
  padding: 0 22px 22px;
  color: var(--body);
  line-height: 1.65;
}

/* Final CTA and footer */

.final-cta {
  padding: 82px 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 68px;
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.final-cta-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta-action .button {
  width: max-content;
  min-width: 220px;
}

.final-cta-action .microcopy {
  margin-top: 12px;
  font-size: 0.78rem !important;
}

.site-footer {
  padding: 72px 0 24px;
  background: #0f2b18;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.72fr);
  gap: 50px;
}

.brand-footer {
  margin-bottom: 20px;
  color: var(--white);
}

.brand-footer .brand-copy strong span {
  color: var(--yellow);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid > div:first-child p {
  max-width: 310px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.site-footer a:not(.brand) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer a:not(.brand):hover {
  color: var(--yellow);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.sticky-mobile-cta {
  display: none;
}

/* Lightbox */

.lightbox {
  width: min(calc(100% - 28px), 760px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.lightbox::backdrop {
  background: rgba(6, 20, 10, 0.78);
  backdrop-filter: blur(5px);
}

.lightbox-panel {
  display: flex;
  max-height: calc(100dvh - 32px);
  flex-direction: column;
}

.lightbox-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.lightbox-header h2 {
  margin: 0;
  font-size: 1rem;
}

.lightbox-close {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deepest);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox img {
  width: 100%;
  min-height: 0;
  object-fit: contain;
}

/* Legal pages */

.legal-page {
  background: #f7faf8;
}

.legal-hero {
  padding: 80px 0 88px;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 840px);
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-breadcrumb a {
  color: var(--white);
}

.legal-breadcrumb a:hover {
  color: var(--yellow);
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.4rem);
}

.legal-hero-lead {
  max-width: 760px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.72;
}

.legal-updated {
  display: inline-flex;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(254, 193, 43, 0.28);
  border-radius: 999px;
  background: rgba(18, 53, 29, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-content-section {
  padding: 82px 0 100px;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-toc h2 {
  margin-bottom: 17px;
  color: var(--green-deepest);
  font-size: 1rem;
  letter-spacing: 0;
}

.legal-toc nav {
  display: grid;
  gap: 3px;
}

.legal-toc a {
  display: grid;
  min-height: 42px;
  align-items: center;
  padding: 8px 7px;
  border-radius: 9px;
  color: var(--body);
  font-size: 0.86rem;
  font-weight: 700;
  grid-template-columns: 28px minmax(0, 1fr);
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a > span {
  color: var(--gold-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.legal-toc a:hover {
  background: var(--green-light);
  color: var(--green-deepest);
}

.legal-document {
  min-width: 0;
}

.legal-intro {
  margin-bottom: 22px;
  padding: 26px 30px;
  border: 1px solid rgba(138, 100, 16, 0.16);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius-sm);
  background: var(--yellow-light);
}

.legal-intro strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
}

.legal-intro p {
  margin: 0;
}

.legal-section {
  position: relative;
  margin-bottom: 18px;
  padding: 38px 42px;
  scroll-margin-top: calc(var(--header-height) + 24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 53, 29, 0.045);
}

.legal-section-number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.42rem, 2.4vw, 1.9rem);
  letter-spacing: -0.025em;
}

.legal-section h3 {
  margin-top: 26px;
}

.legal-section a {
  color: var(--green-dark);
  font-weight: 800;
}

.legal-section ol,
.legal-section ul {
  margin: 0;
  padding-left: 1.35rem;
}

.legal-section li {
  padding-left: 0.25rem;
}

.legal-section li + li {
  margin-top: 11px;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section p + ol {
  margin-top: 16px;
}

.legal-table-wrapper {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.legal-table th {
  background: var(--green-light);
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.82rem;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-next-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid rgba(18, 53, 29, 0.1);
  border-radius: var(--radius-md);
  background: var(--green-light);
}

.legal-next-page > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-next-page a {
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.site-footer a[aria-current="page"] {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
}

/* Confirmation payment form */

.form-page {
  background: #f7faf8;
}

.form-hero {
  padding-bottom: 74px;
}

.confirmation-section {
  padding: 78px 0 100px;
}

.confirmation-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
}

.confirmation-guide {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 32px;
  border: 1px solid rgba(18, 53, 29, 0.1);
  border-radius: var(--radius-md);
  background: var(--green-light);
}

.confirmation-guide h2 {
  margin-bottom: 24px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.confirmation-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.confirmation-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.confirmation-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--green);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.confirmation-steps p {
  margin: 3px 0 0;
  line-height: 1.55;
}

.confirmation-note {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(138, 100, 16, 0.16);
  border-radius: var(--radius-sm);
  background: var(--yellow-light);
}

.confirmation-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
}

.confirmation-note p {
  font-size: 0.93rem;
  line-height: 1.55;
}

.confirmation-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.confirmation-card-heading {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.confirmation-card-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
}

.confirmation-form {
  display: grid;
  gap: 24px;
}

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

.form-field label,
.form-fieldset legend {
  color: var(--green-deepest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #cdd5cf;
  border-radius: 11px;
  background: var(--white);
  color: var(--heading);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field select,
.form-field textarea {
  font: inherit;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #9dab9f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 106, 58, 0.12);
  outline: 0;
}

.form-field input::placeholder {
  color: #7d8780;
}

.form-field small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.input-with-prefix {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid #cdd5cf;
  border-radius: 11px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-with-prefix:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 106, 58, 0.12);
}

.input-with-prefix > span {
  padding: 0 14px;
  color: var(--green-deepest);
  font-weight: 800;
}

.input-with-prefix input {
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.input-with-prefix input:focus {
  box-shadow: none;
}

.form-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-fieldset legend {
  margin-bottom: 10px;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(18, 53, 29, 0.12);
  border-radius: var(--radius-sm);
  background: #f7faf8;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.form-consent a {
  color: var(--green-dark);
  font-weight: 800;
}

.confirmation-submit {
  width: max-content;
  min-width: 250px;
  border: 0;
  cursor: pointer;
}

.form-submit-note {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-status {
  margin: -6px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-deepest);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
    gap: 48px;
  }

  .card-grid-four,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card h3 {
    min-height: 0;
  }

  .steps-grid li:nth-child(2)::after {
    display: none;
  }

  .student-card {
    grid-template-columns: minmax(0, 1fr) 160px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 78px;
  }

  .form-page {
    padding-bottom: 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 28px;
    transform: translateY(-120%);
    border-top: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 24px 40px rgba(18, 53, 29, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 66px 0 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .proof-grid,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-heading {
    position: static;
  }

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

  .summary-item:nth-child(2) {
    border-right: 0;
  }

  .summary-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .parent-grid,
  .student-grid {
    grid-template-columns: 1fr;
  }

  .student-card {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .final-cta-inner {
    gap: 28px;
  }

  .final-cta-action {
    align-items: flex-start;
    max-width: 420px;
    text-align: left;
  }

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

  .sticky-mobile-cta {
    position: fixed;
    z-index: 90;
    right: auto;
    bottom: 14px;
    left: 50%;
    display: flex;
    width: min(calc(100% - 32px), 420px);
    min-height: 50px;
    transform: translateX(-50%);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .sticky-mobile-cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .sticky-mobile-cta.is-hidden {
    transform: translate(-50%, 130%);
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
    line-height: 1.72;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading > p:last-child {
    font-size: 1rem;
  }

  .section-action {
    margin-top: 30px;
  }

  .section-action .button {
    width: max-content;
    min-width: 220px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.57rem;
  }

  .hero {
    padding: 52px 0 68px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11.2vw, 3.2rem);
    line-height: 1.14;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

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

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .hero-actions .button {
    width: max-content;
    min-width: 220px;
  }

  .hero-visual {
    padding: 8px;
    border-radius: 16px;
    box-shadow: 10px 12px 0 rgba(18, 53, 29, 0.32), var(--shadow-md);
  }

  .hero-visual-label {
    left: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.68rem;
  }

  .proof-strip {
    padding: 66px 0;
  }

  .proof-quote,
  .proof-video {
    min-height: 290px;
  }

  .proof-quote {
    padding: 30px 24px;
  }

  .proof-video-overlay {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .summary-item,
  .summary-item:nth-child(2),
  .summary-item:nth-child(-n + 2) {
    min-height: 0;
    padding: 24px 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .summary-item:last-child {
    border-bottom: 0;
  }

  .card-grid-four,
  .benefit-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .benefit-card,
  .testimonial-card,
  .student-card-copy,
  .steps-grid li,
  .price-card {
    padding: 26px 22px;
  }

  .pricing-grid .price-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .hero-video-frame {
    aspect-ratio: 4 / 3;
  }

  .proof-video-frame {
    min-height: 290px;
    aspect-ratio: 16 / 10;
  }

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

  .student-card {
    grid-template-columns: 1fr;
  }

  .student-grid {
    grid-auto-rows: auto;
  }

  .poster-button {
    min-height: auto;
    aspect-ratio: 1 / 0.88;
  }

  .steps-grid li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }

  .price-trial-box {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .price-trial-box .button {
    width: max-content;
    min-width: 220px;
    align-self: center;
  }

  .faq-list summary {
    padding: 16px 52px 16px 18px;
    font-size: 0.93rem;
  }

  .final-cta-action {
    align-items: center;
    text-align: center;
  }

  .faq-list details p {
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: 66px 0;
  }

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

  .footer-bottom {
    margin-top: 38px;
  }
}

@media (max-width: 860px) {
  .legal-hero {
    padding: 66px 0 74px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .confirmation-guide {
    position: static;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 54px 0 62px;
  }

  .legal-breadcrumb {
    margin-bottom: 26px;
  }

  .legal-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .legal-hero-lead {
    font-size: 1.02rem;
  }

  .legal-content-section {
    padding: 54px 0 72px;
  }

  .legal-toc {
    padding: 20px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    padding: 22px 20px;
  }

  .legal-section {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .legal-section ol,
  .legal-section ul {
    padding-left: 1.18rem;
  }

  .legal-next-page {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
    gap: 9px;
  }

  .confirmation-section {
    padding: 54px 0 72px;
  }

  .confirmation-guide,
  .confirmation-card {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .confirmation-card-heading {
    margin-bottom: 26px;
    padding-bottom: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .confirmation-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
