    /* ── Variables ─────────────────────────────────────────────── */
    :root {
      --night:    #060a14;
      --deep:     #0b1120;
      --card:     #0f1929;
      --border:   rgba(100,160,255,.13);
      --star:     #a8d0ff;
      --accent:   #f0c96a;
      --accent-bright: #8cc2ff;
      --gold:     #f0c96a;
      --text:     #ccd9f0;
      --muted:    #a8bbdc;
      --radius:   12px;
      --ff-serif: 'Cormorant Garamond', Georgia, serif;
      --ff-mono:  'Space Mono', monospace;
    }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--night);
  color: var(--text);
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.22vw, 22px);
  font-weight: 500;
  line-height: 1.62;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(101,173,255,.85);
  outline-offset: 3px;
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--accent);
  color: var(--night);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid rgba(101,173,255,.85);
  outline-offset: 3px;
}

/* ── Star canvas ───────────────────────────────────────────── */
#stars-bg {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: .7;
}

/* ── Layout helpers ────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

section { padding: 4rem 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1.5rem 0 .5rem;
}
p { margin-bottom: 1rem; color: var(--text); }
section > .wrap > p,
section > .wrap > ul,
.legal-note {
  max-width: 72ch;
}
p a,
li a,
.checkbox-row a {
  text-decoration: underline;
  text-underline-offset: .18em;
}
ul { list-style: none; padding: 0; }
ul li { padding-left: 1.4rem; position: relative; margin-bottom: .5rem; }
ul li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); font-size: .65rem; top: .35em; }

/* ── NAV ───────────────────────────────────────────────────── */
body > nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,10,20,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: .75rem 2rem;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--accent);
  letter-spacing: .08em;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 1.1rem; list-style: none;
  flex-wrap: wrap; justify-content: flex-end;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--star); text-decoration: none; }

/* mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: rgba(101,173,255,.12);
  border: 1px solid rgba(101,173,255,.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 24px rgba(78,158,255,.14);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle:hover {
  border-color: var(--accent-bright);
  background: rgba(101,173,255,.18);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,10,20,.97);
    flex-direction: column; gap: 0; padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; min-height: 44px; padding: .7rem 0; font-size: .8rem; }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero-section {
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  border: none;
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero-copy { max-width: 620px; }
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-eyebrow::before { content: ""; display: block; width: 32px; height: 1px; background: var(--accent); }
.hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  color: var(--text);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .2s;
}
.btn-primary {
  background: #1853a3;
  color: #fff;
  box-shadow: 0 0 28px rgba(78,158,255,.3);
}
.btn-primary:hover { background: #2266c2; text-decoration: none; box-shadow: 0 0 40px rgba(78,158,255,.5); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--accent);
}
.btn-ghost:hover { border-color: var(--accent); text-decoration: none; }

/* ── Decision strip ───────────────────────────────────────── */
.decision-strip {
  padding: 1rem 0;
  background: rgba(15,25,41,.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.decision-strip + section { border-top: none; }
.decision-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: center;
}
.decision-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .65rem;
  align-items: center;
}
.decision-item span:not(.decision-icon),
.decision-item strong {
  grid-column: 2;
}
.decision-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(101,173,255,.12);
  border: 1px solid rgba(101,173,255,.28);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: .66rem;
  letter-spacing: .04em;
}
.decision-strip span:not(.decision-icon) {
  display: block;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: .15rem;
}
.decision-strip strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}
.decision-cta {
  justify-self: end;
  white-space: nowrap;
}

