:root {
  --mint: #57e2c9;
  --mint-dark: #159985;
  --mint-soft: #e9fbf7;
  --gold: #c9aa64;
  --ink: #0d1110;
  --anthracite: #28302e;
  --muted: #66736f;
  --line: #dce8e5;
  --offwhite: #f7faf9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(13, 17, 16, 0.08);
  --shadow-strong: 0 28px 70px rgba(13, 17, 16, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(87, 226, 201, 0.52);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 232, 229, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.08;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(13, 17, 16, 0.12);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}

.brand-text span {
  display: block;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 9px;
  color: var(--anthracite);
  text-decoration: none;
  font-size: 13px;
  font-weight: 780;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--mint-dark);
  background: var(--mint-soft);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 16px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(21, 153, 133, 0.24);
  box-shadow: 0 12px 28px rgba(87, 226, 201, 0.24);
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: #6de8d2;
  transform: translateY(-1px);
}

body.nav-open .site-nav,
.site-nav.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

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

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 68px 0;
}

.section.tint {
  background: var(--offwhite);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(87, 226, 201, 0.14), transparent 32%),
    var(--ink);
}

.hero {
  padding: 94px 0 50px;
  background:
    linear-gradient(90deg, rgba(233, 251, 247, 0.92), rgba(255, 255, 255, 0) 48%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 24px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
  word-break: normal;
  text-wrap: balance;
}

.dark h1,
.dark h2,
.dark h3 {
  color: var(--white);
}

h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 880;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 4vw, 56px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 860;
}

h3 {
  font-size: 21px;
  font-weight: 830;
}

p {
  margin: 0;
}

.lead {
  max-width: 780px;
  margin-top: 26px;
  color: var(--anthracite);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.dark .lead,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.dark .eyebrow,
.dark .kicker {
  color: var(--mint);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 16px 30px rgba(87, 226, 201, 0.28);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: #6de8d2;
  box-shadow: 0 20px 36px rgba(87, 226, 201, 0.34);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.dark .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.button.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--mint);
  box-shadow: var(--shadow);
}

.button.gold-button {
  color: var(--ink);
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--mint-dark);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--ink);
}

.no-break {
  white-space: nowrap;
}

.hero-panel,
.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  padding: 24px;
}

.hero-panel::before,
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 10px solid var(--mint);
  pointer-events: none;
}

.hero-panel img,
.visual-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-panel-caption {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-panel-caption strong {
  font-size: 18px;
}

.hero-panel-caption span,
.small-note {
  color: var(--muted);
  font-size: 14px;
}

.trust-section {
  padding: 0 0 34px;
  background: var(--white);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-bar div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--white);
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 820;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.section-head.vertical {
  display: grid;
  align-content: start;
  gap: 14px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 590px;
  color: var(--muted);
}

.hero-grid > *,
.split > *,
.section-head > *,
.grid > *,
.price-grid > *,
.event-grid > *,
.level-timeline > *,
.footer-grid > * {
  min-width: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.card,
.statement-card,
.event-card,
.price-card,
.level-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(13, 17, 16, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.statement-card:hover,
.event-card:hover,
.price-card:hover,
.level-card:hover {
  transform: translateY(-3px);
  border-color: rgba(87, 226, 201, 0.58);
  box-shadow: var(--shadow);
}

.card p,
.statement-card p,
.price-card p,
.event-card p,
.level-card p {
  margin-top: 14px;
  color: var(--muted);
}

.dark .level-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.dark .level-card p {
  color: rgba(255, 255, 255, 0.72);
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint-soft);
  border: 1px solid rgba(87, 226, 201, 0.48);
  font-weight: 860;
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.04fr) minmax(0, 0.96fr);
}

.text-stack {
  display: grid;
  gap: 20px;
}

.text-stack p,
.text-block p {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

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

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--anthracite);
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border-radius: 50%;
}

.dark .list li {
  color: rgba(255, 255, 255, 0.82);
}

.level-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.level-card span,
.level-pill {
  display: inline-flex;
  width: max-content;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.level-card h3 {
  margin-top: 18px;
}

.price-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-card,
.event-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
}

.price-card.featured,
.event-card.featured {
  border-color: rgba(87, 226, 201, 0.74);
  background:
    linear-gradient(180deg, rgba(87, 226, 201, 0.13), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.price {
  color: var(--ink);
  font-size: clamp(32px, 4.6vw, 46px);
  font-weight: 880;
  line-height: 1.02;
}

.price-text {
  max-width: 520px;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.18;
}

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

.meta-list div,
.meta-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 250, 249, 0.75);
}

.meta-list strong,
.meta-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.meta-list span,
.meta-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.event-meta,
.price-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.band-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(87, 226, 201, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(87, 226, 201, 0.16), rgba(201, 170, 100, 0.1)),
    var(--white);
}

.band-cta p {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 82px 0 62px;
  background:
    linear-gradient(180deg, rgba(233, 251, 247, 0.86), rgba(255, 255, 255, 0)),
    var(--white);
}

