:root {
  --brand-blue: #1f3a71;
  --brand-blue-light: #2d5599;
  --brand-orange: #f4b01f;
  --brand-white: #fcfcfc;
  --ink: #17213a;
  --muted: #5c687b;
  --line: #dce3ed;
  --soft: #f2f5fa;
  --header-height: 6rem;
  --shell: 76rem;
  --radius: 1.1rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--brand-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 0.18rem solid var(--brand-orange);
  outline-offset: 0.24rem;
}

/* 404 */
.error-page {
  position: relative;
  display: grid;
  min-height: 76vh;
  overflow: hidden;
  color: var(--brand-white);
  background: linear-gradient(125deg, #162f61 0%, var(--brand-blue) 58%, #315a9c 100%);
}

.error-page__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(20rem, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(9rem, 16vh, 13rem) clamp(5rem, 10vh, 8rem);
}

.error-page__code {
  color: rgba(252, 252, 252, 0.08);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 25vw, 22rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.06em;
  user-select: none;
}

.error-page__content {
  max-width: 47rem;
}

.error-page__content h1 {
  color: var(--brand-white);
}

.error-page__content > p:not(.eyebrow) {
  max-width: 41rem;
  color: rgba(252, 252, 252, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.error-page__actions,
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-top: 2rem;
}

.error-page__links {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(252, 252, 252, 0.18);
}

.error-page__links a {
  color: var(--brand-white);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.error-page__orbit {
  position: absolute;
  border: 1px solid rgba(244, 176, 31, 0.27);
  border-radius: 50%;
}

.error-page__orbit--one {
  top: 11%;
  right: -9rem;
  width: 31rem;
  height: 31rem;
}

.error-page__orbit--two {
  right: 25%;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
}

@media (max-width: 48rem) {
  .error-page__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 8.5rem 4rem;
  }

  .error-page__code {
    position: absolute;
    top: 7.5rem;
    right: 1rem;
    font-size: 11rem;
  }

  .error-page__content {
    position: relative;
    z-index: 1;
  }

  .error-page__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Protected booking management prototype */
.manage-booking-page {
  min-height: 70vh;
  background: #eef2f8;
}

.manage-booking-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(125deg, #f7f9fc 0%, #e7edf6 100%);
}

.manage-booking-hero--compact {
  padding-bottom: 2.6rem;
}

.manage-booking-hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.manage-booking-hero h1 {
  color: var(--brand-blue);
}

.manage-booking-hero p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
}

.manage-booking-hero__inner > span {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-size: 2rem;
  font-weight: 900;
}

.manage-booking-content {
  padding: 3rem 0 6rem;
}

.manage-booking-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(31, 58, 113, 0.07);
}

.manage-booking-summary > div {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem;
}

.manage-booking-summary > div + div {
  border-left: 1px solid var(--line);
}

.manage-booking-summary span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.manage-booking-summary strong {
  color: var(--brand-blue);
}

.manage-booking-timezone {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 1.2rem 0;
  color: var(--muted);
}

.manage-booking-timezone > span {
  color: var(--brand-orange);
  font-size: 1.3rem;
}

.manage-booking-timezone p {
  margin: 0;
}

.manage-booking-list {
  display: grid;
  gap: 0.8rem;
}

.manage-booking-item {
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(16rem, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1rem;
  background: #fff;
}

.manage-booking-item__date,
.manage-booking-item__detail {
  display: grid;
  gap: 0.25rem;
}

.manage-booking-item__date span,
.manage-booking-item__detail small {
  color: var(--muted);
  font-size: 0.8rem;
}

.manage-booking-item__date strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.manage-booking-item__detail span {
  color: var(--brand-blue);
  font-weight: 800;
}

.manage-booking-help {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-left: 0.25rem solid var(--brand-orange);
  border-radius: 0.6rem;
  background: #fff8e9;
}

.manage-booking-help p {
  margin: 0;
  color: var(--muted);
}

.manage-booking-help a {
  color: var(--brand-blue);
  font-weight: 900;
}

.manage-booking-invalid,
.manage-cancel-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(31, 58, 113, 0.08);
}

.manage-booking-invalid h2 {
  color: var(--brand-blue);
}

.manage-cancel-card__appointment {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.manage-cancel-card__appointment span,
.manage-cancel-card__appointment small {
  color: var(--muted);
}

.manage-cancel-card__appointment strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 3rem;
}

.manage-cancel-note {
  margin-top: 1.3rem;
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid #b46549;
  border-radius: 0.5rem;
  background: #fff1ec;
}

.manage-cancel-note--refund {
  border-left-color: #4b9569;
  background: #eef8f2;
}

.manage-cancel-note p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.manage-cancel-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.button--danger {
  border-color: #a33d38;
  background: #a33d38;
  color: #fff;
}

@media (max-width: 56rem) {
  .manage-booking-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manage-booking-summary > div:nth-child(3) {
    border-left: 0;
  }

  .manage-booking-summary > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .manage-booking-item {
    grid-template-columns: 1fr auto;
  }

  .manage-booking-item__detail {
    grid-column: 1;
  }

  .manage-booking-item form {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .manage-booking-help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 38rem) {
  .manage-booking-hero__inner > span {
    display: none;
  }

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

  .manage-booking-summary > div + div,
  .manage-booking-summary > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .manage-booking-item {
    grid-template-columns: 1fr;
  }

  .manage-booking-item form {
    grid-column: 1;
    grid-row: auto;
  }

  .manage-booking-item .button,
  .manage-cancel-actions .button {
    width: 100%;
  }

  .manage-cancel-actions {
    display: grid;
  }
}

.error-page .error-page__content h1 {
  color: var(--brand-white);
}

.error-page .error-page__content .eyebrow {
  color: var(--brand-orange);
}

.shell {
  width: min(var(--shell), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  border-radius: 0.45rem;
  background: var(--brand-white);
  color: var(--brand-blue);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--brand-white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--brand-blue);
  background: rgba(252, 252, 252, 0.985);
  border-bottom-color: rgba(31, 58, 113, 0.08);
  box-shadow: 0 0.8rem 1.7rem rgba(23, 33, 58, 0.16);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  flex: 0 0 clamp(13rem, 22vw, 18.5rem);
  height: 3.3rem;
}

.brand__logo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-0.125rem);
  transition: opacity 150ms ease;
}

.brand__logo--dark,
.site-header.is-scrolled .brand__logo--light,
.site-header.is-menu-open .brand__logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--dark,
.site-header.is-menu-open .brand__logo--dark {
  opacity: 1;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  color: currentColor;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 150ms ease;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  inset: auto 0 0.15rem;
  height: 0.14rem;
  border-radius: 99px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 150ms ease;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"] {
  color: var(--brand-orange);
}

.primary-navigation a:hover::after,
.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: 800 0.95rem/1 var(--font-body);
  cursor: pointer;
}

.menu-toggle__icon {
  width: 1.65rem;
  display: grid;
  gap: 0.3rem;
}

.menu-toggle__icon i {
  height: 0.14rem;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-menu-open .menu-toggle__icon i:nth-child(1) {
  transform: translateY(0.44rem) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-0.44rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 43rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 5.5rem) 0 7rem;
  background: linear-gradient(132deg, #172f60 0%, var(--brand-blue) 46%, var(--brand-blue-light) 100%);
  color: var(--brand-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 32%, rgba(244, 176, 31, 0.2), transparent 22rem), linear-gradient(90deg, transparent 0 62%, rgba(252, 252, 252, 0.035) 62% 63%, transparent 63%);
}

.hero__shape {
  position: absolute;
  border: 1px solid rgba(252, 252, 252, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  width: 34rem;
  height: 34rem;
  right: -9rem;
  top: 8rem;
}

.hero__shape--two {
  width: 18rem;
  height: 18rem;
  right: 13rem;
  bottom: -8rem;
  border-color: rgba(244, 176, 31, 0.32);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-orange);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--brand-blue);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-wrap: balance;
}

h1 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 6.7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.004em;
}

.hero__lead {
  max-width: 50rem;
  margin: 1.7rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border: 2px solid transparent;
  border-radius: 0.65rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-0.12rem);
}

.button--primary {
  background: var(--brand-orange);
  color: var(--brand-blue);
}

.button--primary:hover {
  background: #ffc23d;
}

.button--light {
  border-color: rgba(252, 252, 252, 0.7);
  color: var(--brand-white);
}

.button--light:hover {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-blue);
}

.text-link {
  color: var(--brand-white);
  font-weight: 800;
  text-underline-offset: 0.28rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

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

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

.section--blue {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.split-layout,
.typography-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

h2 {
  max-width: 48rem;
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
}

.section--blue h2 {
  color: var(--brand-white);
}

h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.8rem;
  line-height: 1.05;
}

.prose {
  color: var(--muted);
  font-size: 1.1rem;
}

.prose p {
  margin: 0;
}

.prose p + p {
  margin-top: 1.2rem;
}

.prose--inverse {
  color: rgba(252, 252, 252, 0.86);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}

.feature-card {
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: 0 1rem 2.5rem rgba(31, 58, 113, 0.08);
}

.feature-card__number {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--brand-orange);
  font: 700 2rem/1 var(--font-heading);
}

.feature-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 3.3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 2rem 2.2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 2.2rem;
  border-left: 1px solid var(--line);
}

.process-list > li > span {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-weight: 900;
}

.process-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.section--quote {
  background: linear-gradient(135deg, #fff8e8, #f7f0dd);
}

.quote-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.quote-mark {
  margin: -1.2rem 0 0;
  color: var(--brand-orange);
  font: 700 8rem/1 var(--font-heading);
}

.quote-layout figure {
  margin: 0;
}

.quote-layout blockquote {
  max-width: 62rem;
  margin: 0;
  color: var(--brand-blue);
  font: 600 clamp(2.1rem, 4vw, 3.5rem)/1.12 var(--font-heading);
}

.quote-layout figcaption {
  margin-top: 1.3rem;
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  background: var(--brand-white);
}

.final-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.final-cta h2 {
  max-width: 53rem;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.72fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: 5rem;
}

.footer-brand img {
  width: min(100%, 18rem);
  height: auto;
  transform: translateY(-0.125rem);
}

.footer-brand p {
  max-width: 24rem;
  margin: 1.4rem 0 0;
  color: rgba(252, 252, 252, 0.78);
}

.footer-column h2 {
  margin: 0 0 1.2rem;
  color: var(--brand-white);
  font-size: 1.75rem;
}

.footer-column ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: rgba(252, 252, 252, 0.78);
  list-style: none;
}

