:root {
  --ink: #172126;
  --muted: #5f6d72;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #087f7a;
  --teal-dark: #075f5d;
  --aqua: #d9f0ed;
  --sun: #f4bf3a;
  --coral: #e96b50;
  --line: #dfe8e6;
  --shadow: 0 18px 50px rgba(23, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 32, 34, 0.72), rgba(7, 32, 34, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.main-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  display: none;
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .header-cta {
  color: var(--white);
  background: var(--teal);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 127, 122, 0.24);
}

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

.button.secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.button.secondary.light {
  color: var(--teal-dark);
  border-color: rgba(8, 127, 122, 0.35);
  background: var(--white);
}

.button.dark {
  color: var(--ink);
  background: var(--sun);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 32, 34, 0.9), rgba(7, 32, 34, 0.6) 42%, rgba(7, 32, 34, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 32, 34, 0.18), rgba(7, 32, 34, 0.06));
}

.hero-content {
  position: relative;
  width: min(1040px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 80px;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.2rem, 6.8vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

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

.intro-band,
.section,
.route-section,
.school-band {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background: var(--white);
}

.intro-grid,
.school-band,
.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p,
.section-heading p,
.school-band p,
.signup-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.feature-grid,
.boost-grid,
.pricing-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

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

.feature-card,
.boost-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
}

.seo-section {
  background: linear-gradient(180deg, var(--paper), #eef8f5);
}

.seo-grid .feature-card {
  display: flex;
  flex-direction: column;
}

.ai-answer-section {
  background: var(--white);
}

.answer-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.answer-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.route-section {
  background: #123438;
  color: var(--white);
}

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

.timeline {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.timeline li {
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sun);
}

.timeline span {
  color: rgba(255, 255, 255, 0.78);
}

.boost-section {
  background: linear-gradient(180deg, var(--paper), #eef8f5);
}

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

.boost-card {
  padding: 24px;
}

.boost-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.online-section {
  background: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.prices-section {
  background: var(--white);
}

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

.package-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  min-height: auto;
  gap: 10px;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.single-lesson {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.single-lesson p {
  color: var(--muted);
}

.single-lesson .button {
  margin-top: 10px;
}

.pricing-part {
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-part + .pricing-part {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: clamp(36px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.pricing-part-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.pricing-part-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

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

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

.single-program-grid {
  grid-template-columns: minmax(0, 0.5fr);
}

.program-note {
  max-width: 880px;
  margin: 0 0 22px;
  padding: 20px;
  border-left: 5px solid var(--sun);
  background: var(--paper);
}

.program-note h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.program-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.brugklasstart-note {
  margin-top: 28px;
}

.price-card {
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: 24px;
}

.price-card.highlight {
  border-color: rgba(8, 127, 122, 0.38);
  background: var(--aqua);
}

.price-card.main-choice {
  border-width: 2px;
}

.price-card.secondary-choice {
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.price {
  margin: 8px 0 14px;
  color: var(--teal);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 0.94rem;
  font-weight: 800;
}

.price-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.school-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 52, 56, 0.98), rgba(18, 52, 56, 0.88)),
    linear-gradient(135deg, var(--teal), var(--coral));
}

.school-band .section-kicker,
.school-band p {
  color: rgba(255, 255, 255, 0.84);
}

.school-note {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
}

.school-note > div {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.school-note h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.school-note p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.table-wrap {
  max-width: 1180px;
  margin: 30px auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-table caption {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: var(--aqua);
  font-weight: 900;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.signup-section {
  align-items: start;
}

.promise {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 20px;
  border-left: 5px solid var(--sun);
  background: var(--white);
}

.promise span {
  color: var(--muted);
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefd;
  color: var(--muted);
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd9d6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefd;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 191, 58, 0.42);
  border-color: var(--teal);
}

.full,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.76;
}

.form-note a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.about-hero {
  min-height: 82svh;
  align-items: center;
  padding-block: 92px 96px;
}

.school-hero {
  min-height: 82svh;
  align-items: center;
  padding-block: 92px 96px;
}

.about-hero h1,
.school-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.about-hero .hero-lead,
.about-hero .hero-copy,
.school-hero .hero-lead,
.school-hero .hero-copy {
  max-width: 680px;
}

.about-hero .hero-content,
.school-hero .hero-content {
  padding-top: 32px;
  padding-bottom: 24px;
}

.about-hero .hero-actions,
.school-hero .hero-actions {
  margin-top: 26px;
}

.about-text-section,
.about-split-section,
.promise-band,
.about-cta {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.about-text-section {
  background: var(--paper);
}

.about-text-section.white {
  background: var(--white);
}

.about-copy {
  max-width: 860px;
  margin: 0 auto;
}

.about-copy p,
.about-split p,
.about-cta p {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-split-section {
  background: var(--white);
}

.about-split {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 78px);
}

.about-approach {
  background: linear-gradient(180deg, var(--paper), #eef8f5);
}

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

.promise-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 52, 56, 0.98), rgba(18, 52, 56, 0.9)),
    linear-gradient(135deg, var(--teal), var(--coral));
}

.promise-band-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.promise-band .section-kicker {
  color: var(--sun);
}

.promise-band h2 {
  margin-bottom: 0;
}

.about-cta {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.school-support-section {
  background: var(--paper);
}

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

.school-groups-section {
  background: var(--white);
}

.school-mini-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.school-mini-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.school-mini-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.school-nuance {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.school-nuance > div {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.school-nuance {
  background: var(--white);
}

.school-nuance > div {
  border-left: 5px solid var(--sun);
  padding: 22px;
  background: var(--paper);
}

.school-nuance p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
}

.school-contact-cta {
  background: var(--paper);
}

.school-form-section {
  background: var(--white);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 14px;
}

.faq-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list h3 {
  margin-bottom: 8px;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.landing-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.definition-section {
  background: var(--paper);
}

.definition-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.definition-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.definition-list dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.definition-list dd {
  margin: 0;
  color: var(--muted);
}

.thanks-section {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) clamp(58px, 8vw, 108px);
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.92), rgba(251, 250, 246, 1)),
    url("assets/brugklasklaar-hero.png") center / cover;
}

.thanks-panel {
  width: min(760px, 100%);
  max-width: 760px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.thanks-panel h1 {
  color: var(--ink);
}

.thanks-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.checkbox-field {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fffefd;
}

.checkbox-field legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .feature-grid,
  .answer-grid,
  .boost-grid,
  .pricing-grid,
  .package-grid,
  .fixed-pricing-grid,
  .temporary-pricing-grid,
  .single-program-grid,
  .about-approach .feature-grid,
  .school-support-section .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 32, 34, 0.94), rgba(7, 32, 34, 0.52) 70%, rgba(7, 32, 34, 0.26)),
      linear-gradient(90deg, rgba(7, 32, 34, 0.38), rgba(7, 32, 34, 0.1));
  }

  .hero-content {
    width: min(calc(100vw - 32px), 358px);
    margin: 0 16px;
    padding: 92px 0 54px;
  }

  h1 {
    font-size: clamp(1.85rem, 7.6vw, 2.05rem);
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: min(100%, 22rem);
    font-size: 1.08rem;
    line-height: 1.32;
  }

  .hero-copy {
    max-width: min(100%, 22rem);
    font-size: 1rem;
  }

  .hero-actions {
    max-width: min(100%, 22rem);
  }

  .about-hero .hero-content {
    width: min(calc(100vw - 32px), 358px);
  }

  .about-hero {
    min-height: 88svh;
    align-items: end;
    padding-block: 86px 56px;
  }

  .about-hero .hero-content {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .school-hero {
    min-height: 88svh;
    align-items: end;
    padding-block: 86px 56px;
  }

  .school-hero .hero-content {
    width: min(calc(100vw - 32px), 358px);
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .about-hero h1,
  .school-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .about-hero .hero-lead,
  .school-hero .hero-lead {
    max-width: min(100%, 22rem);
    font-size: 1.08rem;
    line-height: 1.32;
  }

  .about-hero .hero-copy,
  .school-hero .hero-copy {
    max-width: min(100%, 22rem);
    font-size: 1rem;
  }

  .about-hero .hero-actions,
  .school-hero .hero-actions {
    max-width: min(100%, 22rem);
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .school-band,
  .signup-section,
  .about-split,
  .about-cta,
  .school-mini-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .answer-grid,
  .boost-grid,
  .pricing-grid,
  .package-grid,
  .fixed-pricing-grid,
  .temporary-pricing-grid,
  .single-program-grid,
  .about-approach .feature-grid,
  .school-support-section .feature-grid,
  .timeline,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .timeline li {
    min-height: auto;
  }

  .price-card {
    min-height: auto;
  }

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

  .thanks-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .thanks-panel {
    width: calc(100vw - 32px);
    min-width: 0;
    max-width: calc(100vw - 32px);
    padding: 24px;
  }

  .thanks-panel .hero-actions {
    max-width: 100%;
  }

  .thanks-panel .section-kicker,
  .thanks-panel p {
    max-width: 28ch;
  }

  .thanks-panel .button {
    max-width: 100%;
  }
}