.page-hero .lead {
  max-width: 820px;
}

.level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.certificate-frame {
  padding: 28px;
  border: 1px solid rgba(201, 170, 100, 0.62);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.certificate-frame img {
  width: 100%;
}

.certificate-preview {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 42px;
  border: 2px solid var(--gold);
  background:
    linear-gradient(90deg, transparent 0 44px, rgba(87, 226, 201, 0.22) 44px 58px, transparent 58px),
    var(--offwhite);
}

.certificate-inner {
  width: 100%;
  text-align: center;
}

.certificate-inner .small {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.certificate-name {
  margin: 34px 0 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(13, 17, 16, 0.18);
  border-bottom: 1px solid rgba(13, 17, 16, 0.18);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
}

.certificate-level {
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.team-stack {
  display: grid;
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.team-card.compact {
  grid-template-columns: 112px minmax(0, 1fr);
}

.team-card img {
  width: 170px;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
}

.team-card.compact img {
  width: 112px;
  height: 132px;
}

.team-card p {
  margin-top: 8px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 830;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-dark);
  font-weight: 900;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--anthracite);
  text-decoration: none;
  background: var(--white);
}

.contact-list a:hover {
  border-color: var(--mint);
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--anthracite);
  font-weight: 760;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

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

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  font-weight: 650;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-hint {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--mint);
  outline: 3px solid rgba(87, 226, 201, 0.18);
}

.note {
  padding: 18px 20px;
  border-left: 5px solid var(--mint);
  background: var(--mint-soft);
  color: var(--anthracite);
}

.site-footer {
  padding: 58px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 0.75fr;
  gap: 30px;
  align-items: start;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
}

.footer-grid h2 {
  font-size: 28px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-mail-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 11px 15px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--mint);
  font-weight: 800;
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 20px;
    background: var(--mint);
    border-color: rgba(21, 153, 133, 0.26);
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: calc(100dvh - 70px);
    max-height: calc(100dvh - 70px);
    display: none;
    align-content: start;
    gap: 0;
    padding: 18px 16px 92px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(13, 17, 16, 0.18);
    opacity: 1;
    pointer-events: none;
    transform: none !important;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .site-nav,
  .site-nav.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: var(--ink);
    background: var(--white);
    font-size: 18px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .site-nav a.is-active {
    color: var(--mint-dark);
    background: var(--mint-soft);
    border: 1px solid rgba(87, 226, 201, 0.24);
    border-radius: 6px;
  }

  .site-nav .nav-cta {
    margin: 18px 0 0;
    padding: 16px 14px;
    justify-content: center;
    border-radius: 6px;
    text-align: center;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-box,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

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

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

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 66px 0;
  }

  .hero,
  .page-hero {
    padding: 58px 0 48px;
  }

  .section-head,
  .band-cta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .grid.five,
  .grid.three,
  .grid.two,
  .event-grid,
  .price-grid,
  .level-timeline {
    grid-template-columns: 1fr;
  }

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

  .hero-panel img,
  .visual-card img {
    min-height: 300px;
  }

  .event-meta,
  .price-meta,
  .list.columns {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 999;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--ink);
    background: var(--mint);
    box-shadow: 0 16px 34px rgba(13, 17, 16, 0.22);
    font-weight: 880;
    text-decoration: none;
  }
}

@media (max-width: 580px) {
  .container,
  .nav-shell {
    width: calc(100% - 44px);
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 10px;
  }

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

  .nav-toggle {
    right: auto;
    left: min(calc(100% - 66px), 320px);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
  }

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

  .hero-actions,
  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .grid.four,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .card,
  .statement-card,
  .event-card,
  .price-card,
  .level-card,
  .form,
  .band-cta {
    padding: 22px;
  }

  .hero-panel {
    padding: 18px;
  }

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

  .team-card img,
  .team-card.compact img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .certificate-preview {
    min-height: 360px;
    padding: 28px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage recreation based on the supplied PSOÖ Akademie reference mockup. */
.template-home {
  --home-max: 1240px;
  --home-mint: #57e2c9;
  --home-black: #030303;
  --home-text: #101110;
  --home-muted: #626965;
  --home-line: #d8ddda;
  color: var(--home-text);
  background: #fff;
  overflow-x: hidden;
}

.template-home .site-header {
  position: sticky;
  top: 0;
  border-bottom: 0;
  background: var(--home-black);
  backdrop-filter: none;
}

.home-nav-shell {
  width: min(var(--home-max), calc(100% - 96px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-brand {
  display: inline-grid;
  gap: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.9;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.home-brand small {
  margin-top: 7px;
  color: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.home-menu-fallback {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--home-mint);
  background: var(--home-mint);
  cursor: pointer;
}

.home-menu-fallback span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: #111;
}

.template-home .site-nav {
  gap: 34px;
}

.template-home .site-nav a {
  min-height: auto;
  padding: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
}

.template-home .site-nav a:hover,
.template-home .site-nav a.is-active {
  color: var(--home-mint);
  background: transparent;
}

.template-home .site-nav .nav-cta {
  min-height: 42px;
  margin-left: 24px;
  padding: 0 24px;
  color: #020303;
  background: var(--home-mint);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.94fr) minmax(0, 1.06fr);
  min-height: 468px;
  border-bottom: 1px solid #e6e8e6;
  background: #fff;
}

.home-hero-copy {
  align-self: center;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 56px clamp(36px, 3vw, 64px) 58px clamp(78px, calc((100vw - var(--home-max)) / 2), 220px);
}

.home-hero h1,
.home-split-photo h2,
.home-benefits h2,
.home-system h2,
.home-levels h2,
.home-tracks h2,
.home-certificate h2,
.home-about h2,
.home-faq h2,
.home-final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 650px;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.08;
}

.home-hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 44px;
}

.home-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.home-button-primary {
  border-color: var(--home-mint);
  background: var(--home-mint);
}

.home-button-dark {
  border-color: #111;
  color: #fff;
  background: #111;
}

.home-button:hover {
  border-color: #111;
  color: #fff;
  background: #111;
}

.home-advice {
  margin-top: 36px;
  color: #1c1f1e;
  font-size: 14px;
  font-weight: 650;
}

.home-advice a {
  color: #0b9e8b;
  font-weight: 800;
}

.home-hero-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 468px;
  object-fit: cover;
  object-position: center center;
}

.home-proof {
  width: min(var(--home-max), calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 42px 0 40px;
  background: #fff;
}

.home-proof article {
  min-height: 122px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--home-line);
}

.home-proof article:last-child {
  border-right: 0;
}

.home-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--home-mint);
  border: 2px solid var(--home-mint);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.home-proof h2,