.footer-column a,
.site-footer__legal a {
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

.footer-column a:not(.button):hover,
.site-footer__legal a:hover {
  color: var(--brand-orange);
  text-decoration-color: currentColor;
}

.footer-action p {
  margin: 0 0 1.4rem;
  color: rgba(252, 252, 252, 0.78);
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 252, 252, 0.38);
  border-radius: 50%;
  color: var(--brand-white);
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.social-links a:hover {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-blue);
  transform: translateY(-0.12rem);
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.site-footer__legal {
  border-top: 1px solid rgba(252, 252, 252, 0.17);
}

.site-footer__legal .shell {
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  color: rgba(252, 252, 252, 0.68);
  font-size: 0.88rem;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 60rem) {
  :root {
    --header-height: 5.2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: absolute;
    inset: 100% 0 auto;
    padding: 0 1.5rem 1.5rem;
    color: var(--brand-blue);
    background: var(--brand-white);
    box-shadow: 0 1.2rem 1.7rem rgba(23, 33, 58, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
  }

  .site-header.is-menu-open .primary-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-navigation ul {
    width: min(var(--shell), 100%);
    margin-inline: auto;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .primary-navigation li + li {
    border-top: 1px solid var(--line);
  }

  .primary-navigation a {
    width: 100%;
    min-height: 3.35rem;
  }

  .primary-navigation a::after {
    inset: auto auto 0.5rem 0;
    width: 2rem;
    transform-origin: left;
  }

  .split-layout,
  .typography-demo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .feature-card__number {
    margin-bottom: 1.8rem;
  }

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

@media (max-width: 42rem) {
  .shell {
    width: min(100% - 2rem, var(--shell));
  }

  .brand {
    flex-basis: min(13.5rem, 68vw);
    height: 2.7rem;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    min-height: 40rem;
    padding-bottom: 5rem;
  }

  .hero__shape--one {
    right: -20rem;
  }

  h1 {
    font-size: clamp(3.45rem, 16vw, 5.4rem);
  }

  .section {
    padding-block: 4.2rem;
  }

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

  .process-list li,
  .process-list li:nth-child(even) {
    padding: 1.6rem 0;
    border-left: 0;
  }

  .quote-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-mark {
    height: 4rem;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding-block: 4rem;
  }

  .site-footer__legal .shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.5rem;
  }
}

/* Datenschutz und Cookies */

[hidden] {
  display: none !important;
}

.site-footer__legal .shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem 2rem;
}

.site-footer__copyright {
  justify-self: start;
}

.site-footer__trademark {
  justify-self: center;
  text-align: center;
}

.site-footer__policies {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: flex-end;
  gap: 0.45rem 1.15rem;
  text-align: right;
}

.legal-page {
  background: #f5f7fb;
}

.legal-hero {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  padding: calc(var(--header-height) + 4.5rem) 0 5rem;
  background: linear-gradient(120deg, #193363 0%, var(--brand-blue) 55%, #315d9f 100%);
  color: var(--brand-white);
}

.legal-hero__orb {
  position: absolute;
  border: 1px solid rgba(252, 252, 252, 0.14);
  border-radius: 50%;
}

.legal-hero__orb--one {
  top: 4rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
}

.legal-hero__orb--two {
  right: 24rem;
  bottom: -13rem;
  width: 22rem;
  height: 22rem;
}

.legal-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

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

.legal-hero__lead {
  max-width: 49rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.legal-updated {
  margin: 1.5rem 0 0;
  color: rgba(252, 252, 252, 0.62);
  font-size: 0.86rem;
}

.legal-hero__promise {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.05rem;
  background: rgba(18, 42, 84, 0.72);
  box-shadow: 0 1.3rem 3rem rgba(12, 26, 54, 0.25);
}

.legal-hero__promise span,
.legal-hero__promise strong {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(252, 252, 252, 0.14);
}

.legal-hero__promise span {
  color: var(--brand-orange);
  font: 700 2rem/1 var(--font-heading);
}

.legal-hero__promise strong {
  color: rgba(252, 252, 252, 0.88);
  font-size: 0.9rem;
}

.legal-hero__promise span:nth-last-of-type(1),
.legal-hero__promise strong:last-child {
  border-bottom: 0;
}

.legal-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 0.85rem;
  background: var(--brand-white);
}

.legal-toc strong {
  margin-bottom: 0.5rem;
  color: var(--brand-blue);
}

.legal-toc a {
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.legal-toc a:hover {
  background: var(--soft);
  color: var(--brand-blue);
}

.legal-content {
  display: grid;
  min-width: 0;
  gap: 1.25rem;
}

.legal-card > div {
  min-width: 0;
}

.legal-card {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  scroll-margin-top: calc(var(--header-height) + 2rem);
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1rem;
  background: var(--brand-white);
  box-shadow: 0 0.8rem 2rem rgba(31, 58, 113, 0.06);
}

.legal-card__number {
  margin: 0.2rem 0 0;
  color: var(--brand-orange);
  font: 700 1.25rem/1 var(--font-heading);
}

.legal-card h2 {
  margin: 0 0 1rem;
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-card p {
  margin: 0 0 1rem;
  color: #46546b;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card address {
  margin-bottom: 1rem;
  color: #46546b;
  font-style: normal;
}

.legal-card a:not(.button) {
  color: var(--brand-blue);
  font-weight: 800;
  text-underline-offset: 0.2rem;
}

.legal-data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.7rem;
  margin: 1rem 0;
}

.legal-data div {
  display: grid;
  gap: 0.1rem;
}

.legal-data dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
}

.legal-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 1.3rem 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.legal-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

.legal-table th {
  background: var(--soft);
  color: var(--brand-blue);
}

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

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 64rem) {
  .legal-hero__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__promise {
    max-width: 34rem;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .site-footer__legal .shell {
    grid-template-columns: 1fr 1fr;
    padding-block: 1.4rem;
  }

  .site-footer__trademark {
    justify-self: end;
    text-align: right;
  }

  .site-footer__policies {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 42rem) {
  .legal-card {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
  }

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

  .site-footer__legal .shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__copyright,
  .site-footer__trademark,
  .site-footer__policies {
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }
}

/* Startseite */

.primary-navigation a.nav-cta {
  min-height: 2.7rem;
  padding: 0.45rem 0.95rem;
  border-radius: 0.55rem;
  background: var(--brand-orange);
  color: var(--brand-blue);
  box-shadow: 0 0.55rem 1.4rem rgba(0, 0, 0, 0.12);
}

.primary-navigation a.nav-cta::after {
  display: none;
}

.primary-navigation a.nav-cta:hover,
.primary-navigation a.nav-cta[aria-current="page"] {
  background: #ffc33f;
  color: var(--brand-blue);
  transform: translateY(-0.08rem);
}

.hero--home {
  min-height: max(44rem, 100svh);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 2.4rem) 0 4.3rem;
  isolation: isolate;
  background: #102751;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(12, 31, 66, 0.98) 0%, rgba(19, 46, 94, 0.95) 38%, rgba(23, 50, 97, 0.7) 58%, rgba(15, 31, 55, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 26, 56, 0.52), transparent 45%);
}

.hero--home::before {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(244, 176, 31, 0.7) 66% calc(66% + 2px), transparent calc(66% + 2px)),
    radial-gradient(circle at 67% 54%, rgba(244, 176, 31, 0.12), transparent 18rem);
}

.hero-home__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
  align-items: center;
  min-height: 32rem;
}

.hero-home__content {
  max-width: 48rem;
}

.hero--home .hero__lead {
  max-width: 43rem;
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.5;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(252, 252, 252, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-proof li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 0.25rem rgba(244, 176, 31, 0.14);
}

.button--large {
  min-height: 3.55rem;
  padding-inline: 1.55rem;
}

.hero--home .hero__actions {
  margin-top: 1.7rem;
}

.hero-note {
  margin: 0.75rem 0 0;
  color: rgba(252, 252, 252, 0.68);
  font-size: 0.84rem;
}

.media-disclosure {
  z-index: 3;
  width: fit-content;
  margin: 0;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(252, 252, 252, 0.34);
  border-radius: 0.4rem;
  background: rgba(11, 28, 57, 0.66);
  color: rgba(252, 252, 252, 0.82);
  font-size: 0.7rem;
  line-height: 1.25;
  backdrop-filter: blur(0.4rem);
}

.media-disclosure--hero {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  pointer-events: none;
}

@media (min-width: 42.001rem) and (max-width: 109rem) {
  .media-disclosure--hero {
    bottom: 4.8rem;
  }
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: max(1.5rem, calc((100vw - var(--shell)) / 2));
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(252, 252, 252, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(252, 252, 252, 0.45);
  border-radius: 50%;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(252, 252, 252, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  width: 24rem;
  height: 24rem;
  top: 15%;
  right: -11rem;
}

.hero-orbit--two {
  width: 9rem;
  height: 9rem;
  right: 6%;
  bottom: -4rem;
  border-color: rgba(244, 176, 31, 0.5);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.section-heading--split > p,
.proof-heading > p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.goals-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 10%, rgba(244, 176, 31, 0.11), transparent 20rem),
    var(--brand-white);
}

.goals-visual {
  position: relative;
  height: clamp(21rem, 39vw, 31rem);
  margin: 3.2rem 0 0;
  overflow: hidden;
  border-radius: 1.7rem;
  background: var(--brand-blue);
  box-shadow: 0 2rem 4rem rgba(22, 42, 79, 0.16);
}

.goals-visual picture,
.goals-visual img {
  width: 100%;
  height: 100%;
}

.goals-visual img {
  object-fit: cover;
}

.goals-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 40, 80, 0.38), transparent 50%);
  pointer-events: none;
}

.goals-visual figcaption,
.benefit-image figcaption {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.34rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(15, 34, 69, 0.72);
  color: rgba(252, 252, 252, 0.86);
  font-size: 0.68rem;
  backdrop-filter: blur(0.35rem);
}

.goals-visual figcaption {
  top: 0.8rem;
  bottom: auto;
}

.goal-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: -5.4rem 1.5rem 0;
}

.goal-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border: 1px solid rgba(31, 58, 113, 0.08);
  border-radius: 1.1rem;
  background: rgba(252, 252, 252, 0.97);
  box-shadow: 0 1.5rem 3rem rgba(17, 38, 76, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.goal-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 2rem 3.5rem rgba(17, 38, 76, 0.2);
}

.goal-card__number {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-weight: 900;
}

.goal-card__kicker {
  margin: 0 0 0.45rem;
  color: var(--brand-orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.goal-card h3 {
  font-size: 2rem;
}

.goal-card > p:not(.goal-card__kicker) {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.goal-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-weight: 900;
  text-decoration: none;
}

.goal-card__link i {
  color: var(--brand-orange);
  font-style: normal;
  font-size: 1.35rem;
}

.teacher-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 176, 31, 0.15), transparent 20rem),
    linear-gradient(132deg, #142d5d, var(--brand-blue));
  color: var(--brand-white);
}

.teacher-section::after {
  content: "DEUTSCH";
  position: absolute;
  right: -2.5rem;
  bottom: -3.3rem;
  color: rgba(252, 252, 252, 0.035);
  font: 700 clamp(7rem, 17vw, 15rem)/1 var(--font-heading);
  letter-spacing: 0.04em;
  pointer-events: none;
}

.teacher-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3.5rem, 8vw, 7rem);
  align-items: center;
}

.teacher-portrait-wrap {
  position: relative;
  padding: 0 1.6rem 2rem 0;
}

.teacher-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 2rem 0 0 2.2rem;
  border-radius: 2rem;
  background: var(--brand-orange);
  transform: rotate(2.5deg);
}

.teacher-portrait-frame {
  position: relative;
  overflow: hidden;
  border: 0.45rem solid rgba(252, 252, 252, 0.95);
  border-radius: 2rem;
  background: #ececec;
  box-shadow: 0 2rem 4rem rgba(4, 13, 31, 0.35);
}

.teacher-portrait-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.teacher-signature {
  position: absolute;
  left: 1.4rem;
  right: 0;
  bottom: 0;
  display: grid;
  padding: 1rem 1.25rem;
  border-radius: 0.8rem;
  background: rgba(252, 252, 252, 0.96);
  color: var(--brand-blue);
  box-shadow: 0 1rem 2rem rgba(4, 13, 31, 0.22);
}

.teacher-signature strong {
  font: 700 1.75rem/1 var(--font-heading);
}

.teacher-signature span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.experience-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.2rem;
  width: 7.1rem;
  height: 7.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0.38rem solid var(--brand-blue);
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  transform: rotate(6deg);
  box-shadow: 0 0.8rem 1.7rem rgba(4, 13, 31, 0.25);
}

.experience-badge strong {
  font: 700 2.35rem/1 var(--font-heading);
}

.experience-badge span {
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.experience-badge--since {
  flex-direction: column;
  gap: 0.08rem;
}

.experience-badge--since strong {
  font-size: 2.1rem;
  line-height: 0.95;
}

.experience-badge--since span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.teacher-copy h2,
.proof-section h2,
.final-cta--home h2 {
  color: var(--brand-white);
}

.teacher-lead {
  margin: 1.5rem 0 0.8rem;
  color: var(--brand-white);
  font-size: 1.2rem;
  font-weight: 750;
}

.teacher-copy > p:not(.eyebrow):not(.teacher-lead) {
  margin: 0;
  color: rgba(252, 252, 252, 0.76);
}

.method-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 2.2rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.16);
}

.method-list > li > span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 176, 31, 0.7);
  border-radius: 50%;
  color: var(--brand-orange);
  font-weight: 900;
}

.method-list h3 {
  color: var(--brand-white);
  font-size: 1.55rem;
}

.method-list p {
  margin: 0.35rem 0 0;
  color: rgba(252, 252, 252, 0.68);
}

.benefit-section {
  background: #f4f6fa;
}

.benefit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.benefit-list {
  display: grid;
  margin-top: 2.3rem;
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article > span {
  color: var(--brand-orange);
  font: 700 1.35rem/1 var(--font-heading);
}

.benefit-list h3 {
  font-size: 1.65rem;
}

.benefit-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.benefit-image {
  position: relative;
  min-height: 35rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1.7rem;
  background: var(--brand-blue);
  box-shadow: 0 2rem 4rem rgba(20, 45, 90, 0.16);
}

.benefit-image picture,
.benefit-image img {
  width: 100%;
  height: 100%;
}

.benefit-image picture {
  position: absolute;
  inset: 0;
  display: block;
}

.benefit-image img {
  display: block;
  object-fit: cover;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(244, 176, 31, 0.19), transparent 21rem),
    #102754;
  color: var(--brand-white);
}

/* Sekundärer Firmenpfad */
.business-route {
  position: relative;
  overflow: hidden;
  background: var(--brand-white);
}

.business-route__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(2.4rem, 6vw, 4.8rem);
  overflow: hidden;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 92% 20%, rgba(244, 176, 31, 0.18), transparent 18rem),
    linear-gradient(125deg, #102754 0%, var(--brand-blue) 68%, #2d5599 100%);
  box-shadow: 0 1.8rem 4rem rgba(20, 42, 83, 0.16);
  color: var(--brand-white);
}

.business-route__card::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(252, 252, 252, 0.13);
  border-radius: 50%;
  content: "";
}

.business-route__copy,
.business-route__action {
  position: relative;
  z-index: 1;
}

.business-route__copy .eyebrow {
  color: var(--brand-orange);
}

.business-route__copy h2 {
  max-width: 18ch;
  margin-block: 0.7rem 1.1rem;
  color: var(--brand-white);
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  line-height: 0.98;
}

.business-route__copy > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.76);
  font-size: 1.08rem;
}

.business-route__action {
  display: grid;
  gap: 1.3rem;
  align-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(252, 252, 252, 0.18);
  border-radius: 1rem;
  background: rgba(252, 252, 252, 0.07);
}

.business-route__action > span {
  color: rgba(252, 252, 252, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.business-route__action .button {
  justify-content: center;
  text-align: center;
}

.business-route--career {
  background: linear-gradient(180deg, #f3f6fa, var(--brand-white));
}

@media (max-width: 62rem) {
  .business-route__card {
    grid-template-columns: 1fr;
  }

  .business-route__action {
    max-width: 34rem;
  }
}

@media (max-width: 42rem) {
  .business-route__card {
    padding: 2rem 1.35rem;
    border-radius: 1.2rem;
  }

  .business-route__copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.35rem);
  }

  .business-route__action {
    padding: 1rem;
  }

  .business-route__action .button {
    width: 100%;
  }
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.proof-heading > p {
  color: rgba(252, 252, 252, 0.72);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}

.testimonial-card {
  position: relative;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.16);
  border-radius: 1.25rem;
  background: rgba(252, 252, 252, 0.075);
}

.testimonial-card--accent {
  background: var(--brand-orange);
  color: var(--brand-blue);
}

.testimonial-card__mark {
  position: absolute;
  right: 1.4rem;
  top: -1.3rem;
  color: rgba(244, 176, 31, 0.22);
  font: 700 9rem/1 var(--font-heading);
}

.testimonial-card--accent .testimonial-card__mark {
  color: rgba(31, 58, 113, 0.13);
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font: 600 clamp(1.65rem, 2.6vw, 2.35rem)/1.15 var(--font-heading);
}

.testimonial-card figcaption {
  display: grid;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.testimonial-card figcaption span {
  color: rgba(252, 252, 252, 0.62);
  font-size: 0.76rem;
}

.testimonial-card--accent figcaption span {
  color: rgba(31, 58, 113, 0.72);
}

.proof-action {
  margin-top: 2rem;
}

.text-link--orange {
  color: var(--brand-orange);
}

.text-link--blue {
  color: var(--brand-blue);
}

.start-section {
  background:
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    var(--brand-white);
  background-size: 3rem 3rem;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--brand-white);
  box-shadow: 0 1rem 3rem rgba(31, 58, 113, 0.08);
}

.start-steps li {
  min-height: 18rem;
  padding: 1.8rem;
}

.start-steps li + li {
  border-left: 1px solid var(--line);
}

.start-steps__number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 2.6rem;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--brand-white);
  font-weight: 900;
}

.start-steps h3 {
  font-size: 1.9rem;
}

.start-steps p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.start-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
  margin-top: 2rem;
}

.final-cta--home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #152e5d, #1f3a71 60%, #2b5296);
  color: var(--brand-white);
}

.final-cta__halo {
  position: absolute;
  width: 32rem;
  height: 32rem;
  right: -9rem;
  top: -15rem;
  border: 1px solid rgba(244, 176, 31, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(244, 176, 31, 0.04), 0 0 0 10rem rgba(244, 176, 31, 0.025);
}

.final-cta--home .final-cta__inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.final-cta--home .final-cta__inner > div:first-child {
  max-width: 50rem;
}

.final-cta--home h2 {
  max-width: 50rem;
}

.final-cta--home .final-cta__inner > div:first-child > p:last-child {
  margin: 1.2rem 0 0;
  color: rgba(252, 252, 252, 0.72);
  font-size: 1.08rem;
}

.final-cta__actions {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.final-cta__actions > div {
  display: flex;
  gap: 0.8rem;
  color: rgba(252, 252, 252, 0.72);
  font-size: 0.88rem;
}

.final-cta__actions > div a {
  text-underline-offset: 0.25rem;
}

@media (max-width: 70rem) {
  .hero-home__grid {
    grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.35fr);
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(12, 31, 66, 0.98) 0%, rgba(19, 46, 94, 0.94) 52%, rgba(19, 46, 94, 0.48) 100%);
  }

  .goal-cards {
    margin-inline: 0.75rem;
  }

  .teacher-grid {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: 3.5rem;
  }
}