/* ── FEATURE CARDS ─────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(100,160,255,.35); transform: translateY(-2px); }
.card-icon {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: .16rem .5rem;
  border: 1px solid rgba(101,173,255,.25);
  border-radius: 999px;
  color: var(--accent-bright);
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.card-title { font-family: var(--ff-mono); font-size: .8rem; letter-spacing: .07em; color: var(--accent); margin-bottom: .5rem; text-transform: uppercase; }
.card p { font-size: 1.08rem; line-height: 1.62; color: var(--muted); margin: 0; }

/* ── HIGHLIGHT BOXES ───────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(78,158,255,.08), rgba(240,201,106,.05));
  border: 1px solid rgba(78,158,255,.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.highlight-box h3 { margin-top: 0; }
.highlight-box p { margin: 0; color: var(--text); }
.highlight-box p + p { margin-top: .85rem; }

/* ── QUOTE / BLOCKQUOTE ────────────────────────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.quote-card {
  background: var(--card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}
.quote-card p { font-style: italic; color: var(--text); margin-bottom: .5rem; font-size: 1.2rem; line-height: 1.55; }
.quote-source { font-family: var(--ff-mono); font-size: .72rem; color: var(--muted); letter-spacing: .05em; }

/* ── DATA TABLE ────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
}
.data-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.data-table th, .data-table td {
  text-align: left; padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.08rem;
  line-height: 1.62;
}
.data-table th { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.data-table tr:last-child td { border-bottom: none; }

/* ── PRICE SECTION ─────────────────────────────────────────── */
.price-callout {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.price-range {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-label { font-family: var(--ff-mono); font-size: .75rem; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; margin-top: .5rem; }

/* ── REFS LIST ─────────────────────────────────────────────── */
.ref-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.ref-list a {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; font-size: 1.12rem;
  transition: border-color .2s;
}
.ref-list a:hover { border-color: var(--accent); text-decoration: none; }
.ref-list a::before { content: "↗"; color: var(--accent); flex-shrink: 0; font-family: var(--ff-mono); }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
input, textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  padding: .85rem 1.1rem;
  width: 100%;
  transition: border-color .2s;
  outline: 2px solid transparent;
}
input:focus, textarea:focus { border-color: var(--accent-bright); }
textarea { min-height: 120px; resize: vertical; }
.checkbox-row { display: flex; gap: .75rem; align-items: flex-start; grid-column: 1/-1; }
.checkbox-row input[type=checkbox] { width: auto; margin-top: .3rem; flex-shrink: 0; }
.checkbox-row label { font-size: 1.08rem; letter-spacing: 0; text-transform: none; color: var(--muted); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--star); }
.footer-brand { margin-bottom: .5rem; }

/* ── Utilities ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mt-small { margin-top: .5rem; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 2.5rem; }
.mt-section { margin-top: 3rem; }
.mb-medium { margin-bottom: 2rem; }
.mt-form { margin-top: 1.5rem; }
.legal-note {
  font-size: 1.12rem;
  color: var(--muted);
}
.pill-row { margin-top: .5rem; }
.media-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: -.5rem;
  max-width: none;
}

/* ── Divider ───────────────────────────────────────────────── */
.divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.divider span { font-family: var(--ff-mono); font-size: .7rem; color: var(--accent); letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }

/* ── Fade-in animation ─────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Pill badges ───────────────────────────────────────────── */
.pill {
  display: inline-block;
  background-color: #1d1d1c;
  border: 1px solid rgba(240,201,106,.45);
  color: var(--accent);
  border-radius: 99px;
  padding: .2rem .75rem;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: .2rem .1rem;
}
.pill.gold { background-color: #1d1d1c; border-color: rgba(240,201,106,.45); color: var(--gold); }

/* ── Einstein Quote ────────────────────────────────────────── */
.einstein {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}
.einstein cite { display: block; font-size: .8rem; font-style: normal; font-family: var(--ff-mono); color: var(--muted); margin-top: .4rem; }

/* ── Scroll-to-top ─────────────────────────────────────────── */
#top-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  background: var(--card); border: 1px solid var(--border);
  color: var(--star); width: 42px; height: 42px;
  border-radius: 50%; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .3s;
  font-family: var(--ff-mono);
}
#top-btn.show { opacity: 1; }