.home-benefits h3,
.home-system h3,
.home-timeline h3,
.home-track-grid h3,
.home-cert-points h3 {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-proof p,
.home-benefits p,
.home-system p,
.home-levels p,
.home-track-grid p,
.home-track-grid li,
.home-certificate p,
.home-about p,
.home-faq p,
.home-final-cta p {
  color: var(--home-muted);
}

.home-proof p {
  max-width: 160px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.home-split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #f7f8f7;
}

.home-split-photo figure {
  margin: 0;
  justify-self: end;
  width: min(600px, 100%);
}

.home-split-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.home-split-photo div {
  max-width: 520px;
  padding: 56px 70px;
}

.home-split-photo h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
}

.home-split-photo p {
  margin-top: 32px;
  max-width: 500px;
  color: #2d3230;
  font-size: 15px;
  line-height: 1.75;
}

.home-benefits,
.home-system,
.home-levels,
.home-tracks,
.home-faq {
  width: min(var(--home-max), calc(100% - 96px));
  margin: 0 auto;
}

.home-benefits {
  padding: 40px 0 36px;
  text-align: center;
}

.home-benefits h2,
.home-system h2,
.home-tracks h2,
.home-faq h2 {
  font-size: clamp(30px, 3vw, 42px);
  text-align: center;
}

.home-card-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.home-card-row article {
  min-height: 178px;
  padding: 25px 20px;
  border: 1px solid var(--home-line);
  background: #fff;
  text-align: center;
}

.home-card-row .home-icon {
  margin-inline: auto;
}

.home-card-row h3 {
  text-transform: none;
  font-size: 15px;
}

.home-card-row p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.home-system {
  padding: 8px 0 34px;
}

.home-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.home-system-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 130px;
  padding: 22px 20px;
  border: 1px solid var(--home-line);
  background: #fff;
}

.home-system-grid article > span {
  color: var(--home-mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 1;
}

.home-system-grid h3 {
  text-transform: none;
}

.home-system-grid p {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.48;
}

.home-levels {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 8px 0 46px;
}

.home-levels h2 {
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.05;
}

.home-levels-copy p {
  margin: 22px 0 24px;
  font-size: 15px;
  line-height: 1.62;
}

.home-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding-top: 44px;
}

.home-timeline::before {
  content: "";
  position: absolute;
  top: 61px;
  right: 0;
  left: 0;
  height: 2px;
  background: #111;
}

.home-timeline article {
  position: relative;
  text-align: center;
}

.home-timeline span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--home-mint);
  border-radius: 50%;
  color: #088b7c;
  background: #fff;
  font-weight: 800;
}

.home-timeline h3 {
  min-height: 34px;
  font-size: 13px;
  text-transform: none;
}

.home-timeline p {
  max-width: 110px;
  margin: 8px auto 0;
  color: #111;
  font-size: 12px;
  line-height: 1.35;
}

.home-tracks {
  padding: 18px 0 42px;
}

.home-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.home-track-grid article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 214px;
  padding: 28px 34px;
  border: 1px solid var(--home-line);
  border-top: 7px solid var(--home-mint);
  background: #fff;
}

.home-track-grid article:nth-child(2) {
  border-top-color: #111;
}

.home-track-grid .home-icon {
  width: 54px;
  height: 54px;
  margin-top: 6px;
  font-size: 18px;
}