@media (max-width: 60rem) {
  .primary-navigation a.nav-cta {
    width: fit-content;
    margin-top: 0.55rem;
  }

  .hero--home {
    min-height: max(44rem, 100svh);
  }

  .hero-home__grid {
    grid-template-columns: minmax(0, 1fr) minmax(2rem, 0.16fr);
  }

  .section-heading--split,
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .goal-cards {
    grid-template-columns: 1fr;
    margin: -4rem 1rem 0;
  }

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

  .teacher-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .teacher-portrait-wrap {
    width: min(38rem, 88vw);
    margin-inline: auto;
  }

  .benefit-image {
    min-height: 28rem;
  }

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

  .testimonial-card {
    min-height: 20rem;
  }

  .start-steps {
    grid-template-columns: 1fr;
  }

  .start-steps li {
    min-height: 0;
  }

  .start-steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 42rem) {
  .hero--home {
    min-height: max(47rem, 100svh);
    padding: calc(var(--header-height) + 1.2rem) 0 3.7rem;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 29, 63, 0.96), rgba(18, 43, 88, 0.83)),
      linear-gradient(0deg, rgba(9, 23, 50, 0.75), transparent 60%);
  }

  .hero--home::before {
    background: radial-gradient(circle at 100% 36%, rgba(244, 176, 31, 0.15), transparent 15rem);
  }

  .hero-home__grid {
    display: block;
    min-height: 0;
  }

  .hero--home .hero__lead {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-proof {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.95rem;
    font-size: 0.82rem;
  }

  .hero--home .hero__actions {
    display: grid;
    justify-items: start;
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .hero--home .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 0.55rem;
    font-size: 0.73rem;
  }

  .media-disclosure--hero {
    right: 1rem;
    bottom: 1.5rem;
    font-size: 0.61rem;
  }

  .hero-scroll,
  .hero-orbit {
    display: none;
  }

  .goals-visual {
    height: 25rem;
    margin-top: 2.2rem;
  }

  .goals-visual img {
    object-position: center;
  }

  .goal-cards {
    margin: -2.2rem 0 0;
  }

  .goal-card {
    padding: 1.45rem;
  }

  .teacher-grid {
    gap: 3.2rem;
  }

  .teacher-portrait-wrap {
    width: calc(100% - 0.8rem);
    padding-right: 0.8rem;
  }

  .experience-badge {
    width: 6rem;
    height: 6rem;
    right: -0.35rem;
  }

  .experience-badge strong {
    font-size: 2rem;
  }

  .experience-badge--since strong {
    font-size: 1.82rem;
  }

  .teacher-signature {
    left: 0.8rem;
  }

  .benefit-image {
    min-height: 23rem;
  }

  .testimonial-card {
    min-height: 0;
    padding: 1.6rem;
  }

  .testimonial-card blockquote {
    font-size: 1.65rem;
  }

  .start-steps__number {
    margin-bottom: 1.4rem;
  }

  .start-action {
    display: grid;
    justify-items: stretch;
  }

  .final-cta--home .final-cta__inner {
    align-items: stretch;
  }

  .final-cta__actions {
    justify-items: stretch;
  }
}

/* Vyučovanie */

.lesson-hero {
  position: relative;
  min-height: max(44rem, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-height) + 2.8rem) 0 4.5rem;
  background: #102751;
  color: var(--brand-white);
}

.lesson-hero__media,
.lesson-hero__media img,
.lesson-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lesson-hero__media img {
  object-fit: cover;
  object-position: center;
}

.lesson-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.97) 0%, rgba(15, 39, 79, 0.91) 48%, rgba(15, 39, 79, 0.22) 78%, rgba(15, 39, 79, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.5), transparent 55%);
}

.lesson-hero__line {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 66%;
  width: 2px;
  background: linear-gradient(transparent, rgba(244, 176, 31, 0.85) 18% 82%, transparent);
}

.lesson-hero__inner {
  position: relative;
  z-index: 3;
}

.lesson-hero__content {
  max-width: 49rem;
}

.lesson-hero__content > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.35rem 0 0;
  color: rgba(252, 252, 252, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.52;
}

.lesson-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(252, 252, 252, 0.9);
  font-size: 0.92rem;
  font-weight: 850;
}

.lesson-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.lesson-hero__proof li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 0.24rem rgba(244, 176, 31, 0.14);
}

.lesson-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.8rem;
}

.lesson-hero__disclosure {
  position: absolute;
  right: 0;
  bottom: -3.2rem;
}

.lesson-heading h2,
.lesson-fit h2,
.lesson-method h2,
.pricing-section h2,
.lesson-faq h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.98;
}

.lesson-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.lesson-heading--split > p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.lesson-goals {
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 176, 31, 0.13), transparent 19rem),
    var(--brand-white);
}

.lesson-goal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}

.lesson-goal-grid article {
  position: relative;
  min-height: 20rem;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.1);
  border-radius: 1.25rem;
  background: #f5f7fb;
  box-shadow: 0 1rem 2.2rem rgba(20, 42, 83, 0.07);
}

.lesson-goal-grid article:nth-child(2),
.lesson-goal-grid article:nth-child(3) {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.lesson-goal-grid article > span {
  position: absolute;
  right: 1.8rem;
  top: 1.1rem;
  color: rgba(31, 58, 113, 0.08);
  font: 700 clamp(5rem, 9vw, 8rem)/1 var(--font-heading);
}

.lesson-goal-grid article:nth-child(2) > span,
.lesson-goal-grid article:nth-child(3) > span {
  color: rgba(252, 252, 252, 0.09);
}

.lesson-goal-grid article > p:first-of-type {
  position: relative;
  z-index: 1;
  margin: 0 0 2.6rem;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lesson-goal-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.lesson-goal-grid article:nth-child(2) h3,
.lesson-goal-grid article:nth-child(3) h3 {
  color: var(--brand-white);
}

.lesson-goal-grid article > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.lesson-goal-grid article:nth-child(2) > p:last-of-type,
.lesson-goal-grid article:nth-child(3) > p:last-of-type {
  color: rgba(252, 252, 252, 0.72);
}

.lesson-goal-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  color: var(--brand-blue);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28rem;
}

.lesson-goal-link span {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.lesson-goal-grid article:nth-child(2) .lesson-goal-link,
.lesson-goal-grid article:nth-child(3) .lesson-goal-link {
  color: var(--brand-white);
}

.lesson-fit {
  background: linear-gradient(130deg, #142d5b, var(--brand-blue) 65%, #2a5295);
  color: var(--brand-white);
}

.lesson-fit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(26rem, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.lesson-fit h2 {
  color: var(--brand-white);
}

.lesson-fit__intro > p:not(.eyebrow) {
  margin: 1.4rem 0 0;
  color: rgba(252, 252, 252, 0.72);
  font-size: 1.05rem;
}

.lesson-fit__level {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.lesson-fit__level strong {
  color: var(--brand-orange);
  font: 700 4.5rem/0.8 var(--font-heading);
}

.lesson-fit__level span {
  max-width: 10rem;
  color: rgba(252, 252, 252, 0.75);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.lesson-fit__cards {
  display: grid;
  gap: 1rem;
}

.lesson-fit__cards article {
  padding: 2rem;
  border: 1px solid rgba(252, 252, 252, 0.15);
  border-radius: 1.1rem;
  background: rgba(252, 252, 252, 0.075);
}

.lesson-fit__cards h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: 2rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(252, 252, 252, 0.78);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 900;
}

.lesson-fit__cards .lesson-fit__note {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-blue);
}

.lesson-fit__note h3,
.lesson-fit__note p,
.lesson-fit__note a {
  color: var(--brand-blue);
}

.lesson-fit__note p {
  margin: 0.8rem 0 1.1rem;
}

.lesson-fit__note a {
  font-weight: 900;
  text-underline-offset: 0.25rem;
}

.lesson-method {
  background: #f4f6fa;
}

.lesson-method__grid {
  display: grid;
  grid-template-columns: minmax(24rem, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.lesson-method__image {
  position: relative;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--brand-blue);
  box-shadow: 0 2rem 4rem rgba(18, 40, 79, 0.16);
}

.lesson-method__image picture,
.lesson-method__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lesson-method__image img {
  object-fit: cover;
  object-position: 58% center;
}

.lesson-method__image figcaption {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.34rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(15, 34, 69, 0.76);
  color: rgba(252, 252, 252, 0.88);
  font-size: 0.68rem;
  backdrop-filter: blur(0.35rem);
}

.lesson-method__lead {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.method-steps {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.method-steps > li > span {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 58, 113, 0.35);
  border-radius: 50%;
  color: var(--brand-blue);
  font-weight: 900;
}

.method-steps h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.65rem;
}

.method-steps p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.lesson-includes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.lesson-includes article {
  padding: 1.6rem;
  border: 1px solid rgba(31, 58, 113, 0.09);
  border-radius: 1rem;
  background: var(--brand-white);
}

.lesson-includes article > span {
  color: var(--brand-orange);
  font: 700 2.4rem/1 var(--font-heading);
}

.lesson-includes h3 {
  margin: 1.2rem 0 0;
  color: var(--brand-blue);
  font-size: 1.55rem;
}

.lesson-includes p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.immersion-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 176, 31, 0.16), transparent 24rem),
    var(--brand-blue);
  color: var(--brand-white);
}

.immersion-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.immersion-section h2 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  line-height: 0.97;
}

.immersion-section__copy > p {
  margin: 0;
  color: rgba(252, 252, 252, 0.74);
}

.immersion-section__copy > p + p {
  margin-top: 1rem;
}

.immersion-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.immersion-proof strong {
  color: var(--brand-orange);
  font: 700 4rem/0.85 var(--font-heading);
}

.immersion-proof span {
  max-width: 13rem;
  color: rgba(252, 252, 252, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-section {
  background:
    radial-gradient(circle at 8% 4%, rgba(244, 176, 31, 0.13), transparent 20rem),
    #f7f5ef;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}

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

.pricing-grid--four .price-card {
  padding-inline: clamp(1.35rem, 2vw, 2rem);
}

.price-announcement {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(31, 58, 113, 0.14);
  border-left: 0.35rem solid var(--brand-orange);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.8rem 2rem rgba(31, 58, 113, 0.06);
  color: var(--brand-blue);
}

.price-announcement > span {
  display: grid;
  min-width: 4.4rem;
  min-height: 2.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.price-announcement strong {
  display: block;
  font-size: 0.95rem;
}

.price-announcement p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.native-booking .price-announcement {
  margin-bottom: 1.2rem;
}

.price-card {
  position: relative;
  min-height: 29rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1.2rem;
  background: var(--brand-white);
  box-shadow: 0 1.5rem 3rem rgba(19, 41, 79, 0.09);
}

.price-card--featured {
  border: 2px solid var(--brand-orange);
  background: var(--brand-blue);
  color: var(--brand-white);
  transform: translateY(-0.6rem);
}

.price-card__badge {
  position: absolute;
  inset: 0 0 auto;
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 1rem 1rem 0 0;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.price-card__label {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card--featured .price-card__label {
  margin-top: 2.2rem;
}

.price-card h3 {
  margin: 0.5rem 0 0;
  color: var(--brand-blue);
  font-size: 2.8rem;
}

.price-card--featured h3 {
  color: var(--brand-white);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
}

.price-card__price strong {
  color: var(--brand-blue);
  font: 700 4.5rem/0.9 var(--font-heading);
}

.price-card--featured .price-card__price strong {
  color: var(--brand-orange);
}

.price-card__price del {
  color: rgba(252, 252, 252, 0.62);
  font-weight: 850;
}

.price-card > p:not(.price-card__label):not(.price-card__price):not(.price-card__badge) {
  margin: 1.3rem 0 1.8rem;
  color: var(--muted);
}

.price-card--featured > p:not(.price-card__label):not(.price-card__price):not(.price-card__badge) {
  color: rgba(252, 252, 252, 0.74);
}

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

.button--outline {
  border-color: rgba(31, 58, 113, 0.35);
  color: var(--brand-blue);
}

.button--outline:hover {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-blue);
}

.lesson-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.6rem;
  border-top: 1px solid rgba(31, 58, 113, 0.15);
  border-bottom: 1px solid rgba(31, 58, 113, 0.15);
}

.lesson-rules article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.6rem;
}

.lesson-rules article + article {
  border-left: 1px solid rgba(31, 58, 113, 0.15);
}

.lesson-rules article > span {
  color: var(--brand-orange);
  font: 700 1.45rem/1 var(--font-heading);
}

.lesson-rules h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.55rem;
}

.lesson-rules p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lesson-faq {
  background: linear-gradient(128deg, #132c59, var(--brand-blue) 62%, #2a5193);
  color: var(--brand-white);
}

.lesson-faq__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.lesson-faq h2 {
  color: var(--brand-white);
}

.lesson-faq__intro > p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: rgba(252, 252, 252, 0.72);
}

.lesson-faq__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 1.4rem;
}

.lesson-faq__contact a {
  color: var(--brand-white);
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

.faq-list {
  border-top: 1px solid rgba(252, 252, 252, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(252, 252, 252, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: var(--brand-white);
  font: 600 1.55rem/1.15 var(--font-heading);
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  color: var(--brand-orange);
  font: 600 2rem/1 var(--font-heading);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  margin: -0.25rem 0 1.35rem;
  color: rgba(252, 252, 252, 0.72);
}

.service-note {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  background: #eef1f6;
}

.service-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.final-cta--lessons {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brand-white);
}

.final-cta--lessons .final-cta__inner {
  align-items: center;
}

.final-cta--lessons .final-cta__inner > div:first-child {
  max-width: 50rem;
}

.final-cta--lessons h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.final-cta--lessons .final-cta__inner > div:first-child > p:last-child {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.final-cta--lessons .final-cta__actions > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta--lessons .final-cta__actions > p a {
  text-underline-offset: 0.25rem;
}

@media (max-width: 68rem) {
  .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.98), rgba(15, 39, 79, 0.92) 62%, rgba(15, 39, 79, 0.45));
  }

  .lesson-fit__grid,
  .lesson-method__grid,
  .immersion-section__grid,
  .lesson-faq__grid {
    grid-template-columns: 1fr;
  }

  .lesson-method__image {
    min-height: 34rem;
  }

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

@media (max-width: 54rem) {
  .lesson-heading--split {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .lesson-goal-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .lesson-goal-grid article {
    min-height: 0;
  }

  .price-card,
  .price-card--featured {
    min-height: 0;
    transform: none;
  }

  .lesson-rules {
    grid-template-columns: 1fr;
  }

  .lesson-rules article + article {
    border-top: 1px solid rgba(31, 58, 113, 0.15);
    border-left: 0;
  }
}

@media (max-width: 78rem) and (min-width: 54.001rem) {
  .pricing-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 38rem) {
  .price-announcement {
    grid-template-columns: 1fr;
  }

  .price-announcement > span {
    justify-self: start;
  }
}

@media (max-width: 42rem) {
  .lesson-hero {
    min-height: max(48rem, 100svh);
    padding: calc(var(--header-height) + 1.2rem) 0 3.7rem;
  }

  .lesson-hero__media img {
    object-position: 64% center;
  }

  .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.95), rgba(15, 39, 79, 0.81));
  }

  .lesson-hero__line {
    display: none;
  }

  .lesson-hero__content > p:not(.eyebrow) {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .lesson-hero__proof {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.95rem;
    font-size: 0.82rem;
  }

  .lesson-hero__actions {
    display: grid;
    justify-items: start;
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .lesson-hero__actions .button {
    width: 100%;
  }

  .lesson-hero__disclosure {
    right: 0;
    bottom: -3rem;
    font-size: 0.61rem;
  }

  .lesson-goal-grid article,
  .lesson-fit__cards article,
  .price-card {
    padding: 1.45rem;
  }

  .lesson-fit__grid {
    gap: 2.4rem;
  }

  .lesson-fit__level strong {
    font-size: 3.7rem;
  }

  .lesson-method__grid {
    gap: 2.7rem;
  }

  .lesson-method__image {
    min-height: 25rem;
  }

  .lesson-method__image img {
    object-position: center;
  }

  .lesson-method__image figcaption {
    font-size: 0.6rem;
  }

  .lesson-includes {
    grid-template-columns: 1fr;
    margin-top: 2.6rem;
  }

  .immersion-section__grid {
    gap: 2.2rem;
  }

  .price-card__price strong {
    font-size: 3.9rem;
  }

  .lesson-rules article {
    padding-inline: 0;
  }

  .faq-list summary {
    font-size: 1.35rem;
  }

  .final-cta--lessons .final-cta__inner {
    align-items: stretch;
  }

  .final-cta--lessons .final-cta__actions {
    justify-items: stretch;
  }
}

/* German for work landing page */
.career-hero .lesson-hero__media img {
  object-position: center;
}

.career-hero .lesson-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.98) 0%, rgba(15, 39, 79, 0.92) 47%, rgba(15, 39, 79, 0.18) 73%, rgba(15, 39, 79, 0.03) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.52), transparent 58%);
}