/* ── Sticky Mobile-CTA ─────────────────────────────────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: none;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(6,10,20,.96) 35%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-cta-bar.show { opacity: 1; }
.mobile-cta-bar a {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  min-height: 52px;
  background: #1853a3;
  color: #fff;
  font-family: var(--ff-mono);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 28px rgba(78,158,255,.45);
  text-decoration: none;
  transition: background .2s;
}
.mobile-cta-bar a:hover { background: #2266c2; text-decoration: none; }
@media (max-width: 900px) {
  .mobile-cta-bar { display: block; }
  #top-btn { bottom: 5.5rem; }
}

/* ── Media / Bilder ────────────────────────────────────────── */
figure { margin: 0; }
figcaption {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .6rem;
  text-align: center;
}
.media-figure {
  margin: 2rem 0;
}
.media-figure-narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.media-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(78,158,255,.08);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 720px) {
  .media-grid { grid-template-columns: 1fr; }
}
.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.media-grid figure { display: flex; flex-direction: column; gap: .5rem; }
.media-grid figure img { aspect-ratio: 4 / 3; }
.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  justify-self: end;
}
.hero-media img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(78,158,255,.12);
}
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.nav-logo-img-home {
  height: clamp(60px, 6vw, 96px);
}
@media (max-width: 720px) {
  .nav-logo-img-home {
    height: 40px;
  }
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
}
.feedback-img {
  max-width: 520px;
  margin: 1rem auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── Spezial-Vorführungen ──────────────────────────────────── */
.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}
@media (max-width: 720px) {
  .special-grid { grid-template-columns: 1fr; }
}
.special-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
}
.special-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(78,158,255,.0), rgba(240,201,106,.0));
  pointer-events: none;
  transition: background .25s;
  z-index: 1;
}
.special-card:hover {
  border-color: rgba(100,160,255,.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(78,158,255,.08);
}
.special-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--deep);
}
.special-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  display: block;
  transition: transform .5s ease;
}
.special-card:hover .special-img-wrap img { transform: scale(1.04); }
.special-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,41,.85) 0%, rgba(15,25,41,.15) 45%, transparent 70%);
  pointer-events: none;
}
.special-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.special-eyebrow {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .55rem;
  display: block;
}
.special-title {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--star);
  margin: 0 0 .75rem;
  line-height: 1.3;
  letter-spacing: .005em;
}
.special-body p {
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: .6rem;
  color: var(--text);
}
.special-body p:last-child { margin-bottom: 0; }
.special-meta {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: .9rem;
}

/* ── Klassenstufen ─────────────────────────────────────────── */
.grade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.grade-card {
  background: linear-gradient(145deg, rgba(15,25,41,.98), rgba(11,17,32,.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem 1.45rem;
}
.grade-card-wide {
  grid-column: 1 / -1;
}
.grade-eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: .45rem;
}
.grade-card h3 {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 .85rem;
}
.grade-card p {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: .75rem;
}
.grade-card ul {
  margin-top: .6rem;
}
.grade-card li {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.5;
  margin-bottom: .45rem;
}
.grade-card .grade-note {
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin: 1rem 0 0;
  padding-top: .9rem;
}
@media (max-width: 760px) {
  .grade-grid { grid-template-columns: 1fr; }
}

.card-link {
  display: inline-block;
  margin-top: .75rem;
  font-family: var(--ff-mono);
  font-size: .75rem;
  letter-spacing: .04em;
}

/* ── Honeypot (Spam-Schutz) ────────────────────────────────── */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Steps-Liste (zweistufiger Buchungsprozess) ────────────── */
.steps-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
  max-width: 72ch;
}
.steps-list li {
  padding-left: .5rem;
  margin-bottom: .75rem;
  color: var(--text);
}
.steps-list li::before { content: none; }
.steps-list li::marker {
  color: var(--accent);
  font-family: var(--ff-mono);
  font-weight: bold;
}

/* ── Form-Fehlermeldung ────────────────────────────────────── */
.form-error {
  background: rgba(255, 90, 90, .1);
  border: 1px solid rgba(255, 90, 90, .3);
  color: #ffb0b0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-media {
    justify-self: stretch;
    max-width: 760px;
  }
  .decision-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .decision-cta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  section {
    padding: 3rem 0;
  }
  .hero-section {
    min-height: auto;
    padding: 4rem 0 3rem;
  }
  .hero-eyebrow {
    letter-spacing: .16em;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    text-align: center;
  }
  .decision-strip-inner {
    grid-template-columns: 1fr;
  }
  .decision-item {
    align-items: start;
  }
  .decision-cta {
    justify-self: stretch;
  }
  .divider span {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #stars-bg {
    display: none;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ── Subpage styles (breadcrumb, eyebrow, h1, CTA-banner) ──── */
.breadcrumb {
  margin: 2rem 0 0;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--muted);
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: .45rem;
  list-style: none; padding: 0; margin: 0;
}
.breadcrumb li { padding: 0; margin: 0; }
.breadcrumb li::before { content: none; }
.breadcrumb li + li::before { content: "/"; color: var(--muted); margin-right: .45rem; }
.breadcrumb a { color: var(--accent-bright); }

.page-eyebrow {
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 4rem 0 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.page-eyebrow::before { content: ""; display: block; width: 32px; height: 1px; background: var(--accent); }

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -.01em;
}

.subpage-main section:first-child { border-top: none; }

.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(78,158,255,.08), rgba(240,201,106,.05));
  border: 1px solid rgba(78,158,255,.2);
  border-radius: var(--radius);
  margin: 3rem 0 0;
}
.cta-banner p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ list ─────────────────────────────────────────────────── */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--ff-mono);
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.faq-a { color: var(--text); margin: 0; }