.home-track-grid h3 {
  font-size: 24px;
  text-transform: none;
}

.home-track-sub {
  margin-top: 2px;
  color: #111 !important;
  font-size: 13px;
  font-weight: 700;
}

.home-track-grid ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 12px;
  padding: 0;
  list-style: none;
}

.home-track-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.home-track-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--home-mint);
  border-radius: 50%;
}

.home-track-grid a {
  color: #0b9e8b;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.home-certificate {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  padding: 52px max(78px, calc((100vw - var(--home-max)) / 2));
  color: #fff;
  background: #020202;
}

.home-certificate figure {
  margin: 0;
}

.home-certificate img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.home-certificate h2 {
  color: #fff;
  font-size: clamp(34px, 3vw, 48px);
}

.home-certificate > div > p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
}

.home-cert-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.home-cert-points article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
}

.home-cert-points .home-icon {
  width: 38px;
  height: 38px;
  margin: 0;
  font-size: 11px;
}

.home-cert-points h3 {
  color: #fff;
  font-size: 13px;
}

.home-cert-points p {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.45;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 52px;
  align-items: center;
  width: min(var(--home-max), calc(100% - 96px));
  margin: 0 auto;
  padding: 44px 0 22px;
}

.home-about h2 {
  font-size: clamp(34px, 3vw, 46px);
}

.home-about p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.66;
}

.home-about .home-button {
  margin-top: 24px;
}

.home-about figure {
  margin: 0;
}

.home-about img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.home-faq {
  padding: 4px 0 38px;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 26px;
}

.home-faq .accordion {
  gap: 8px;
}

.home-faq .faq-item {
  border-radius: 0;
}

.home-faq .faq-question {
  min-height: 44px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 650;
}

.home-faq .faq-answer p {
  padding: 0 18px 16px;
  font-size: 13px;
}

.home-final-cta {
  padding: 22px 24px 24px;
  text-align: center;
  background: var(--home-mint);
}

.home-final-cta h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.home-final-cta p {
  max-width: 760px;
  margin: 4px auto 14px;
  color: #0d1110;
  font-size: 15px;
  font-weight: 650;
}

.home-footer {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding: 14px max(78px, calc((100vw - var(--home-max)) / 2));
  color: #fff;
  background: #020202;
}

.home-footer nav {
  display: flex;
  justify-content: center;
  gap: 42px;
}

.home-footer a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home-social {
  display: flex;
  gap: 18px;
}