.career-situations {
  background:
    radial-gradient(circle at 94% 5%, rgba(244, 176, 31, 0.14), transparent 20rem),
    var(--brand-white);
}

.career-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.3rem;
}

.career-situation-grid article {
  position: relative;
  min-height: 25rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1.25rem;
  background: #f4f7fb;
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 83, 0.07);
}

.career-situation-grid article:nth-child(2),
.career-situation-grid article:nth-child(3) {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--brand-white);
}

.career-situation-grid article > span {
  position: absolute;
  top: 0.7rem;
  right: 1.5rem;
  color: rgba(31, 58, 113, 0.07);
  font: 700 clamp(6rem, 10vw, 9rem)/1 var(--font-heading);
}

.career-situation-grid article:nth-child(2) > span,
.career-situation-grid article:nth-child(3) > span {
  color: rgba(252, 252, 252, 0.08);
}

.career-situation-grid article > p:first-of-type {
  position: relative;
  z-index: 1;
  margin: 0 0 2.2rem;
  color: var(--brand-orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.career-situation-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1;
}

.career-situation-grid article:nth-child(2) h3,
.career-situation-grid article:nth-child(3) h3 {
  color: var(--brand-white);
}

.career-situation-grid ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  margin: 1.45rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.career-situation-grid article:nth-child(2) ul,
.career-situation-grid article:nth-child(3) ul {
  color: rgba(252, 252, 252, 0.74);
}

.career-situation-grid li {
  position: relative;
  padding-left: 1.25rem;
}

.career-situation-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-orange);
}

.career-positioning {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 85%, rgba(244, 176, 31, 0.13), transparent 22rem),
    linear-gradient(132deg, #142d5d, var(--brand-blue) 68%, #2d5699);
  color: var(--brand-white);
}

.career-positioning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 1.05fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.career-positioning__copy h2,
.career-dach h2 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
  line-height: 0.95;
}

.career-positioning__copy > p:not(.eyebrow),
.career-dach__grid > div:first-child > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: rgba(252, 252, 252, 0.76);
}

.career-fit-card {
  padding: clamp(2rem, 4.5vw, 3.4rem);
  border: 1px solid rgba(252, 252, 252, 0.22);
  border-radius: 1.4rem;
  background: rgba(252, 252, 252, 0.98);
  color: var(--ink);
  box-shadow: 0 2rem 4.4rem rgba(6, 20, 45, 0.28);
}

.career-fit-card__label {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.career-fit-card > strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--brand-blue);
  font: 700 clamp(4.5rem, 9vw, 7.5rem)/0.9 var(--font-heading);
}

.career-fit-card h3 {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.02;
}

.career-fit-card .check-list {
  margin-top: 1.4rem;
}

.career-fit-card__note {
  margin: 1.5rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.career-method {
  background:
    linear-gradient(rgba(31, 58, 113, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 113, 0.04) 1px, transparent 1px),
    #f5f7fb;
  background-size: 3rem 3rem;
}

.career-method__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem 5rem;
  align-items: end;
}

.career-method__heading .eyebrow {
  grid-column: 1 / -1;
}

.career-method__heading h2,
.career-proof__intro h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  line-height: 0.97;
}

.career-method__heading > p:last-child,
.career-proof__intro > p:last-child {
  margin: 0 0 0.3rem;
  color: var(--muted);
}

.career-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3.4rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.13);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.96);
  box-shadow: 0 1.2rem 2.8rem rgba(20, 42, 83, 0.08);
  list-style: none;
}

.career-process li {
  min-height: 21rem;
  padding: 2.2rem;
}

.career-process li + li {
  border-left: 1px solid var(--line);
}

.career-process li > span {
  color: var(--brand-orange);
  font: 700 2.1rem/1 var(--font-heading);
}

.career-process li > div > p:first-child {
  margin: 2rem 0 0.45rem;
  color: var(--brand-orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.career-process h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.career-process li > div > p:last-child {
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.career-materials {
  max-width: 68rem;
  margin: 2.1rem auto 0;
  padding: 1.25rem 1.5rem;
  border-left: 0.3rem solid var(--brand-orange);
  background: var(--brand-white);
  box-shadow: 0 0.8rem 2rem rgba(20, 42, 83, 0.06);
}

.career-materials p {
  margin: 0;
  color: var(--muted);
}

.career-materials strong {
  color: var(--brand-blue);
}

.career-dach {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(244, 176, 31, 0.14), transparent 24rem),
    linear-gradient(130deg, #102750, var(--brand-blue));
  color: var(--brand-white);
}

.career-dach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.career-dach__grid .button {
  margin-top: 1.8rem;
}

.career-country-list {
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.06);
  backdrop-filter: blur(0.4rem);
}

.career-country-list article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem 2rem;
}

.career-country-list article + article {
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.career-country-list article > span {
  color: var(--brand-orange);
  font: 700 2.8rem/1 var(--font-heading);
}

.career-country-list h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: 2rem;
}

.career-country-list p {
  margin: 0.25rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.career-proof {
  background: linear-gradient(132deg, #fff9ed, #f3f6fa 72%);
}

.career-proof__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.career-quote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.8rem);
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--brand-white);
  box-shadow: 0 1.5rem 3.5rem rgba(20, 42, 83, 0.12);
}

.career-quote > span {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  color: rgba(244, 176, 31, 0.18);
  font: 700 10rem/1 var(--font-heading);
}

.career-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--brand-blue);
  font: 600 clamp(2rem, 3.8vw, 3.2rem)/1.1 var(--font-heading);
}

.career-quote figcaption {
  margin-top: 1.6rem;
  color: var(--muted);
}

.career-quote figcaption strong {
  color: var(--ink);
}

.career-quote a {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-weight: 900;
  text-underline-offset: 0.28rem;
}

.career-quote a span {
  color: var(--brand-orange);
}

.career-final {
  background:
    radial-gradient(circle at 88% 50%, rgba(244, 176, 31, 0.14), transparent 16rem),
    var(--brand-white);
}

@media (max-width: 68rem) {
  .career-positioning__grid,
  .career-dach__grid,
  .career-proof__grid {
    grid-template-columns: 1fr;
  }

  .career-positioning__copy,
  .career-dach__grid > div:first-child,
  .career-proof__intro {
    max-width: 48rem;
  }

  .career-method__heading {
    grid-template-columns: 1fr;
  }

  .career-process {
    grid-template-columns: 1fr;
  }

  .career-process li {
    min-height: 0;
  }

  .career-process li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 54rem) {
  .career-situation-grid {
    grid-template-columns: 1fr;
  }

  .career-situation-grid article {
    min-height: 0;
  }
}

@media (max-width: 42rem) {
  .career-hero .lesson-hero__media img {
    object-position: 69% center;
  }

  .career-hero .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.96), rgba(15, 39, 79, 0.78));
  }

  .career-situation-grid article,
  .career-fit-card,
  .career-process li,
  .career-quote {
    padding: 1.5rem;
  }

  .career-country-list article {
    grid-template-columns: 3.4rem 1fr;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
  }

  .career-country-list article > span {
    font-size: 2.1rem;
  }
}

/* German exam preparation landing page */
.exam-hero .lesson-hero__media img {
  object-position: center;
}

.exam-hero .lesson-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.98) 0%, rgba(15, 39, 79, 0.92) 48%, rgba(15, 39, 79, 0.16) 74%, rgba(15, 39, 79, 0.02) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.5), transparent 58%);
}

.exam-reality {
  background:
    radial-gradient(circle at 91% 7%, rgba(244, 176, 31, 0.14), transparent 21rem),
    var(--brand-white);
}

.exam-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 3.3rem;
}

.exam-skill-grid article {
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1.15rem;
  background: #f4f7fb;
  box-shadow: 0 1rem 2.2rem rgba(20, 42, 83, 0.06);
}

.exam-skill-grid article:nth-child(even) {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--brand-white);
}

.exam-skill-grid article > span {
  display: block;
  color: var(--brand-orange);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.exam-skill-grid h3 {
  margin: 2.7rem 0 0;
  color: var(--brand-blue);
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.exam-skill-grid article:nth-child(even) h3 {
  color: var(--brand-white);
}

.exam-skill-grid p {
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.exam-skill-grid article:nth-child(even) p {
  color: rgba(252, 252, 252, 0.72);
}

.exam-system {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 88%, rgba(244, 176, 31, 0.14), transparent 22rem),
    linear-gradient(132deg, #142d5d, var(--brand-blue) 68%, #2d5699);
  color: var(--brand-white);
}

.exam-system__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.exam-system__intro h2,
.exam-training h2 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  line-height: 0.96;
}

.exam-system__intro > p:not(.eyebrow),
.exam-training__grid > div:first-child > p:not(.eyebrow) {
  margin: 1.35rem 0 0;
  color: rgba(252, 252, 252, 0.74);
}

.exam-system__signal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(252, 252, 252, 0.2);
}

.exam-system__signal strong {
  color: var(--brand-orange);
  font: 700 4.5rem/0.8 var(--font-heading);
}

.exam-system__signal span {
  max-width: 18rem;
  color: rgba(252, 252, 252, 0.8);
  font-weight: 800;
}

.exam-system__steps {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.07);
  list-style: none;
}

.exam-system__steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4rem;
  padding: 2rem;
}

.exam-system__steps li + li {
  border-top: 1px solid rgba(252, 252, 252, 0.17);
}

.exam-system__steps li > span {
  color: var(--brand-orange);
  font: 700 2.1rem/1 var(--font-heading);
}

.exam-system__steps li > div > p:first-child {
  margin: 0 0 0.35rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exam-system__steps h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.exam-system__steps li > div > p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.exam-levels {
  background:
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    #f5f7fb;
  background-size: 3rem 3rem;
}

.exam-levels__heading {
  max-width: 70rem;
}

.exam-levels__heading h2,
.exam-proof__intro h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  line-height: 0.97;
}

.exam-levels__heading > p:last-child,
.exam-proof__intro > p:last-child {
  max-width: 48rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
}

.exam-level-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.exam-level-grid article {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.15rem;
  background: rgba(252, 252, 252, 0.96);
  box-shadow: 0 1rem 2.2rem rgba(20, 42, 83, 0.06);
}

.exam-level-grid strong {
  color: var(--brand-orange);
  font: 700 4.2rem/0.9 var(--font-heading);
}

.exam-level-grid h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 2.1rem;
}

.exam-level-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.exam-training {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at 83% 25%, rgba(244, 176, 31, 0.13), transparent 24rem),
    linear-gradient(132deg, #102750, var(--brand-blue));
  color: var(--brand-white);
}

.exam-training__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.exam-training__grid .button {
  margin-top: 1.8rem;
}

.exam-training__list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.06);
  list-style: none;
}

.exam-training__list li {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 1.1rem;
  padding: 1.45rem 1.7rem;
}

.exam-training__list li + li {
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.exam-training__list li > span {
  color: var(--brand-orange);
  font: 700 1.6rem/1 var(--font-heading);
}

.exam-training__list h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: 1.8rem;
}

.exam-training__list p {
  margin: 0.25rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.exam-proof {
  background: linear-gradient(132deg, #fff9ed, #f3f6fa 72%);
}

.exam-proof__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.exam-quote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.8rem);
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--brand-white);
  box-shadow: 0 1.5rem 3.5rem rgba(20, 42, 83, 0.12);
}

.exam-quote > span {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  color: rgba(244, 176, 31, 0.18);
  font: 700 10rem/1 var(--font-heading);
}

.exam-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--brand-blue);
  font: 600 clamp(2rem, 3.8vw, 3.15rem)/1.1 var(--font-heading);
}

.exam-quote figcaption {
  margin-top: 1.6rem;
  color: var(--muted);
}

.exam-quote figcaption strong {
  color: var(--ink);
}

.exam-quote a {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-weight: 900;
  text-underline-offset: 0.28rem;
}

.exam-quote a span {
  color: var(--brand-orange);
}

.exam-final {
  background:
    radial-gradient(circle at 88% 50%, rgba(244, 176, 31, 0.14), transparent 16rem),
    var(--brand-white);
}

@media (max-width: 68rem) {
  .exam-skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-system__grid,
  .exam-training__grid,
  .exam-proof__grid {
    grid-template-columns: 1fr;
  }

  .exam-system__intro,
  .exam-training__grid > div:first-child,
  .exam-proof__intro {
    max-width: 48rem;
  }
}

@media (max-width: 54rem) {
  .exam-level-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  .exam-hero .lesson-hero__media img {
    object-position: 69% center;
  }

  .exam-hero .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.96), rgba(15, 39, 79, 0.78));
  }

  .exam-skill-grid {
    grid-template-columns: 1fr;
  }

  .exam-skill-grid article {
    min-height: 0;
    padding: 1.5rem;
  }

  .exam-skill-grid h3 {
    margin-top: 1.8rem;
  }

  .exam-system__steps li,
  .exam-training__list li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.4rem;
  }

  .exam-level-grid article {
    grid-template-columns: 4.7rem 1fr;
    padding: 1.4rem;
  }

  .exam-level-grid strong {
    font-size: 3.4rem;
  }

  .exam-quote {
    padding: 1.5rem;
  }
}

/* German conversation and speaking-confidence landing page */
.conversation-hero .lesson-hero__media img {
  object-position: center;
}

.conversation-hero .lesson-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.98) 0%, rgba(15, 39, 79, 0.91) 47%, rgba(15, 39, 79, 0.2) 73%, rgba(15, 39, 79, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.45), transparent 58%);
}