@media (max-width: 1040px) {
  .template-home .site-header {
    background: #020202;
  }

  .home-nav-shell {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px);
  }

  .template-home .nav-toggle {
    display: none !important;
    position: static;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-color: var(--home-mint);
    background: var(--home-mint);
    opacity: 1 !important;
    visibility: visible !important;
  }

  .home-menu-fallback {
    display: block;
    position: fixed;
    top: 12px;
    left: min(326px, calc(100vw - 64px));
    z-index: 2000;
  }

  .template-home .site-nav {
    top: 68px;
    gap: 0;
    background: #020202;
  }

  .template-home .site-nav a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .template-home .site-nav .nav-cta {
    color: #111;
  }

  .home-hero,
  .home-split-photo,
  .home-levels,
  .home-certificate,
  .home-about,
  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .home-benefits,
  .home-system,
  .home-levels,
  .home-tracks,
  .home-about,
  .home-faq {
    width: calc(100% - 44px);
  }

  .home-hero-copy {
    margin: 0 auto;
  }

  .home-proof,
  .home-card-row,
  .home-system-grid,
  .home-track-grid,
  .home-cert-points,
  .home-faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-proof {
    width: calc(100% - 44px);
  }

  .home-proof article:nth-child(2n) {
    border-right: 0;
  }

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

  .home-timeline::before {
    display: none;
  }

  .home-certificate {
    padding-inline: 22px;
  }

  .home-footer {
    justify-items: start;
    padding-inline: 22px;
  }

  .home-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .home-brand {
    font-size: 24px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-copy {
    padding: 52px 0 36px;
  }

  .home-hero h1 {
    font-size: 32px;
  }

  .home-hero-copy {
    width: calc(100% - 44px);
    max-width: none;
  }

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

  .home-hero-actions,
  .home-proof,
  .home-card-row,
  .home-system-grid,
  .home-track-grid,
  .home-cert-points,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-actions {
    display: grid;
    gap: 14px;
  }

  .home-hero-image img {
    min-height: 320px;
  }

  .home-proof article {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-split-photo div {
    padding: 42px 22px;
  }

  .home-system-grid article,
  .home-track-grid article,
  .home-cert-points article {
    grid-template-columns: 1fr;
  }

  .home-track-grid article {
    padding: 24px 22px;
  }

  .home-about {
    width: calc(100% - 44px);
  }

  .home-final-cta {
    padding-bottom: 90px;
  }
}

/* =========================================================
   FINAL MERGE OVERRIDES – V2 design + V1 content logic
   ========================================================= */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumbs a { color: var(--mint-dark); text-decoration: none; }
.breadcrumb-sep { color: #a7b3af; }

.home-eyebrow {
  margin: 0 0 16px;
  color: #0b9584;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-eyebrow-light { color: var(--home-mint); }
.home-hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #363c39;
  font-size: 16px;
  line-height: 1.7;
}
.home-button-outline { background: #fff; }
.home-certificate-link { margin-top: 26px; }
.home-faq-more { display: flex; justify-content: center; margin-top: 24px; }

.template-home .home-timeline.home-timeline-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.template-home .home-timeline.home-timeline-four h3 { min-height: 0; }
.template-home .home-timeline.home-timeline-four p { max-width: 145px; }
.template-home .home-timeline.home-timeline-four span {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  font-size: 12px;
}
.template-home .home-timeline.home-timeline-four::before { top: 65px; }

.media-frame,
.calendar-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--offwhite);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; min-height: 360px; height: 100%; object-fit: cover; }
.calendar-figure { justify-self: center; max-width: 430px; }
.calendar-figure img { width: 100%; height: auto; }
.schedule-intro { align-items: start; }

.level-facts {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--mint);
  background: var(--mint-soft);
  color: var(--anthracite);
  line-height: 1.55;
}
.prereq { padding-top: 4px; }
.level-card .button { margin-top: 20px; }

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.assessment-item {
  min-height: 220px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.assessment-item > span {
  display: block;
  margin-bottom: 22px;
  color: var(--mint-dark);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}
.assessment-item h3 { font-size: 18px; }
.assessment-item p { margin-top: 12px; color: var(--muted); font-size: 14px; }
.pass-note {
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(87,226,201,.6);
  border-radius: var(--radius);
  background: var(--mint-soft);
  font-size: 16px;
}

.dark-band { background: rgba(255,255,255,.07); border-color: rgba(87,226,201,.4); }
.dark-band h2 { color: #fff; }
.dark-band p { color: rgba(255,255,255,.74); }

.legal-content { max-width: 850px; }
.legal-content h2 { margin-top: 38px; font-size: 24px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--anthracite); }
.legal-content a { color: var(--mint-dark); }

.label-optional { color: var(--muted); font-weight: 500; }
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.form-status {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.55;
}
.form-status.success { border: 1px solid #72c9a8; background: #edf9f4; color: #174d3c; }
.form-status.error { border: 1px solid #dd9a9a; background: #fff3f3; color: #762b2b; }
.form-status a { font-weight: 800; }

.event-card .price { margin: 0; }
.event-card .kicker { margin-bottom: 8px; }
.event-card .button { margin-top: auto; }

@media (max-width: 1040px) {
  .assessment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assessment-item:last-child { grid-column: span 2; min-height: auto; }
}

@media (max-width: 760px) {
  .home-hero-copy { width: calc(100% - 40px); margin-left: 20px; }
  .home-hero-actions { gap: 12px; }
  .home-hero-lead { font-size: 15px; }
  .template-home .home-timeline.home-timeline-four {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }
  .template-home .home-timeline.home-timeline-four::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .template-home .home-timeline.home-timeline-four article {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 8px 0 18px;
    text-align: left;
  }
  .template-home .home-timeline.home-timeline-four span {
    grid-row: 1 / span 2;
    margin: 0;
  }
  .template-home .home-timeline.home-timeline-four h3,
  .template-home .home-timeline.home-timeline-four p { max-width: none; margin: 0; text-align: left; }
  .template-home .home-timeline.home-timeline-four p { margin-top: 4px; }
  .assessment-grid { grid-template-columns: 1fr; }
  .assessment-item, .assessment-item:last-child { grid-column: auto; min-height: auto; }
  .calendar-figure { max-width: 100%; }
  .event-meta { grid-template-columns: 1fr; }
  .breadcrumbs { margin-bottom: 14px; }
}
.form button[disabled] { opacity: .65; cursor: wait; transform: none !important; }


/* =========================================================
   VIDEO READY UPDATE
   ========================================================= */
.video-shell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9fbf7;
  box-shadow: var(--shadow);
}
.video-cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #e9fbf7;
}
.video-shell-hero .video-cover { min-height: 468px; }
.video-shell-short .video-cover { min-height: 280px; }
.video-shell-medium .video-cover { min-height: 340px; }
.video-shell-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(13,17,16,.64);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.video-shell-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(13,17,16,.16);
  pointer-events: none;
}
.video-shell-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 25px solid #0d1110;
}
.video-shell.no-play .video-shell-play { display: none; }
.video-caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.home-video-highlights {
  width: min(var(--home-max), calc(100% - 96px));
  margin: 0 auto;
  padding: 8px 0 42px;
}
.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.home-video-card {
  padding: 0;
  border: 1px solid var(--home-line);
  background: #fff;
}
.home-video-card .video-copy { padding: 18px 18px 20px; }
.home-video-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 850;
  text-transform: none;
}
.home-video-card p {
  margin: 8px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
}
.video-tip-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.video-tip-list li { margin-bottom: 8px; }
@media (max-width: 1040px) {
  .home-video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .home-video-highlights { width: calc(100% - 44px); }
}
@media (max-width: 620px) {
  .home-video-grid { grid-template-columns: 1fr; }
  .video-shell-hero .video-cover { min-height: 320px; }
  .video-shell-note { left: 14px; right: 14px; bottom: 14px; }
}

/* =========================================================
   FINAL RESPONSIVE VIDEO INTEGRATION
   ========================================================= */
.video-shell {
  position: relative;
  overflow: hidden;
  background: #eef8f5;
}
.video-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-loop .video-cover { pointer-events: none; }
.home-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-video-card .video-shell { aspect-ratio: 1 / 1; }
.home-split-photo .video-shell { aspect-ratio: 16 / 9; }
.home-about .video-shell { aspect-ratio: 16 / 10; }
.media-frame .video-shell { aspect-ratio: 1 / 1; box-shadow: none; border: 0; }
.video-shell-hero { min-height: 468px; }
.video-shell-hero .video-cover { min-height: 468px; }
.video-manual .video-cover { background: #111; }

.certificate-image-wrap {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(201, 170, 100, .56);
  background: #fff;
  box-shadow: 0 22px 52px rgba(0,0,0,.18);
}
.certificate-image-wrap a,
.certificate-image-link { display: block; }
.certificate-image-wrap img,
.home-certificate .certificate-image-wrap img,
.certificate-image-link img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}
.certificate-image-link { text-decoration: none; }
.certificate-image-link:focus-visible { outline-offset: 6px; }

@media (max-width: 1040px) {
  .home-video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .video-shell-hero {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .video-shell-hero .video-cover {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .home-split-photo .video-shell,
  .home-video-card .video-shell,
  .home-about .video-shell,
  .media-frame .video-shell {
    aspect-ratio: 4 / 5;
  }
  .home-video-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .video-loop .video-cover { object-fit: cover; }
}


/* =========================================================
   CONVERSION UPDATE + PORTRAIT MOBILE FIX
   ========================================================= */
.team-card img,
.team-card.compact img {
  object-position: center 14%;
}
.home-section-intro {
  max-width: 820px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.72;
}
.home-mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}
.home-mini-points article {
  padding: 18px 18px 16px;
  border: 1px solid var(--home-line);
  background: #fff;
}
.home-mini-points h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.home-mini-points p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--home-muted);
}
.home-center-action {
  margin-top: 24px;
  text-align: center;
}
.home-dual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.home-faq-grid-single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}
.home-faq-grid-single .accordion { width: 100%; }
@media (max-width: 1040px) {
  .home-mini-points { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .team-card img,
  .team-card.compact img {
    object-position: center top;
  }
}
@media (max-width: 620px) {
  .home-section-intro {
    font-size: 14px;
    line-height: 1.65;
  }
  .home-dual-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   AUSBILDUNGSABLAUF – LEAN CONVERSION INTEGRATION
   ========================================================= */
.home-flow-compact {
  margin: 28px 0 22px;
  padding: 18px 0 2px;
  border-top: 1px solid var(--home-line);
}
.home-flow-label {
  margin: 0 0 12px !important;
  color: #111 !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home-flow-steps span {
  position: relative;
  padding: 8px 12px;
  border: 1px solid var(--home-line);
  background: #fff;
  color: #202522;
  font-size: 12px;
  font-weight: 750;
}
.weekend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.weekend-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--mint);
  background: #fff;
}
.weekend-card h3 { margin-top: 8px; }
.movement-analysis-callout {
  display: grid;
  grid-template-columns: minmax(240px,.8fr) minmax(0,1.2fr);
  gap: 30px;
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}
.movement-analysis-callout h3 { margin-top: 6px; }
.movement-analysis-callout > p { margin: 0; color: var(--muted); line-height: 1.75; }
.assessment-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--mint);
  background: rgba(47, 211, 190, .08);
  color: var(--muted);
}
.schedule-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}
.schedule-summary article {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--mint);
  background: #fff;
}
.schedule-summary article:nth-child(2) { border-top-color: #111; }
.schedule-summary span,
.schedule-summary strong,
.schedule-summary small { display: block; }
.schedule-summary span { font-size: 21px; font-weight: 900; }
.schedule-summary strong { margin-top: 6px; font-size: 16px; }
.schedule-summary small { margin-top: 3px; color: var(--muted); }
.schedule-summary > p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.event-details {
  margin: 18px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event-details summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 850;
}
.event-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  padding: 2px 0 14px;
}
.event-day-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.event-detail-note {
  margin: 0 0 14px !important;
  color: var(--muted);
  font-size: 12px !important;
}
@media (max-width: 760px) {
  .weekend-grid,
  .movement-analysis-callout,
  .schedule-summary,
  .event-day-grid { grid-template-columns: 1fr; }
  .schedule-summary > p { grid-column: auto; }
  .home-flow-steps { display: grid; grid-template-columns: 1fr; }
  .home-flow-steps span { padding: 10px 12px; }
}