.conversation-barriers {
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 176, 31, 0.13), transparent 22rem),
    var(--brand-white);
}

.conversation-barrier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.3rem;
}

.conversation-barrier-grid article {
  position: relative;
  min-height: 18rem;
  padding: 2.15rem;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1.2rem;
  background: #f3f6fa;
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 83, 0.06);
}

.conversation-barrier-grid article:nth-child(2),
.conversation-barrier-grid article:nth-child(3) {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--brand-white);
}

.conversation-barrier-grid article > span {
  position: absolute;
  top: 1.7rem;
  right: 1.9rem;
  color: rgba(31, 58, 113, 0.1);
  font: 700 5rem/1 var(--font-heading);
}

.conversation-barrier-grid article:nth-child(2) > span,
.conversation-barrier-grid article:nth-child(3) > span {
  color: rgba(252, 252, 252, 0.11);
}

.conversation-barrier-grid article > p:first-of-type {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.conversation-barrier-grid h3 {
  position: relative;
  max-width: 25rem;
  margin: 3.2rem 0 0;
  color: var(--brand-blue);
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
  line-height: 0.98;
}

.conversation-barrier-grid article:nth-child(2) h3,
.conversation-barrier-grid article:nth-child(3) h3 {
  color: var(--brand-white);
}

.conversation-barrier-grid article > p:last-child {
  position: relative;
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.conversation-barrier-grid article:nth-child(2) > p:last-child,
.conversation-barrier-grid article:nth-child(3) > p:last-child {
  color: rgba(252, 252, 252, 0.72);
}

.conversation-method {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 88%, rgba(244, 176, 31, 0.15), transparent 24rem),
    linear-gradient(132deg, #102750, var(--brand-blue) 68%, #2b5598);
  color: var(--brand-white);
}

.conversation-method__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.conversation-method__copy h2,
.conversation-topics h2 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  line-height: 0.96;
}

.conversation-method__copy > p:not(.eyebrow),
.conversation-topics__grid > div:first-child > p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: rgba(252, 252, 252, 0.73);
}

.conversation-method__balance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1rem;
  background: rgba(252, 252, 252, 0.06);
}

.conversation-method__balance > div {
  padding: 1.25rem;
}

.conversation-method__balance > div + div {
  border-left: 1px solid rgba(252, 252, 252, 0.18);
}

.conversation-method__balance strong,
.conversation-method__balance span {
  display: block;
}

.conversation-method__balance strong {
  color: var(--brand-orange);
  font: 700 1.75rem/1 var(--font-heading);
}

.conversation-method__balance span {
  margin-top: 0.45rem;
  color: rgba(252, 252, 252, 0.66);
  font-size: 0.88rem;
}

.conversation-loop {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.07);
  list-style: none;
}

.conversation-loop li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4rem;
  padding: 2rem;
}

.conversation-loop li + li {
  border-top: 1px solid rgba(252, 252, 252, 0.17);
}

.conversation-loop li > span {
  color: var(--brand-orange);
  font: 700 2.1rem/1 var(--font-heading);
}

.conversation-loop li > div > p:first-child {
  margin: 0 0 0.35rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conversation-loop h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.conversation-loop li > div > p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.conversation-progress {
  background:
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    #f5f7fb;
  background-size: 3rem 3rem;
}

.conversation-progress__heading {
  max-width: 62rem;
}

.conversation-progress__heading h2,
.conversation-proof__intro h2,
.conversation-immersion__statement h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  line-height: 0.97;
}

.conversation-progress__heading > p:last-child,
.conversation-proof__intro > p:last-child {
  max-width: 46rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
}

.conversation-progress__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.2rem;
  background: rgba(252, 252, 252, 0.96);
  box-shadow: 0 1.2rem 2.8rem rgba(20, 42, 83, 0.07);
}

.conversation-progress__track article {
  min-height: 21rem;
  padding: 2rem;
}

.conversation-progress__track article + article {
  border-left: 1px solid rgba(31, 58, 113, 0.12);
}

.conversation-progress__track strong {
  display: block;
  color: var(--brand-orange);
  font: 700 4rem/0.9 var(--font-heading);
}

.conversation-progress__track article > div > p:first-child {
  margin: 2.7rem 0 0.45rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation-progress__track h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
}

.conversation-progress__track article > div > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.conversation-topics {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 176, 31, 0.13), transparent 23rem),
    linear-gradient(132deg, #102750, var(--brand-blue));
  color: var(--brand-white);
}

.conversation-topics__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.conversation-topics__grid .button {
  margin-top: 1.8rem;
}

.conversation-topic-list {
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.06);
}

.conversation-topic-list article {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 1.1rem;
  padding: 1.45rem 1.7rem;
}

.conversation-topic-list article + article {
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.conversation-topic-list article > span {
  color: var(--brand-orange);
  font: 700 1.6rem/1 var(--font-heading);
}

.conversation-topic-list h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: 1.8rem;
}

.conversation-topic-list p {
  margin: 0.25rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.conversation-immersion {
  background: linear-gradient(132deg, #fff9ed, #f4f7fb 72%);
}

.conversation-immersion__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.conversation-immersion__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.conversation-immersion__copy > p + p {
  margin-top: 1rem;
}

.conversation-immersion__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.35rem;
  border-left: 0.28rem solid var(--brand-orange);
  border-radius: 0 1rem 1rem 0;
  background: var(--brand-blue);
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 83, 0.12);
}

.conversation-immersion__note strong,
.conversation-immersion__note span {
  display: block;
}

.conversation-immersion__note strong {
  color: var(--brand-orange);
  font: 700 1.9rem/1 var(--font-heading);
}

.conversation-immersion__note span {
  color: rgba(252, 252, 252, 0.75);
}

.conversation-proof {
  background: var(--brand-white);
}

.conversation-proof__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.conversation-quote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.8rem);
  overflow: hidden;
  border-radius: 1.35rem;
  background: #f3f6fa;
  box-shadow: 0 1.5rem 3.5rem rgba(20, 42, 83, 0.11);
}

.conversation-quote > span {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  color: rgba(244, 176, 31, 0.2);
  font: 700 10rem/1 var(--font-heading);
}

.conversation-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--brand-blue);
  font: 600 clamp(1.9rem, 3.6vw, 3rem)/1.1 var(--font-heading);
}

.conversation-quote figcaption {
  margin-top: 1.6rem;
  color: var(--muted);
}

.conversation-quote figcaption strong {
  color: var(--ink);
}

.conversation-quote a {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-weight: 900;
  text-underline-offset: 0.28rem;
}

.conversation-quote a span {
  color: var(--brand-orange);
}

.conversation-final {
  background:
    radial-gradient(circle at 88% 50%, rgba(244, 176, 31, 0.14), transparent 16rem),
    var(--brand-white);
}

@media (max-width: 68rem) {
  .conversation-method__grid,
  .conversation-topics__grid,
  .conversation-immersion__grid,
  .conversation-proof__grid {
    grid-template-columns: 1fr;
  }

  .conversation-method__copy,
  .conversation-topics__grid > div:first-child,
  .conversation-immersion__statement,
  .conversation-proof__intro {
    max-width: 48rem;
  }
}

@media (max-width: 54rem) {
  .conversation-barrier-grid,
  .conversation-progress__track {
    grid-template-columns: 1fr;
  }

  .conversation-progress__track article {
    min-height: 0;
  }

  .conversation-progress__track article + article {
    border-top: 1px solid rgba(31, 58, 113, 0.12);
    border-left: 0;
  }
}

@media (max-width: 42rem) {
  .conversation-hero .lesson-hero__media img {
    object-position: 69% center;
  }

  .conversation-hero .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.96), rgba(15, 39, 79, 0.78));
  }

  .conversation-barrier-grid article,
  .conversation-loop li,
  .conversation-progress__track article,
  .conversation-topic-list article,
  .conversation-quote {
    padding: 1.5rem;
  }

  .conversation-barrier-grid article {
    min-height: 0;
  }

  .conversation-barrier-grid h3 {
    margin-top: 2.2rem;
  }

  .conversation-loop li,
  .conversation-topic-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .conversation-method__balance {
    grid-template-columns: 1fr;
  }

  .conversation-method__balance > div + div {
    border-top: 1px solid rgba(252, 252, 252, 0.18);
    border-left: 0;
  }

  .conversation-progress__track article > div > p:first-child {
    margin-top: 1.8rem;
  }

  .conversation-immersion__note {
    grid-template-columns: 1fr;
  }
}

/* German for life abroad landing page */
.abroad-hero .lesson-hero__media img {
  object-position: center;
}

.abroad-hero .lesson-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.98) 0%, rgba(15, 39, 79, 0.92) 48%, rgba(15, 39, 79, 0.21) 74%, rgba(15, 39, 79, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.44), transparent 58%);
}

.career-dach__related {
  display: block;
  max-width: 28rem;
  margin-top: 1.15rem;
  color: rgba(252, 252, 252, 0.84);
  font-weight: 800;
  text-underline-offset: 0.28rem;
}

.career-dach__related span {
  color: var(--brand-orange);
}

.abroad-everyday {
  background:
    radial-gradient(circle at 91% 8%, rgba(244, 176, 31, 0.14), transparent 22rem),
    var(--brand-white);
}

.abroad-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.3rem;
}

.abroad-situation-grid article {
  position: relative;
  min-height: 18.5rem;
  padding: 2.15rem;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: 1.2rem;
  background: #f3f6fa;
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 83, 0.06);
}

.abroad-situation-grid article:nth-child(2),
.abroad-situation-grid article:nth-child(3) {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--brand-white);
}

.abroad-situation-grid article > span {
  position: absolute;
  top: 1.7rem;
  right: 1.9rem;
  color: rgba(31, 58, 113, 0.1);
  font: 700 5rem/1 var(--font-heading);
}

.abroad-situation-grid article:nth-child(2) > span,
.abroad-situation-grid article:nth-child(3) > span {
  color: rgba(252, 252, 252, 0.11);
}

.abroad-situation-grid article > p:first-of-type {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.abroad-situation-grid h3 {
  position: relative;
  max-width: 27rem;
  margin: 3.2rem 0 0;
  color: var(--brand-blue);
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
  line-height: 0.98;
}

.abroad-situation-grid article:nth-child(2) h3,
.abroad-situation-grid article:nth-child(3) h3 {
  color: var(--brand-white);
}

.abroad-situation-grid article > p:last-child {
  position: relative;
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.abroad-situation-grid article:nth-child(2) > p:last-child,
.abroad-situation-grid article:nth-child(3) > p:last-child {
  color: rgba(252, 252, 252, 0.72);
}

.abroad-method {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 88%, rgba(244, 176, 31, 0.15), transparent 24rem),
    linear-gradient(132deg, #102750, var(--brand-blue) 68%, #2b5598);
  color: var(--brand-white);
}

.abroad-method__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.abroad-method__copy h2,
.abroad-countries h2 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  line-height: 0.96;
}

.abroad-method__copy > p:not(.eyebrow),
.abroad-countries__grid > div:first-child > p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: rgba(252, 252, 252, 0.73);
}

.abroad-method__copy .button {
  margin-top: 1.8rem;
}

.abroad-process {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.07);
  list-style: none;
}

.abroad-process li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4rem;
  padding: 2rem;
}

.abroad-process li + li {
  border-top: 1px solid rgba(252, 252, 252, 0.17);
}

.abroad-process li > span {
  color: var(--brand-orange);
  font: 700 2.1rem/1 var(--font-heading);
}

.abroad-process li > div > p:first-child {
  margin: 0 0 0.35rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.abroad-process h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.abroad-process li > div > p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.abroad-progress {
  background:
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    #f5f7fb;
  background-size: 3rem 3rem;
}

.abroad-progress__heading {
  max-width: 65rem;
}

.abroad-progress__heading h2,
.abroad-bridge__statement h2,
.abroad-proof__intro h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  line-height: 0.97;
}

.abroad-progress__heading > p:last-child,
.abroad-proof__intro > p:last-child {
  max-width: 48rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
}

.abroad-progress__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.2rem;
  background: rgba(252, 252, 252, 0.96);
  box-shadow: 0 1.2rem 2.8rem rgba(20, 42, 83, 0.07);
}

.abroad-progress__track article {
  min-height: 21rem;
  padding: 2rem;
}

.abroad-progress__track article + article {
  border-left: 1px solid rgba(31, 58, 113, 0.12);
}

.abroad-progress__track strong {
  display: block;
  color: var(--brand-orange);
  font: 700 4rem/0.9 var(--font-heading);
}

.abroad-progress__track article > div > p:first-child {
  margin: 2.7rem 0 0.45rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.abroad-progress__track h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
}

.abroad-progress__track article > div > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.abroad-countries {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 176, 31, 0.14), transparent 23rem),
    linear-gradient(132deg, #102750, var(--brand-blue));
  color: var(--brand-white);
}

.abroad-countries__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.abroad-country-list {
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.06);
}

.abroad-country-list article {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.55rem 1.7rem;
}

.abroad-country-list article + article {
  border-top: 1px solid rgba(252, 252, 252, 0.16);
}

.abroad-country-list article > span {
  color: var(--brand-orange);
  font: 700 2.5rem/1 var(--font-heading);
}

.abroad-country-list h3 {
  margin: 0;
  color: var(--brand-white);
  font-size: 2rem;
}

.abroad-country-list p {
  margin: 0.3rem 0 0;
  color: rgba(252, 252, 252, 0.7);
}

.abroad-country-list .is-priority {
  background: rgba(244, 176, 31, 0.11);
}

.abroad-country-list .is-priority div > p:first-child {
  margin: 0 0 0.25rem;
  color: var(--brand-orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.abroad-bridge {
  background: linear-gradient(132deg, #fff9ed, #f4f7fb 72%);
}

.abroad-bridge__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.abroad-bridge__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.abroad-bridge__copy > p + p {
  margin-top: 1rem;
}

.abroad-bridge__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.35rem;
  border-left: 0.28rem solid var(--brand-orange);
  border-radius: 0 1rem 1rem 0;
  background: var(--brand-blue);
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 83, 0.12);
}

.abroad-bridge__note strong {
  color: var(--brand-orange);
  font: 700 2.5rem/1 var(--font-heading);
}

.abroad-bridge__note span {
  color: rgba(252, 252, 252, 0.75);
}

.abroad-proof {
  background: var(--brand-white);
}

.abroad-proof__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.abroad-quote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.8rem);
  overflow: hidden;
  border-radius: 1.35rem;
  background: #f3f6fa;
  box-shadow: 0 1.5rem 3.5rem rgba(20, 42, 83, 0.11);
}

.abroad-quote > span {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  color: rgba(244, 176, 31, 0.2);
  font: 700 10rem/1 var(--font-heading);
}

.abroad-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--brand-blue);
  font: 600 clamp(1.9rem, 3.6vw, 3rem)/1.1 var(--font-heading);
}

.abroad-quote figcaption {
  margin-top: 1.6rem;
  color: var(--muted);
}

.abroad-quote figcaption strong {
  color: var(--ink);
}

.abroad-quote a {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-weight: 900;
  text-underline-offset: 0.28rem;
}

.abroad-quote a span {
  color: var(--brand-orange);
}