/* =========================================================
   SOUND CONTROLS – HERO + ACADEMY INSIGHT
   ========================================================= */
.video-sound-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,18,16,.68);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.video-sound-toggle:hover {
  background: rgba(8,18,16,.82);
  border-color: #fff;
  transform: translateY(-1px);
}
.video-sound-toggle:focus-visible {
  outline: 3px solid var(--home-mint);
  outline-offset: 3px;
}
.video-sound-toggle[aria-pressed="true"] {
  color: #071411;
  background: rgba(87,226,201,.94);
  border-color: rgba(87,226,201,1);
}
.video-sound-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
}
@media (max-width: 620px) {
  .video-sound-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 11px;
  }
}


.trainer-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.trainer-video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.trainer-video-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.trainer-video-card p {
  margin: 0;
}

.video-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .trainer-video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trainer-video-card {
    border-radius: 22px;
    padding: 14px;
  }
}


.credential-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.credential-block .kicker {
  margin-bottom: 10px;
}

.credential-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.credential-list li {
  padding-left: 2px;
}

.credential-preview {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  text-decoration: none;
  color: var(--anthracite);
  max-width: 260px;
}

.credential-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.credential-preview span {
  font-size: 14px;
  color: var(--mint-dark);
  font-weight: 760;
}

@media (max-width: 760px) {
  .credential-preview {
    max-width: 100%;
  }
}


/* =========================================================
   DESKTOP POLISH – WHY THIS TRAINING SECTION
   Mobile <= 760px deliberately unchanged.
   ========================================================= */
@media (min-width: 761px) {
  .home-split-photo {
    width: min(var(--home-max), calc(100% - 64px));
    margin: 58px auto;
    grid-template-columns: minmax(360px, .95fr) minmax(430px, 1.05fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    background: #f7f8f7;
  }

  .home-split-photo > figure,
  .home-split-photo > figure.video-shell {
    width: 100%;
    max-width: none;
    min-height: 590px;
    height: 100%;
    margin: 0;
    justify-self: stretch;
    align-self: stretch;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
  }

  .home-split-photo > figure .video-cover,
  .home-split-photo > figure > img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    object-position: center center;
  }

  /* The older rule targeted every nested div. Reset descendants and only pad the content column. */
  .home-split-photo > div {
    width: auto;
    max-width: none;
    padding: 54px 48px;
    align-self: center;
  }

  .home-split-photo > div div {
    max-width: none;
    padding: 0;
  }

  .home-split-photo > div > p:not(.home-eyebrow):not(.home-flow-label) {
    max-width: 640px;
    margin-top: 22px;
  }

  .home-split-photo h2 {
    max-width: 650px;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.07;
  }

  .home-mini-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .home-mini-points article {
    min-width: 0;
    padding: 17px 16px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.9);
  }

  .home-mini-points h3 {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .home-mini-points p {
    margin-top: 8px !important;
    font-size: 12px;
    line-height: 1.5;
  }

  .home-flow-compact {
    margin: 30px 0 22px;
    padding: 22px 0 0 !important;
  }

  .home-flow-label {
    margin-bottom: 14px !important;
  }

  .home-flow-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .home-flow-steps span {
    display: grid;
    align-items: center;
    min-height: 64px;
    padding: 10px 9px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.35;
    font-size: 11px;
    background: #fff;
  }

  .home-split-photo .home-button {
    margin-top: 4px;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .home-split-photo {
    width: calc(100% - 44px);
    grid-template-columns: minmax(300px, .9fr) minmax(400px, 1.1fr);
  }

  .home-split-photo > div {
    padding: 40px 34px;
  }

  .home-split-photo > figure,
  .home-split-photo > figure.video-shell,
  .home-split-photo > figure .video-cover,
  .home-split-photo > figure > img {
    min-height: 560px;
  }

  .home-mini-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-mini-points article {
    display: grid;
    grid-template-columns: 126px 1fr;
    gap: 10px;
    align-items: start;
  }

  .home-mini-points p {
    margin: 0 !important;
  }

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

.portrait-alisea {
  object-position: center 3% !important;
}

.portrait-sabrina {
  object-position: center 25% !important;
}

/* =========================================================
   V33 – LOCATION CLARITY + BOOKING CONVERSION
   ========================================================= */
.academy-location-bar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(21,153,133,.18);
  background: #e9fbf7;
  color: #173a34;
}
.academy-location-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}
.template-home .academy-location-inner { width: min(var(--home-max), calc(100% - 44px)); }
.location-pin { color: var(--mint-dark); font-size: 17px; font-weight: 900; }
.location-separator { color: #7f9d96; }

.location-inline {
  margin: 18px 0 0;
  color: #4f5e5a;
  font-size: 13.5px;
  line-height: 1.5;
}
.location-inline strong { color: #173a34; font-weight: 800; }

.home-location-card {
  max-width: 610px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--home-mint);
  background: #effbf8;
  color: #111;
}
.home-location-icon { width: 34px; height: 34px; display: grid; place-items: center; background: var(--home-mint); border-radius: 50%; font-weight: 900; }
.home-location-card strong, .home-location-card span { display: block; }
.home-location-card strong { font-size: 14px; }
.home-location-card span { margin-top: 2px; color: #4f5e5a; font-size: 12.5px; line-height: 1.4; }

.location-callout {
  max-width: 760px;
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(21,153,133,.24);
  border-left: 5px solid var(--mint);
  border-radius: 6px;
  background: var(--mint-soft);
  color: var(--anthracite);
}
.location-callout strong { color: var(--ink); }
.location-callout span { font-size: 14px; }

.home-track-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 6px; }
.home-track-actions .home-track-book { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border: 1px solid #111; color: #111; background: var(--home-mint); }
.home-track-actions .home-track-book:hover { color: #fff; background: #111; }
.event-location { width: max-content; max-width: 100%; padding: 7px 11px; border-radius: 999px; background: var(--mint-soft); color: var(--mint-dark) !important; font-size: 13px; font-weight: 800; }

.home-booking-path {
  width: min(var(--home-max), calc(100% - 96px));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid var(--home-line);
}
.home-booking-copy { max-width: 760px; }
.home-booking-copy h2 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 3.8vw, 52px); font-weight: 500; }
.home-booking-copy > p:last-child { color: var(--home-muted); max-width: 720px; }
.home-booking-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.home-booking-steps article { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 16px; padding: 24px; border: 1px solid var(--home-line); background: #fff; }
.home-booking-steps article > span { width: 44px; height: 44px; display: grid; place-items: center; background: var(--home-mint); font-size: 12px; font-weight: 900; }
.home-booking-steps h3 { font-size: 18px; text-transform: none; }
.home-booking-steps p { margin-top: 7px; color: var(--home-muted); font-size: 14px; line-height: 1.5; }
.home-booking-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.home-final-actions { display: grid; justify-items: center; gap: 13px; }
.home-final-location { color: #111; font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.home-footer-location { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.45; }

.contact-box-conversion { grid-template-columns: .78fr 1.22fr; align-items: start; gap: 42px; }
.booking-sidebar { position: sticky; top: 138px; }
.booking-sidebar h2 { font-size: clamp(30px,3vw,42px); }
.booking-step-list { display: grid; gap: 12px; margin-top: 28px; }
.booking-step-list article { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.booking-step-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink); font-size: 12px; font-weight: 900; }
.booking-step-list h3 { font-size: 18px; }
.booking-step-list p { margin-top: 5px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.booking-reassurance { margin-top: 24px; padding: 16px 18px; border-left: 4px solid var(--mint); background: var(--mint-soft); }
.booking-reassurance p { margin-top: 4px; color: var(--anthracite); font-size: 14px; }
.compact-contact-list { margin-top: 18px; }
.compact-contact-list a { padding: 11px 13px; font-size: 14px; }
.booking-form-column { min-width: 0; }
.booking-selection { display: grid; gap: 3px; margin-bottom: 12px; padding: 17px 20px; border: 1px solid rgba(21,153,133,.34); border-radius: var(--radius); background: var(--mint-soft); }
.booking-selection-label { color: var(--mint-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.booking-selection strong { color: var(--ink); font-size: 18px; }
.booking-selection > span:last-child { color: var(--muted); font-size: 13px; }
.booking-form { padding: 28px; }
.form-row.two-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.form-trust-row { display: flex; flex-wrap: wrap; gap: 7px 16px; padding-top: 3px; color: #35645c; font-size: 12px; font-weight: 760; }
.booking-submit { width: 100%; min-height: 54px; }
.booking-process-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }

@media (max-width: 1040px) {
  .home-booking-path { width: calc(100% - 44px); }
  .home-booking-steps { grid-template-columns: 1fr; }
  .contact-box-conversion { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 760px) {
  .academy-location-inner { width: calc(100% - 24px); min-height: 46px; flex-wrap: wrap; gap: 2px 6px; padding: 7px 0; font-size: 11.5px; }
  .academy-location-inner .location-separator { display: none; }
  .academy-location-inner > span:last-child { flex-basis: 100%; }
  .location-inline {
  margin: 18px 0 0;
  color: #4f5e5a;
  font-size: 13.5px;
  line-height: 1.5;
}
.location-inline strong { color: #173a34; font-weight: 800; }

.home-location-card { margin-top: 18px; }
  .home-booking-path { padding: 50px 0; }
  .home-booking-steps article { grid-template-columns: 42px minmax(0,1fr); padding: 20px 18px; }
  .home-booking-actions { display: grid; }
  .form-row.two-fields { grid-template-columns: 1fr; }
  .booking-form { padding: 22px 18px; }
  .booking-selection { padding: 14px 16px; }
  .booking-process-grid { grid-template-columns: 1fr; }
  .location-callout { margin-top: 18px; }
}
@media (max-width: 580px) {
  .mobile-sticky-cta { font-size: 13px; }
}