.abroad-final {
  background:
    radial-gradient(circle at 88% 50%, rgba(244, 176, 31, 0.14), transparent 16rem),
    var(--brand-white);
}

@media (max-width: 68rem) {
  .abroad-method__grid,
  .abroad-countries__grid,
  .abroad-bridge__grid,
  .abroad-proof__grid {
    grid-template-columns: 1fr;
  }

  .abroad-method__copy,
  .abroad-countries__grid > div:first-child,
  .abroad-bridge__statement,
  .abroad-proof__intro {
    max-width: 48rem;
  }
}

@media (max-width: 54rem) {
  .abroad-situation-grid,
  .abroad-progress__track {
    grid-template-columns: 1fr;
  }

  .abroad-progress__track article {
    min-height: 0;
  }

  .abroad-progress__track article + article {
    border-top: 1px solid rgba(31, 58, 113, 0.12);
    border-left: 0;
  }
}

@media (max-width: 42rem) {
  .abroad-hero .lesson-hero__media img {
    object-position: 71% center;
  }

  .abroad-hero .lesson-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 24, 51, 0.97), rgba(15, 39, 79, 0.79));
  }

  .abroad-situation-grid article,
  .abroad-process li,
  .abroad-progress__track article,
  .abroad-country-list article,
  .abroad-quote {
    padding: 1.5rem;
  }

  .abroad-situation-grid article {
    min-height: 0;
  }

  .abroad-situation-grid h3 {
    margin-top: 2.2rem;
  }

  .abroad-process li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .abroad-progress__track article > div > p:first-child {
    margin-top: 1.8rem;
  }

  .abroad-country-list article {
    grid-template-columns: 3.6rem 1fr;
    gap: 1rem;
  }

  .abroad-country-list article > span {
    font-size: 2rem;
  }

  .abroad-bridge__note {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-hero {
  position: relative;
  min-height: 43rem;
  padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
  overflow: hidden;
  color: var(--brand-white);
  background:
    radial-gradient(circle at 78% 28%, rgba(244, 176, 31, 0.18), transparent 25rem),
    linear-gradient(125deg, #0b1e40 0%, var(--brand-blue) 58%, #315b9c 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: auto -8rem -18rem auto;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(252, 252, 252, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(252, 252, 252, 0.025), 0 0 0 14rem rgba(252, 252, 252, 0.018);
}

.contact-hero__glow {
  position: absolute;
  inset: 18% auto auto 45%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(244, 176, 31, 0.15);
  filter: blur(4rem);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.contact-hero__content {
  max-width: 45rem;
}

.contact-hero__content h1 {
  color: var(--brand-white);
}

.contact-hero__content > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.8);
  font-size: 1.12rem;
}

.contact-hero__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-hero__channels a {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(252, 252, 252, 0.22);
  border-radius: 0.85rem;
  background: rgba(252, 252, 252, 0.07);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-hero__channels a:hover {
  transform: translateY(-0.18rem);
  border-color: var(--brand-orange);
  background: rgba(252, 252, 252, 0.11);
}

.contact-hero__channels span {
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero__channels strong {
  font-size: 1rem;
}

.contact-hero__portrait {
  position: relative;
  max-width: 20rem;
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid rgba(252, 252, 252, 0.18);
  border-radius: 10rem 10rem 1.25rem 1.25rem;
  background: rgba(252, 252, 252, 0.08);
  box-shadow: 0 2rem 4rem rgba(5, 17, 38, 0.28);
}

.contact-hero__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 9.2rem 9.2rem 0.85rem 0.85rem;
}

.contact-hero__portrait figcaption {
  display: grid;
  gap: 0.1rem;
  padding: 1rem 0.65rem 0.4rem;
  text-align: center;
}

.contact-hero__portrait strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
}

.contact-hero__portrait span {
  color: rgba(252, 252, 252, 0.7);
  font-size: 0.82rem;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    var(--brand-white);
  background-size: 3.5rem 3.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact-form-wrap {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.35rem;
  background: rgba(252, 252, 252, 0.96);
  box-shadow: 0 1.3rem 3.4rem rgba(31, 58, 113, 0.1);
}

.contact-form-wrap > h2,
.contact-aside > h2,
.contact-direct h2 {
  margin: 0.7rem 0 1rem;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.004em;
}

.contact-form-intro {
  max-width: 46rem;
  margin: 0 0 2.2rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--brand-blue);
  font-weight: 900;
}

.form-field label > span:not(.field-optional) {
  color: #b64a33;
}

.field-optional {
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #bfc9d8;
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input {
  min-height: 3.45rem;
  padding: 0 1rem;
}

.form-field textarea {
  min-height: 11rem;
  padding: 0.85rem 1rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 0 0.23rem rgba(45, 85, 153, 0.15);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #b64a33;
}

.field-error {
  display: block;
  color: #9b2f24;
  font-size: 0.84rem;
  font-weight: 800;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-turnstile {
  width: 100%;
  min-height: 4.1rem;
}

.form-turnstile .cf-turnstile {
  width: 100%;
}

.form-submit-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.3rem;
  align-items: center;
}

.form-submit-row p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-submit-row p a {
  color: var(--brand-blue);
  font-weight: 800;
}

.form-alert,
.form-success {
  margin: 0 0 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
}

.form-alert {
  border: 1px solid rgba(155, 47, 36, 0.3);
  background: #fff1ee;
  color: #7b241c;
  font-weight: 800;
}

.form-success {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(43, 122, 75, 0.28);
  background: #eef9f1;
  color: #195c35;
}

.form-success > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: #2b7a4b;
  color: white;
  font-weight: 900;
}

.form-success h3,
.form-success p {
  margin: 0;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding-top: 1.4rem;
}

.contact-aside > h2 {
  font-size: clamp(2.7rem, 4vw, 4.1rem);
}

.contact-aside ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.contact-aside li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(31, 58, 113, 0.16);
}

.contact-aside li > span {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-aside li strong {
  color: var(--brand-blue);
}

.contact-aside li p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-aside__note {
  padding: 1.4rem;
  border-radius: 1rem;
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 1rem 2.4rem rgba(31, 58, 113, 0.2);
}

.contact-aside__note strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.contact-aside__note p {
  margin: 0.5rem 0 1rem;
  color: rgba(252, 252, 252, 0.74);
  font-size: 0.9rem;
}

.contact-aside__note .text-link {
  color: var(--brand-orange);
}

.contact-direct {
  padding: 5rem 0;
  background: #eef2f8;
}

.contact-direct__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.contact-direct h2 {
  max-width: 38rem;
  margin-bottom: 0;
}

.contact-direct__links {
  display: grid;
  gap: 0.8rem;
}

.contact-direct__links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(31, 58, 113, 0.13);
  border-radius: 0.8rem;
  background: white;
  color: var(--brand-blue);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-direct__links a:hover {
  transform: translateX(0.2rem);
  box-shadow: 0 0.8rem 1.8rem rgba(31, 58, 113, 0.1);
}

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

.contact-direct__links strong {
  text-align: right;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

/* Booking */
.booking-hero {
  position: relative;
  min-height: 43rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 5rem) 0 6.5rem;
  background:
    radial-gradient(circle at 82% 38%, rgba(244, 176, 31, 0.22), transparent 19rem),
    linear-gradient(125deg, #142c5b 0%, var(--brand-blue) 54%, #315b9e 100%);
  color: var(--brand-white);
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(252, 252, 252, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 252, 252, 0.22) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 55%);
}

.booking-hero__orbit {
  position: absolute;
  border: 1px solid rgba(252, 252, 252, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.booking-hero__orbit--one {
  width: 34rem;
  height: 34rem;
  top: 7rem;
  right: -8rem;
}

.booking-hero__orbit--two {
  width: 15rem;
  height: 15rem;
  right: 18rem;
  bottom: -7rem;
  border-color: rgba(244, 176, 31, 0.4);
}

.booking-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.booking-hero__content > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: rgba(252, 252, 252, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.booking-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-top: 2.4rem;
}

.booking-hero__visual {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}

.booking-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 7 / 5;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(5, 17, 38, 0.34);
}

.booking-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 24, 53, 0.68) 100%);
  pointer-events: none;
}

.booking-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero__media figcaption,
.references-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  top: 0.7rem;
  padding: 0.38rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(7, 23, 51, 0.76);
  color: rgba(252, 252, 252, 0.88);
  font-size: 0.68rem;
  line-height: 1.25;
  backdrop-filter: blur(0.35rem);
}

.booking-hero__promise {
  position: absolute;
  z-index: 3;
  right: 1.8rem;
  bottom: 0;
  width: min(25rem, calc(100% - 1rem));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.45rem;
  border: 1px solid rgba(252, 252, 252, 0.22);
  border-radius: 1.2rem;
  background: rgba(252, 252, 252, 0.09);
  box-shadow: 0 1.5rem 3.5rem rgba(5, 17, 38, 0.22);
  backdrop-filter: blur(0.8rem);
}

.booking-hero__number {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.booking-hero__promise strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.booking-hero__promise p {
  margin: 0.3rem 0 0;
  color: rgba(252, 252, 252, 0.72);
  font-size: 0.88rem;
}

.booking-steps {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brand-white);
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.booking-heading > p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 3.5rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--line);
  list-style: none;
}

.booking-step-list li {
  min-height: 15rem;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding: 1.7rem;
  background: #fff;
}

.booking-step-list li > span {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.booking-step-list h3 {
  margin-bottom: 0.7rem;
}

.booking-step-list p {
  margin: 0;
  color: var(--muted);
}

.booking-calendar-section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    #eef2f8;
  background-size: 4rem 4rem;
}

.booking-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: 2rem;
  align-items: start;
}

.booking-calendar-main {
  min-width: 0;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.3rem;
  background: rgba(252, 252, 252, 0.98);
  box-shadow: 0 1.5rem 3.5rem rgba(31, 58, 113, 0.1);
}

.booking-calendar-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.booking-calendar-heading h2 {
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.booking-calendar-heading p:not(.eyebrow) {
  max-width: 45rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.booking-direct-link {
  display: grid;
  min-width: 12rem;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 58, 113, 0.18);
  border-radius: 0.7rem;
  color: var(--brand-blue);
  text-decoration: none;
}

.booking-direct-link span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-direct-link:hover {
  border-color: var(--brand-orange);
}

.booking-embed-shell {
  position: relative;
  min-height: 43.75rem;
  margin-top: 1.5rem;
  border-radius: 0.8rem;
  background: #fff;
}

.booking-embed-status {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  min-height: 30rem;
  padding: 2rem;
  color: var(--brand-blue);
  text-align: center;
}

.booking-embed-status p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.booking-spinner {
  width: 2.4rem;
  height: 2.4rem;
  border: 0.24rem solid rgba(31, 58, 113, 0.12);
  border-top-color: var(--brand-orange);
  border-radius: 50%;
  animation: booking-spin 850ms linear infinite;
}

.booking-embed-shell.has-load-warning {
  min-height: 18rem;
  border: 1px dashed rgba(31, 58, 113, 0.25);
  background: #f6f8fb;
}

.booking-embed-shell.is-loaded {
  min-height: 0;
}

.booking-unavailable {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.8rem;
  background: #f6f8fb;
}

.booking-unavailable p {
  margin: 0;
}

.booking-fallback {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 1.7rem;
  border-radius: 1.2rem;
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 1.5rem 3rem rgba(31, 58, 113, 0.22);
}

.booking-fallback h2 {
  margin: 0.7rem 0 1rem;
  color: var(--brand-white);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.booking-fallback > p:not(.eyebrow) {
  margin: 0 0 1.5rem;
  color: rgba(252, 252, 252, 0.76);
}

.booking-fallback > .button {
  width: 100%;
}

.booking-fallback__contacts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(252, 252, 252, 0.18);
}

.booking-fallback__contacts p {
  margin: 0 0 0.25rem;
  color: rgba(252, 252, 252, 0.72);
  font-size: 0.86rem;
}

.booking-fallback__contacts a {
  display: grid;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(252, 252, 252, 0.16);
  border-radius: 0.65rem;
  text-decoration: none;
}

.booking-fallback__contacts a:hover {
  border-color: var(--brand-orange);
}

.booking-fallback__contacts span {
  color: var(--brand-orange);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-fallback__contacts strong {
  font-size: 0.9rem;
}

.booking-rules {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brand-white);
}

.booking-rules__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.booking-rules__grid > div:first-child > p:last-child {
  max-width: 32rem;
  color: var(--muted);
}

.booking-rule-cards {
  display: grid;
  border-top: 1px solid var(--line);
}

.booking-rule-cards article {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.booking-rule-cards article > span {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.booking-rule-cards h3 {
  margin-bottom: 0.5rem;
}

.booking-rule-cards p {
  margin: 0;
  color: var(--muted);
}

.booking-privacy {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(31, 58, 113, 0.1);
  background: #eef2f8;
  color: var(--muted);
  font-size: 0.8rem;
}

.booking-privacy .shell {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.booking-privacy p {
  margin: 0;
}

.booking-privacy a {
  color: var(--brand-blue);
  font-weight: 800;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 68rem) {
  .booking-hero__grid,
  .booking-calendar-layout,
  .booking-rules__grid {
    grid-template-columns: 1fr;
  }

  .booking-hero__visual {
    width: min(42rem, 100%);
    padding-left: 0;
  }

  .booking-hero__promise {
    max-width: 34rem;
  }

  .booking-fallback {
    position: static;
  }
}

@media (max-width: 50rem) {
  .booking-heading,
  .booking-calendar-heading {
    grid-template-columns: 1fr;
  }

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

  .booking-step-list li {
    min-height: 0;
  }

  .booking-direct-link {
    width: 100%;
  }
}

@media (max-width: 42rem) {
  .booking-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
  }

  .booking-hero__promise {
    grid-template-columns: 4rem 1fr;
  }

  .booking-hero__visual {
    padding-bottom: 0;
  }

  .booking-hero__media {
    aspect-ratio: 4 / 3;
  }

  .booking-hero__promise {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin: -2rem auto 0;
  }

  .booking-hero__number {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .booking-calendar-main {
    padding: 1rem;
  }

  .booking-calendar-heading h2 {
    font-size: 3rem;
  }

  .booking-embed-shell {
    min-height: 34rem;
  }

  .booking-rule-cards article {
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
  }
}

@media (max-width: 68rem) {
  .contact-hero__grid,
  .contact-layout,
  .contact-direct__inner {
    grid-template-columns: 1fr;
  }

  .contact-hero__grid {
    gap: 3rem;
  }

  .contact-hero__portrait {
    width: min(24rem, 78vw);
  }

  .contact-aside {
    position: static;
    padding-top: 0;
  }

  .contact-direct__inner {
    gap: 2rem;
  }
}

@media (max-width: 42rem) {
  .contact-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 2.5rem) 0 4rem;
  }

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

  .contact-hero__portrait {
    width: min(20rem, 84vw);
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }

  .contact-form-wrap > h2 {
    font-size: 3rem;
  }

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

  .form-submit-row .button {
    width: 100%;
  }

  .form-turnstile {
    max-width: 100%;
    overflow: hidden;
  }

  .contact-direct__links a {
    display: grid;
  }

  .contact-direct__links strong {
    text-align: left;
  }
}

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

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

/* Test úrovne nemčiny */

.placement-test-page {
  background: var(--brand-white);
}

.placement-hero .lesson-hero__media img {
  object-position: center;
}

.placement-hero .lesson-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.98) 0%, rgba(15, 39, 79, 0.94) 43%, rgba(15, 39, 79, 0.48) 64%, rgba(15, 39, 79, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 24, 51, 0.54), transparent 56%);
}

.placement-hero .lesson-hero__content {
  max-width: 48rem;
}

.placement-intro {
  background:
    radial-gradient(circle at 8% 14%, rgba(244, 176, 31, 0.09), transparent 25rem),
    var(--brand-white);
}

.placement-intro__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2.5rem, 7vw, 7.5rem);
  align-items: start;
}

.placement-intro__heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.placement-intro__heading h2,
.placement-result-summary h2,
.placement-review__heading h2,
.placement-result-cta h2 {
  margin: 0.7rem 0 1.2rem;
  color: var(--brand-blue);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.placement-intro__heading > p:last-child {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.placement-instructions {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.4rem);
  background: #fff;
  box-shadow: 0 1.4rem 4rem rgba(31, 58, 113, 0.1);
}

.placement-instructions ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.placement-instructions li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.placement-instructions li:first-child {
  padding-top: 0;
}

.placement-instructions li > span {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.placement-instructions h3 {
  margin: 0 0 0.25rem;
  color: var(--brand-blue);
  font-size: 1.18rem;
}

.placement-instructions p {
  margin: 0;
  color: var(--muted);
}

.placement-intro__start {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.6rem;
}

.placement-intro__start p {
  color: var(--ink);
  font-size: 0.95rem;
}

.placement-question {
  min-height: 100svh;
  padding: calc(var(--header-height) + 1rem) 0 clamp(2.5rem, 5vw, 4rem);
  padding-top: calc(var(--header-height) + clamp(0.6rem, 1.5svh, 1rem));
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 176, 31, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 78%, rgba(45, 85, 153, 0.1), transparent 30rem),
    var(--soft);
}

.placement-question__shell {
  max-width: 64rem;
}

.placement-question__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.placement-question__topline .brand-mark {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.placement-question__topline p {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.placement-progress {
  height: 0.52rem;
  overflow: hidden;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: rgba(31, 58, 113, 0.12);
}

.placement-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-orange), #ffd272);
  box-shadow: 0 0 1.2rem rgba(244, 176, 31, 0.35);
  transition: width 0.25s ease;
}

.placement-question__card {
  padding: clamp(1.35rem, 2.8vw, 2.4rem) clamp(1.5rem, 4vw, 3.4rem);
  border: 1px solid rgba(31, 58, 113, 0.11);
  border-radius: calc(var(--radius) + 0.55rem);
  background: #fff;
  box-shadow: 0 1.6rem 4.5rem rgba(31, 58, 113, 0.12);
}

.placement-question__card h1 {
  margin: 0 0 0.85rem;
  color: var(--brand-blue);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.05;
}

.placement-question__context {
  position: relative;
  margin-bottom: 1rem;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border-left: 0.3rem solid var(--brand-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #f7f9fc;
}

.placement-question__context p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  font-weight: 700;
  line-height: 1.58;
}

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

.placement-answer-form legend {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 800;
}

.placement-options {
  display: grid;
  gap: 0.78rem;
}

.placement-option {
  position: relative;
  display: grid;
  grid-template-columns: 1.45rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.placement-option:hover {
  border-color: rgba(45, 85, 153, 0.48);
  transform: translateY(-1px);
  box-shadow: 0 0.55rem 1.4rem rgba(31, 58, 113, 0.08);
}

.placement-option:has(input:checked) {
  border-color: var(--brand-blue-light);
  background: #edf3fc;
  box-shadow: 0 0 0 0.18rem rgba(45, 85, 153, 0.1);
}

.placement-option:has(input:focus-visible) {
  outline: 0.18rem solid var(--brand-orange);
  outline-offset: 0.2rem;
}

.placement-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.placement-option__control {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.13rem;
  border: 2px solid #9aa9bd;
  border-radius: 50%;
  background: #fff;
}

.placement-option input:checked + .placement-option__control {
  border-color: var(--brand-blue-light);
}

.placement-option input:checked + .placement-option__control::after {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: 50%;
  background: var(--brand-blue-light);
}

.placement-question__navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.placement-nav-button,
.placement-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.78rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.placement-nav-button--primary {
  justify-self: end;
  min-width: min(100%, 13rem);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: #17213a;
}

.placement-nav-button--primary:hover:not(:disabled),
.placement-cta-link:hover {
  transform: translateY(-2px);
  background: #ffc84d;
  border-color: #ffc84d;
}

.placement-nav-button--primary:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.placement-nav-button--secondary {
  justify-self: start;
  border-color: rgba(31, 58, 113, 0.32);
  background: transparent;
  color: var(--brand-blue);
}

.placement-nav-button--secondary:hover {
  border-color: var(--brand-blue);
  background: rgba(31, 58, 113, 0.05);
}

.placement-message {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  font-weight: 750;
}

.placement-message--error {
  border: 1px solid #d99b9b;
  background: #fff0f0;
  color: #8a2828;
}

.placement-question__privacy {
  margin: 1.2rem 0 0;
  color: #68758a;
  font-size: 0.86rem;
  text-align: center;
}

.placement-result-hero {
  padding: calc(var(--header-height) + clamp(4rem, 9vw, 8rem)) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  color: var(--brand-white);
  background:
    radial-gradient(circle at 80% 25%, rgba(244, 176, 31, 0.2), transparent 23rem),
    linear-gradient(128deg, #102751, var(--brand-blue) 62%, #315a9c);
}

.placement-result-hero__inner {
  position: relative;
}

.placement-result-hero h1 {
  color: var(--brand-white);
}

.placement-result-hero__estimate {
  max-width: 48rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.85);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.placement-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(252, 252, 252, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.5rem);
}

.placement-score strong {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 0.8;
}

.placement-score span {
  color: rgba(252, 252, 252, 0.9);
  font-weight: 800;
}

.placement-result-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.placement-result-summary h2 {
  max-width: 11ch;
}

.placement-result-summary__grid > div:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.placement-result-summary {
  padding-bottom: clamp(2.75rem, 4vw, 4rem);
}

.placement-result-download {
  padding: 0 0 clamp(2.5rem, 4vw, 3.75rem);
  background: #fff;
}

.placement-result-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(31, 58, 113, 0.14);
  border-left: 0.28rem solid var(--brand-orange);
  border-radius: var(--radius);
  background: #f7f9fc;
  box-shadow: 0 0.8rem 2rem rgba(31, 58, 113, 0.06);
}

.placement-result-download h2 {
  max-width: 19ch;
  margin-bottom: 0.45rem;
  color: var(--brand-blue);
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  line-height: 1;
}

.placement-result-download p:not(.eyebrow) {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.placement-result-download__note {
  margin-top: 0.45rem !important;
  font-size: 0.82rem !important;
}

.placement-result-download form,
.placement-result-download .button {
  margin: 0;
  min-height: 3.05rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
}

.placement-review {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background: var(--soft);
}

.placement-review__heading {
  max-width: 65rem;
  margin-bottom: 2.2rem;
}

.placement-review__heading h2 {
  max-width: none;
}

.placement-review__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.placement-review__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.placement-review__legend i {
  width: 1rem;
  height: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.placement-review__legend .is-correct-sample {
  border-color: #9bc8a8;
  background: #e6f4e9;
}

.placement-review__legend .is-wrong-sample {
  border-color: #e2abab;
  background: #fbe9e9;
}

.placement-review__legend b {
  color: #13733b;
  font-size: 1.1rem;
}

.placement-review__list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.placement-review-card {
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.1);
  border-radius: calc(var(--radius) + 0.25rem);
  background: #fff;
  box-shadow: 0 0.8rem 2.2rem rgba(31, 58, 113, 0.07);
}

.placement-review-card > article {
  display: grid;
  grid-template-columns: 4.3rem 1fr;
}

.placement-review-card__number {
  display: grid;
  place-items: start center;
  padding-top: 1.55rem;
  color: rgba(31, 58, 113, 0.38);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: #f8fafd;
}

.placement-review-card__body {
  min-width: 0;
  padding: 1.45rem clamp(1.15rem, 3vw, 2rem) 1.7rem;
}

.placement-review-card__status {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.is-answer-correct .placement-review-card__status {
  color: #13733b;
}

.is-answer-wrong .placement-review-card__status {
  color: #a23333;
}

.placement-review-card__context {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
}

.placement-review-card h3 {
  margin: 0 0 1rem;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.placement-review-options {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.placement-review-options li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.7rem;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.62rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
}

.placement-review-options li.is-selected-correct {
  border-color: #9bc8a8;
  background: #e6f4e9;
}

.placement-review-options li.is-selected-wrong {
  border-color: #e2abab;
  background: #fbe9e9;
}

.placement-review-options li.is-correct-option:not(.is-selected-correct) {
  border-color: #8bbb99;
  box-shadow: inset 0 0 0 1px rgba(19, 115, 59, 0.08);
}

.placement-review-options em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.placement-correct-mark {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: #13733b;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.placement-explanation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  background: #f5f7fb;
  color: var(--muted);
}

.placement-explanation strong {
  color: var(--brand-blue);
}

.placement-explanation p {
  margin: 0;
}

.placement-result-cta {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  color: var(--brand-white);
  background:
    radial-gradient(circle at 86% 20%, rgba(244, 176, 31, 0.18), transparent 22rem),
    var(--brand-blue);
}

.placement-result-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.placement-result-cta h2 {
  max-width: 15ch;
  color: var(--brand-white);
}

.placement-result-cta p:not(.eyebrow) {
  max-width: 45rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.82);
  font-size: 1.08rem;
}

.placement-cta-link {
  max-width: 19rem;
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--ink);
}

.placement-restart {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.placement-restart__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.placement-restart__inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 60rem) {
  .placement-intro__grid,
  .placement-result-summary__grid,
  .placement-result-download__inner {
    grid-template-columns: 1fr;
  }

  .placement-intro__heading {
    position: static;
  }

  .placement-result-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  .placement-hero .lesson-hero__media img {
    object-position: 64% center;
  }

  .placement-hero .lesson-hero__overlay {
    background:
      linear-gradient(90deg, rgba(8, 24, 51, 0.96), rgba(15, 39, 79, 0.83)),
      linear-gradient(0deg, rgba(8, 24, 51, 0.72), transparent 70%);
  }

  .placement-intro__start,
  .placement-restart__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .placement-intro__start form,
  .placement-intro__start .button,
  .placement-result-download form,
  .placement-result-download .button,
  .placement-restart form,
  .placement-restart .placement-nav-button {
    width: 100%;
  }

  .placement-question {
    padding-top: calc(var(--header-height) + 0.5rem);
  }

  .placement-question__topline {
    margin-bottom: 0.25rem;
  }

  .placement-progress {
    margin-bottom: 0.4rem;
  }

  .placement-question__card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .placement-question__card h1 {
    margin-bottom: 0.65rem;
  }

  .placement-question__context {
    margin-bottom: 0.75rem;
    padding: 0.8rem;
  }

  .placement-answer-form legend {
    margin-bottom: 0.75rem;
  }

  .placement-options {
    gap: 0.65rem;
  }

  .placement-question__navigation {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .placement-question__navigation > span {
    display: block;
  }

  .placement-nav-button--primary,
  .placement-nav-button--secondary {
    width: 100%;
    justify-self: stretch;
  }

  .placement-nav-button--primary {
    order: initial;
  }

  .placement-review-card > article {
    grid-template-columns: 3rem 1fr;
  }

  .placement-review-card__number {
    font-size: 1.35rem;
  }

  .placement-review-card__body {
    padding: 1.15rem 0.8rem 1.3rem;
  }

  .placement-review-options li {
    grid-template-columns: 1fr auto;
  }

  .placement-review-options em {
    grid-column: 1 / -1;
  }

  .placement-explanation {
    grid-template-columns: 1fr;
  }
}

/* References */
.references-hero {
  position: relative;
  min-height: 39rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 5rem) 0 6rem;
  background:
    radial-gradient(circle at 78% 38%, rgba(244, 176, 31, 0.2), transparent 20rem),
    linear-gradient(122deg, #142c5b 0%, var(--brand-blue) 58%, #315b9e 100%);
  color: var(--brand-white);
}

.references-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(252, 252, 252, 0.3) 58% 58.08%, transparent 58.08%),
    linear-gradient(rgba(252, 252, 252, 0.16) 1px, transparent 1px);
  background-size: 100% 100%, 100% 5rem;
}

.references-hero__quote {
  position: absolute;
  top: 0.5rem;
  right: 6vw;
  color: rgba(252, 252, 252, 0.08);
  font-family: Georgia, serif;
  font-size: clamp(24rem, 45vw, 44rem);
  line-height: 1;
  pointer-events: none;
}

.references-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.references-hero__grid > div:first-child > p:last-child {
  max-width: 46rem;
  margin: 1.6rem 0 0;
  color: rgba(252, 252, 252, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.references-hero__visual {
  position: relative;
  padding: 0 0 4.4rem 2.4rem;
}

.references-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 7 / 5;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(5, 17, 38, 0.34);
}

.references-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 24, 53, 0.7) 100%);
  pointer-events: none;
}

.references-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.references-hero__facts {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 0;
  left: 0;
  display: grid;
  margin: 0;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(252, 252, 252, 0.2);
  border-radius: 1.15rem;
  background: rgba(22, 48, 96, 0.9);
  box-shadow: 0 1.4rem 3.4rem rgba(5, 17, 38, 0.3);
  backdrop-filter: blur(0.8rem);
}

.references-hero__facts div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.22);
}

.references-hero__facts div:last-child {
  border-bottom: 0;
}

.references-hero__facts dt {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.references-hero__facts dd {
  margin: 0;
  color: rgba(252, 252, 252, 0.78);
}

.reference-paths {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brand-white);
}

.reference-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.reference-section-heading > p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.reference-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.6rem;
}

.reference-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(31, 58, 113, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.reference-filter a:hover {
  transform: translateY(-0.1rem);
  border-color: var(--brand-orange);
}

.reference-filter a[aria-current="page"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-white);
}

.reference-featured {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brand-blue);
  color: var(--brand-white);
}

.reference-section-heading--inverse h2 {
  color: var(--brand-white);
}

.reference-section-heading--inverse > p {
  color: rgba(252, 252, 252, 0.72);
}

.reference-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.16);
  border-radius: 1.2rem;
  background: rgba(252, 252, 252, 0.16);
}

.reference-featured-grid article {
  min-height: 20rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1rem;
  padding: 1.6rem;
  background: #25457f;
}

.reference-featured-grid article > span {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.reference-featured-grid h3 {
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.02;
}

.reference-featured-grid p {
  margin: 0;
  color: rgba(252, 252, 252, 0.66);
  font-size: 0.82rem;
}

.reference-featured-grid a {
  color: var(--brand-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.reference-featured-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.reference-archive {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(90deg, rgba(31, 58, 113, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 113, 0.032) 1px, transparent 1px),
    #f2f5fa;
  background-size: 4rem 4rem;
}

.reference-archive__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.reference-archive__heading > p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.reference-archive__heading > p strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: start;
}

.reference-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.1rem;
  background: rgba(252, 252, 252, 0.98);
  box-shadow: 0 0.8rem 2.2rem rgba(31, 58, 113, 0.075);
}

.reference-card::before {
  content: "“";
  position: absolute;
  top: -1.7rem;
  right: 1rem;
  color: rgba(31, 58, 113, 0.055);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.reference-card:target {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 0.22rem rgba(244, 176, 31, 0.2), 0 1.2rem 3rem rgba(31, 58, 113, 0.12);
}

.reference-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.reference-card__tags a {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #e9eef6;
  color: var(--brand-blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.reference-card__tags a:hover {
  background: var(--brand-orange);
}

.reference-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
  padding-right: 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.reference-card__quote {
  position: relative;
  margin: 0;
  color: #3f4b60;
  transition: max-height 220ms ease;
}

.reference-card__quote p {
  margin: 0;
}

.reference-card__quote p + p {
  margin-top: 1rem;
}

.reference-card__quote.is-collapsed {
  max-height: 10.5rem;
  overflow: hidden;
}

.reference-card__quote.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4.5rem;
  background: linear-gradient(transparent, rgba(252, 252, 252, 0.98));
  pointer-events: none;
}

.reference-card__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--brand-blue);
  font: 900 0.85rem/1.2 var(--font-body);
  cursor: pointer;
}

.reference-card__toggle:hover {
  color: #b97800;
}

.reference-card footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.reference-card footer strong {
  color: var(--brand-blue);
}

.reference-card footer time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.reference-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}

.reference-pagination > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.reference-pagination a {
  display: inline-grid;
  min-width: 2.7rem;
  min-height: 2.7rem;
  place-items: center;
  padding: 0.4rem;
  border: 1px solid rgba(31, 58, 113, 0.18);
  border-radius: 0.55rem;
  background: var(--brand-white);
  color: var(--brand-blue);
  font-weight: 900;
  text-decoration: none;
}

.reference-pagination a:hover,
.reference-pagination a[aria-current="page"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-white);
}

.reference-pagination__direction:last-child {
  justify-self: end;
}

.reference-cta {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: #172f60;
  color: var(--brand-white);
}

.reference-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.reference-cta h2 {
  max-width: 47rem;
  color: var(--brand-white);
}

@media (max-width: 68rem) {
  .references-hero__grid,
  .reference-section-heading {
    grid-template-columns: 1fr;
  }

  .references-hero__visual {
    width: min(42rem, 100%);
    padding-left: 0;
  }

  .references-hero__facts {
    max-width: 36rem;
  }

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

  .reference-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 48rem) {
  .reference-grid,
  .reference-featured-grid {
    grid-template-columns: 1fr;
  }

  .reference-featured-grid article {
    min-height: 0;
  }

  .reference-archive__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reference-pagination {
    grid-template-columns: 1fr;
  }

  .reference-pagination__direction,
  .reference-pagination__direction:last-child {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 42rem) {
  .references-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
  }

  .references-hero__facts div {
    grid-template-columns: 6rem 1fr;
  }

  .references-hero__visual {
    padding-bottom: 0;
  }

  .references-hero__media {
    aspect-ratio: 4 / 3;
  }

  .references-hero__facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 1.5rem);
    margin: -2.4rem auto 0;
  }

  .reference-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .reference-filter a {
    justify-content: center;
    text-align: center;
  }

  .reference-card {
    padding: 1.25rem;
  }

  .reference-card h3 {
    padding-right: 0;
    font-size: 2rem;
  }

  .reference-card footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Placement-test promotion on selected content pages */
.placement-promo {
  position: relative;
  padding-top: clamp(1.25rem, 2.4vw, 2.25rem);
  padding-bottom: clamp(1.25rem, 2.4vw, 2.25rem);
}

.goals-section--before-placement-promo,
.exam-reality--before-placement-promo {
  padding-bottom: 0;
}

.placement-promo__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(13rem, auto);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.14);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 95% 10%, rgba(241, 137, 43, 0.14), transparent 30%),
    linear-gradient(135deg, #f7f9fd 0%, #ffffff 70%);
  box-shadow: 0 1.25rem 3rem rgba(31, 58, 113, 0.09);
}

.placement-promo__badge {
  display: grid;
  place-content: center;
  width: clamp(4.75rem, 7vw, 6rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1f3a71;
  color: #fff;
  text-align: center;
  box-shadow: 0 0.75rem 1.75rem rgba(31, 58, 113, 0.2);
}

.placement-promo__badge strong {
  font-family: "Ucitel Display", "Arial Narrow", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 0.85;
}

.placement-promo__badge span {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placement-promo__copy .eyebrow {
  margin-bottom: 0.55rem;
}

.placement-promo__copy h2 {
  max-width: 43rem;
  margin: 0;
  color: #172f60;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.placement-promo__copy > p:last-child {
  max-width: 47rem;
  margin: 0.8rem 0 0;
  color: #526078;
}

.placement-promo__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.placement-promo__action a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #1f3a71;
  font-weight: 850;
  text-decoration: none;
  border-bottom: 2px solid #f1892b;
  padding: 0.2rem 0 0.35rem;
  transition: color 160ms ease, gap 160ms ease;
}

.placement-promo__action a:hover,
.placement-promo__action a:focus-visible {
  gap: 0.9rem;
  color: #d66f13;
}

.placement-promo__action small {
  color: #68758b;
  font-size: 0.76rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .placement-promo__card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .placement-promo__action {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .placement-promo__card {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    border-radius: 1.15rem;
  }

  .placement-promo__badge {
    width: 4.5rem;
  }

  .placement-promo__action {
    grid-column: auto;
  }
}

/* Native booking prototype */
.booking-hero--native {
  min-height: 39rem;
}

.booking-hero__number--timezone {
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.native-booking {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    linear-gradient(90deg, rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 113, 0.035) 1px, transparent 1px),
    #eef2f8;
  background-size: 4rem 4rem;
}

.native-booking__heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.native-booking__heading h2 {
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.timezone-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(31, 58, 113, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.86rem;
}

.timezone-note span {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 113, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.booking-progress span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  color: #718098;
  font-size: 0.85rem;
  font-weight: 800;
}

.booking-progress span + span {
  border-left: 1px solid rgba(31, 58, 113, 0.1);
}

.booking-progress b {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dfe6f0;
  color: var(--brand-blue);
  font-size: 0.75rem;
}

.booking-progress .is-current {
  background: #fff;
  color: var(--brand-blue);
}

.booking-progress .is-current b {
  background: var(--brand-orange);
}

.booking-progress .is-done b {
  background: var(--brand-blue);
  color: #fff;
}

.booking-stage {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1.5rem 3.5rem rgba(31, 58, 113, 0.09);
}

.lesson-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.lesson-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  min-height: 8.8rem;
  align-content: space-between;
  padding: 1.2rem;
  border: 1px solid rgba(31, 58, 113, 0.16);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lesson-option:has(input:checked) {
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px var(--brand-blue), 0 0.8rem 1.8rem rgba(31, 58, 113, 0.1);
  transform: translateY(-0.1rem);
}

.lesson-option--regional::before {
  content: attr(data-badge);
  position: absolute;
  top: -0.55rem;
  left: 1rem;
  padding: 0.23rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.regional-eligibility {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 58, 113, 0.16);
  border-radius: 0.8rem;
  background: #f8fafc;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.5;
}

.regional-eligibility[hidden] {
  display: none;
}

.regional-eligibility input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--brand-blue);
}

.regional-eligibility strong {
  color: var(--brand-blue);
}

.lesson-option input {
  position: absolute;
  opacity: 0;
}

.lesson-option__body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.lesson-option__body strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.05;
}

.lesson-option__body small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.lesson-option > b {
  color: var(--brand-orange);
  white-space: nowrap;
}

.slot-picker {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.slot-picker__heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
}

.slot-picker__heading h3 {
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.slot-picker__heading p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.slot-picker__heading > span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #e8edf5;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.slot-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.slot-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  border: 1px dashed rgba(31, 58, 113, 0.24);
  border-radius: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.slot-day {
  padding: 0.85rem;
  border: 1px solid rgba(31, 58, 113, 0.12);
  border-radius: 0.85rem;
  background: #f8f9fc;
}

.slot-day h4 {
  min-height: 2.2rem;
  margin: 0 0 0.6rem;
  color: var(--brand-blue);
  font-size: 0.8rem;
}

.slot-day > div {
  display: grid;
  gap: 0.45rem;
}

.slot-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(31, 58, 113, 0.18);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--brand-blue);
  cursor: pointer;
}

.slot-button:hover,
.slot-button.is-selected {
  border-color: var(--brand-orange);
  background: #fff8e9;
}

.slot-button.is-selected {
  box-shadow: inset 0 0 0 1px var(--brand-orange);
}

.slot-button span {
  color: #43825c;
  font-size: 0.68rem;
  font-weight: 800;
}

.booking-selection-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.8rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.9rem;
  background: var(--brand-blue);
  color: #fff;
}

.booking-selection-bar > div {
  display: grid;
  gap: 0.2rem;
}

.booking-selection-bar span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-selection-bar strong {
  display: block;
  max-width: 43rem;
}

.booking-selection-bar [data-selection-summary] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
  white-space: normal;
}

.booking-date-chip {
  display: inline-flex;
  gap: 0.38rem;
  align-items: baseline;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #4569aa;
  color: #fff;
  white-space: nowrap;
}

.booking-date-chip b {
  font-size: inherit;
  font-weight: 850;
}

.button--secondary {
  border: 1px solid rgba(31, 58, 113, 0.25);
  background: transparent;
  color: var(--brand-blue);
}

.booking-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: 2rem;
  align-items: start;
}

.booking-form-section + .booking-form-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.booking-form-section__heading {
  display: flex;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.3rem;
}

.booking-form-section__heading > span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-weight: 900;
}

.booking-form-section__heading h3 {
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.booking-form-section__heading p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.booking-form-grid label {
  display: grid;
  gap: 0.4rem;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-form-grid label > span {
  display: flex;
  justify-content: space-between;
}

.booking-form-grid label b {
  color: #b53d36;
}

.booking-form-grid label small {
  color: var(--muted);
  font-weight: 500;
}

.booking-form-grid input,
.booking-form-grid select,
.booking-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(31, 58, 113, 0.21);
  border-radius: 0.65rem;
  background: #fff;
  color: #263550;
  font: inherit;
  font-weight: 500;
}

.booking-form-grid input,
.booking-form-grid select {
  min-height: 3rem;
  padding: 0 0.85rem;
}

.booking-form-grid textarea {
  padding: 0.8rem;
  resize: vertical;
}

.booking-form-grid__wide {
  grid-column: 1 / -1;
}

.payment-options {
  display: grid;
  gap: 0.7rem;
}

.payment-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(31, 58, 113, 0.16);
  border-radius: 0.8rem;
  cursor: pointer;
}

.payment-options label:has(input:checked) {
  border-color: var(--brand-blue);
  background: #f5f7fb;
}

.payment-options input {
  margin-top: 0.28rem;
}

.payment-options span {
  display: grid;
  gap: 0.2rem;
}

.payment-options small {
  color: var(--muted);
}

.stripe-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border-left: 0.23rem solid #4b9569;
  border-radius: 0.4rem;
  background: #eef8f2;
  color: #365445;
  font-size: 0.82rem;
}

.stripe-trust > span {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border-radius: 50%;
  background: #4b9569;
  color: #fff;
  font-weight: 900;
}

.stripe-trust p {
  margin: 0;
}

.booking-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-live-summary {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: 1.4rem;
  border-radius: 1rem;
  background: var(--brand-blue);
  color: #fff;
}

.booking-live-summary h3 {
  margin: 0.7rem 0 1rem;
  color: #fff;
  font-size: 1.55rem;
}

.booking-live-summary ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.booking-live-summary li,
.booking-live-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.booking-live-summary li span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.booking-live-summary > div {
  margin-top: 1rem;
  font-size: 1.15rem;
}

.booking-live-summary > p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.booking-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.34fr);
  gap: 2rem;
}

.booking-review__main > h2 {
  margin-bottom: 1.5rem;
}

.booking-review-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.booking-review-list > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.booking-review-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-review-list dd {
  margin: 0;
  color: var(--brand-blue);
}

.booking-terms {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(31, 58, 113, 0.17);
  border-radius: 0.8rem;
  background: #f7f8fb;
  cursor: pointer;
}

.booking-terms input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
}

.booking-privacy-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.booking-review__assurance {
  align-self: start;
  padding: 1.4rem;
  border-radius: 1rem;
  background: #fff8e9;
}

.booking-review__assurance > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-blue);
  font-weight: 900;
}

.booking-review__assurance h3 {
  margin-top: 1rem;
  color: var(--brand-blue);
}

.booking-review__assurance p {
  color: var(--muted);
}

.booking-inline-message {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  background: #fff2d8;
  color: #614b1f;
  font-weight: 700;
}

@media (max-width: 68rem) {
  .lesson-picker,
  .slot-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form-layout,
  .booking-review {
    grid-template-columns: 1fr;
  }

  .booking-live-summary {
    position: static;
  }
}

@media (max-width: 48rem) {
  .native-booking__heading,
  .slot-picker__heading {
    display: grid;
  }

  .timezone-note {
    justify-self: start;
  }

  .booking-progress span {
    justify-content: center;
    padding: 0.8rem 0.5rem;
    font-size: 0;
  }

  .booking-progress b {
    font-size: 0.75rem;
  }

  .lesson-picker,
  .slot-groups,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-selection-bar {
    grid-template-columns: 1fr auto;
  }

  .booking-selection-bar > div:first-child {
    grid-column: 1 / -1;
  }

  .booking-selection-bar .button {
    width: auto;
  }

  .booking-form-grid__wide {
    grid-column: auto;
  }

  .booking-form-actions {
    display: grid;
  }

  .booking-review-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/*
 * Verbindliche Hero-Typografie der gesamten Website.
 * Referenz ist die ursprüngliche H1-Regel der Kontaktseite.
 * Der Block steht bewusst am Dateiende und überschreibt ältere Seitenvarianten.
 */
h1.site-hero-title {
  max-width: 44rem;
  margin: 1rem 0 1.4rem;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 5.8rem);
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 0.9;
  letter-spacing: 0.004em;
}

/* Einheitlicher Textrhythmus nach dem Vorbild der Kontaktseite. */
.hero--home .hero__lead,
.lesson-hero__content > p:not(.eyebrow),
.contact-hero__content > p:not(.eyebrow),
.booking-hero__content > p:not(.eyebrow),
.references-hero__grid > div:first-child > p:last-child {
  max-width: 39rem;
  margin: 0;
  color: rgba(252, 252, 252, 0.8);
  font-size: 1.12rem;
  line-height: 1.65;
}

@media (max-width: 42rem) {
  h1.site-hero-title {
    font-size: clamp(3.4rem, 15vw, 4.5rem);
  }
}
