/* Filmetri – filmetri.com
   Design-Tokens aus docs/BRANDING.md, Layout aus dem Claude-Design-Projekt (Startseite.dc.html).
   Fonts werden selbst gehostet (kein Google-Fonts-CDN): Offline-Prinzip und DSGVO. */

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/newsreader-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --amber-500: #e8a33d;
  --amber-600: #cf8a28;
  --teal-300: #7fbcba;
  --teal-500: #3f8e8c;
  --teal-600: #357876;
  --teal-800: #224e4d;
  --n50: #faf9f7;
  --n100: #f2f0ed;
  --n200: #e5e2dd;
  --n400: #a8a29a;
  --n600: #57534c;
  --n700: #3c3936;
  --n800: #262421;
  --n900: #1a1816;
  --n950: #141210;
  --success: #4caf6d;
  --error: #d64545;
  --warning: #e07b39;
  --violet: #8a6fb8;
  --raspberry: #c9566f;

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(64px, 8vw, 112px);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--n950);
  color: var(--n50);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--teal-500); text-decoration: none; }
a:hover { color: var(--teal-300); }
:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; }
p { margin: 0; }
.mono { font-family: var(--font-mono); }
.container { max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 820px; margin: 0 auto; }
.col { display: flex; flex-direction: column; }
.pretty { text-wrap: pretty; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.page__main { flex: 1; }

/* ---------- Abschnitte ---------- */
.section { padding: var(--pad-y) var(--pad-x); }
.section--dark { background: var(--n950); color: var(--n50); }
.section--light { background: var(--n50); color: var(--n950); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section__head { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.kicker { font-family: var(--font-mono); font-size: 13px; color: var(--n400); }
.h1 { font-size: clamp(42px, 5.6vw, 80px); line-height: 1.02; letter-spacing: -0.02em; }
.h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.08; letter-spacing: -0.015em; }
.h2--big { font-size: clamp(34px, 4.4vw, 60px); }
.h3 { font-size: 28px; line-height: 1.15; }
.lead { font-size: 18px; line-height: 1.6; }
.section--dark .lead, .section--dark .muted { color: var(--n400); }
.section--light .lead, .section--light .muted { color: var(--n600); }
.small { font-size: 13px; color: var(--n400); }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--tight { gap: 16px; }
.grid--wide { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 48px; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 40px; }

/* ---------- Bausteine ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 13px 22px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500; line-height: 1; cursor: pointer; white-space: nowrap;
  border: 1px solid transparent; transition: background-color .15s, border-color .15s, color .15s;
}
.btn--primary { background: var(--amber-500); color: var(--n950); border-color: var(--amber-500); }
.btn--primary:hover { background: var(--amber-600); border-color: var(--amber-600); color: var(--n950); }
.btn--ghost { background: transparent; color: var(--n50); border-color: var(--n700); }
.btn--ghost:hover { border-color: var(--n400); color: var(--n50); }
.section--light .btn--ghost { color: var(--n950); border-color: var(--n200); }
.section--light .btn--ghost:hover { border-color: var(--n400); color: var(--n950); }
.btn--block { width: 100%; }
.btn--lg { font-size: 17px; padding: 16px 24px; min-height: 48px; }
.btn--sm { font-size: 15px; padding: 10px 18px; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--n700); border-radius: 999px; padding: 7px 14px;
  font-size: 13px; color: var(--n100);
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-500); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.badge {
  align-self: flex-start; display: inline-flex; border-radius: 999px; padding: 4px 12px;
  font-size: 13px; font-weight: 500; line-height: 1.4;
  background: color-mix(in srgb, var(--badge, var(--amber-500)) 15%, transparent);
  color: var(--badge, var(--amber-500));
}
.badge--transkript { --badge: #e8a33d; }
.badge--cast { --badge: #3f8e8c; }
.badge--szenen { --badge: #8a6fb8; }
.badge--tech { --badge: #4caf6d; }
.badge--momente { --badge: #e07b39; }
.badge--beats { --badge: #c9566f; }
.badge--teal { --badge: #7fbcba; }

.card {
  background: var(--n800); border: 1px solid var(--n700); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.card p { font-size: 15px; color: var(--n400); }
.card--light {
  background: var(--n100); border-color: var(--n200); padding: 28px;
  box-shadow: 0 8px 30px rgba(20, 18, 16, .04);
}
.card--light p { font-size: 16px; color: var(--n600); }
.card--feature { padding: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 32px; align-items: center; }
.card--feature h3 { font-size: clamp(26px, 2.6vw, 36px); }
.card--feature p { font-size: 16px; }

.mono-block {
  font-family: var(--font-mono); font-size: 13px; line-height: 1.8; color: var(--n400);
  background: var(--n900); border: 1px solid var(--n700); border-radius: var(--radius-sm); padding: 16px 18px;
}
.mono-block strong { font-weight: 400; color: var(--n50); }
.section--light .mono-block { background: var(--n100); border-color: var(--n200); color: var(--n600); }
.mono-block--scroll { overflow-x: auto; white-space: nowrap; font-size: clamp(13px, 1.2vw, 16px); line-height: 1.6; padding: 16px 20px; }

.placeholder {
  position: relative; border: 1px solid var(--n700); border-radius: var(--radius);
  background: var(--n900) repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, .03) 14px 15px);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px;
  font-family: var(--font-mono); font-size: 12px; color: var(--n400);
}
.placeholder--app { aspect-ratio: 16 / 10; }
.placeholder--still { aspect-ratio: 16 / 9; }
.placeholder--shadow { box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.placeholder--progress { flex-direction: column; align-items: stretch; gap: 12px; padding: 0 10%; }
.placeholder--progress .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--n50); }
.placeholder--progress .note { font-size: 11px; text-align: center; }

.progress { height: 6px; background: var(--n700); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; width: 65%; background: var(--amber-500); border-radius: 999px; }

.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--n100); }
.checklist li { display: flex; gap: 12px; }
.checklist li::before { content: "✓"; color: var(--amber-500); flex: none; width: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--n400); }
.input {
  background: var(--n950); border: 1px solid var(--n700); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--n50); font-family: inherit; font-size: 15px; min-height: 44px; width: 100%;
}
.input::placeholder { color: var(--n600); }
.input--mono { font-family: var(--font-mono); }

.local-badge {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--n700); border-radius: 999px;
  padding: 5px 12px 5px 8px; color: var(--n50); font-family: var(--font-mono); font-size: 12px;
}
.local-badge::before { content: ""; width: 10px; height: 12px; border: 2px solid var(--amber-500); border-radius: 3px 3px 2px 2px; }

/* ---------- Kopf ---------- */
.site-header { background: var(--n950); border-bottom: 1px solid var(--n700); color: var(--n50); position: relative; z-index: 5; }
.site-header__bar { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header__logo img { height: 34px; width: auto; }
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a { font-size: 15px; color: var(--n400); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--n50); }
.site-header__right { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 13px; color: var(--n400); display: flex; gap: 6px; align-items: center; }
.lang strong { font-weight: 500; color: var(--n50); }
.lang .soon { font-size: 11px; border: 1px solid var(--n700); border-radius: 999px; padding: 1px 7px; }
.menu-btn { display: none; background: transparent; border: 1px solid var(--n700); color: var(--n50); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 14px; min-height: 44px; cursor: pointer; }
.site-header__mobile { display: none; border-top: 1px solid var(--n700); padding: 12px var(--pad-x) 20px; flex-direction: column; gap: 4px; }
.site-header__mobile a.nav-link { display: block; padding: 12px 0; font-size: 17px; color: var(--n50); border-bottom: 1px solid var(--n800); }
.site-header__mobile .row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding-top: 16px; gap: 16px; }
@media (max-width: 859px) {
  .site-nav, .site-header__right { display: none; }
  .menu-btn { display: inline-flex; }
  .site-header.is-open .site-header__mobile { display: flex; }
}

/* ---------- Fuß ---------- */
.site-footer { background: var(--n950); color: var(--n400); border-top: 1px solid var(--n700); padding: clamp(48px, 6vw, 72px) var(--pad-x) 32px; }
.site-footer__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 420px; }
.site-footer__brand img { height: 30px; width: auto; align-self: flex-start; margin-bottom: 6px; }
.site-footer__claim { font-family: var(--font-display); font-size: 24px; color: var(--n50); line-height: 1.3; }
.site-footer__brand p { font-size: 15px; }
.site-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; font-size: 15px; align-content: start; }
.site-footer__nav a { color: var(--n400); }
.site-footer__nav a:hover { color: var(--n50); }
.site-footer__nav .contact { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 14px; }
.site-footer__bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--n800); display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center; font-size: 13px; }
.site-footer__bottom .right { display: flex; gap: 20px; align-items: center; }

/* ---------- Hero / Filmstill-Flächen ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 128px) var(--pad-x); }
.hero__bg { position: absolute; inset: 0; background: var(--n900) repeating-linear-gradient(135deg, transparent 0 18px, rgba(232, 163, 61, .04) 18px 19px); }
.hero__fade { position: absolute; inset: 0; background: linear-gradient(90deg, #141210 0%, rgba(20, 18, 16, .92) 45%, rgba(20, 18, 16, .55) 100%), linear-gradient(0deg, #141210 0%, transparent 40%); }
.hero__fade--center { background: linear-gradient(180deg, #141210 0%, rgba(20, 18, 16, .7) 50%, #141210 100%); }
.hero__still-label { position: absolute; top: 16px; right: 20px; font-family: var(--font-mono); font-size: 12px; color: var(--n400); }
.hero__inner { position: relative; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 56px; align-items: center; }
.hero__copy { display: flex; flex-direction: column; gap: 28px; }
.hero__copy .lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero--cta { padding: clamp(96px, 12vw, 160px) var(--pad-x); }
.hero--cta .hero__inner { max-width: 900px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.hero--cta-sm { padding: clamp(80px, 10vw, 128px) var(--pad-x); }
.hero--cta-sm .hero__inner { max-width: 820px; gap: 24px; }

/* Warteliste-Zustand: body.is-warteliste blendet Kauf-Elemente aus */
.only-wl { display: none; }
body.is-warteliste .only-kauf { display: none; }
body.is-warteliste .only-wl { display: inline-flex; }
body.is-warteliste form.only-wl { display: none; }
body.is-warteliste form.only-wl.is-open { display: flex; }
.wl-form { flex-wrap: wrap; gap: 10px; max-width: 520px; }
.wl-form .input { flex: 1 1 220px; width: auto; background: var(--n900); }
.wl-form .note { flex-basis: 100%; font-size: 13px; color: var(--n400); }
.wl-form .note a { color: var(--n50); text-decoration: underline; }
.wl-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-form__ok { color: #4caf6d; }
.wl-form__error { color: #e07a5f; }

/* ---------- Schritte ---------- */
.step { display: flex; flex-direction: column; gap: 16px; }
.step__nr { font-family: var(--font-mono); font-size: 13px; color: var(--amber-600); }
.step p { color: var(--n600); }
.section--light .step h3 { color: var(--n950); }

/* ---------- Schmerz-Karten ---------- */
.pain__nr { font-family: var(--font-mono); font-size: 12px; color: var(--n400); }
.pain h3 { font-size: 26px; line-height: 1.2; }
.pain__answer { margin-top: auto; padding-top: 8px; font-size: 15px; font-weight: 500; color: var(--amber-600); }

/* ---------- Vergleich ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--n700); border-radius: var(--radius); }
.compare { border-collapse: collapse; min-width: 640px; width: 100%; font-size: 15px; }
.compare th { text-align: left; padding: 16px 20px; font-weight: 500; color: var(--n400); border-bottom: 1px solid var(--n700); background: var(--n900); }
.compare th.us { color: var(--amber-500); }
.compare td { padding: 16px 20px; color: var(--n400); border-bottom: 1px solid var(--n800); }
.compare td.us { color: var(--n50); background: rgba(232, 163, 61, .05); }
.compare tr:last-child td { border-bottom: 0; }

/* ---------- Personas ---------- */
.persona { border-top: 2px solid var(--n950); padding-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.persona__label { font-family: var(--font-mono); font-size: 12px; color: var(--n400); }
.persona h3 { font-size: 25px; line-height: 1.25; }
.persona p { color: var(--n600); }

/* ---------- Datenschutz-Kasten ---------- */
.quote-box { border: 1px solid var(--n200); background: var(--n100); border-radius: var(--radius); padding: 28px 32px; display: flex; flex-direction: column; gap: 8px; max-width: 600px; }
.quote-box__quote { font-family: var(--font-display); font-size: 28px; line-height: 1.2; }

/* ---------- Preiskarte ---------- */
.price-card { background: var(--n800); border: 1px solid var(--n700); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; width: 100%; }
.price-card--teaser { max-width: 460px; justify-self: end; }
.price-card--full { padding: clamp(24px, 4vw, 40px); gap: 22px; }
.price-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-card__name { font-family: var(--font-display); font-size: 28px; }
.price-card--full .price-card__name { font-size: 32px; }
.price-card__sub { font-size: 14px; color: var(--n400); }
.price-card__price { font-family: var(--font-mono); font-size: 48px; line-height: 1; }
.price-card--full .price-card__price { font-size: clamp(44px, 6vw, 64px); }
.price-card__label { font-size: 13px; color: var(--n400); text-transform: uppercase; letter-spacing: .06em; }
.price-card__foot { font-size: 13px; color: var(--n400); text-align: center; line-height: 1.6; }
.info-box { border: 1px solid var(--n700); border-radius: var(--radius); padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; gap: 12px; }
.info-box p { color: var(--n400); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--n200); }
.faq__item { border-bottom: 1px solid var(--n200); }
.faq__q {
  width: 100%; background: transparent; border: 0; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left; font-size: 18px; color: inherit; cursor: pointer; min-height: 44px;
}
.faq__q .sign { font-family: var(--font-mono); color: var(--amber-600); font-size: 20px; flex: none; }
.faq__q[aria-expanded="true"] .sign::before { content: "−"; }
.faq__q[aria-expanded="false"] .sign::before { content: "+"; }
.faq__a { padding: 0 40px 22px 0; font-size: 16px; line-height: 1.65; color: var(--n600); }
.faq__a[hidden] { display: none; }
.faq--dark { border-top-color: var(--n700); }
.faq--dark .faq__item { border-bottom-color: var(--n700); }
.faq--dark .faq__q { font-size: 17px; padding: 18px 0; }
.faq--dark .faq__q .sign { color: var(--amber-500); }
.faq--dark .faq__a { font-size: 15px; color: var(--n400); padding-bottom: 20px; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; font-size: 16px; line-height: 1.7; color: var(--n600); }
.legal h1 { font-size: clamp(34px, 4vw, 48px); line-height: 1.1; color: var(--n950); }
.legal h2 { font-family: var(--font-sans); font-size: 18px; font-weight: 500; color: var(--n950); }
.legal section { display: flex; flex-direction: column; gap: 8px; }
.legal .box { background: var(--n100); border: 1px solid var(--n200); border-radius: var(--radius); padding: 24px; }
.legal .foot { padding-top: 12px; border-top: 1px solid var(--n200); font-size: 13px; color: var(--n400); }
.legal a { color: var(--teal-600); }
.legal a:hover { color: var(--teal-800); }
.legal .intro { font-size: 18px; color: var(--n950); }

/* ---------- Checkout-Overlay ---------- */
.checkout { border: 0; padding: 0; background: transparent; max-width: none; width: 100%; height: 100%; max-height: none; margin: 0; }
.checkout::backdrop { background: rgba(20, 18, 16, .82); }
.checkout__wrap { min-height: 100%; display: flex; align-items: flex-start; justify-content: center; padding: clamp(16px, 4vw, 48px) 16px; overflow-y: auto; }
.checkout__panel { background: var(--n900); border: 1px solid var(--n700); border-radius: var(--radius); width: 100%; max-width: 520px; padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 22px; color: var(--n50); }
.checkout__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.checkout__head img { height: 28px; width: auto; }
.checkout__close { background: transparent; border: 1px solid var(--n700); color: var(--n400); border-radius: var(--radius-sm); width: 40px; height: 40px; font-size: 18px; cursor: pointer; }
.checkout__close:hover { color: var(--n50); }
.checkout__sum { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--n800); border: 1px solid var(--n700); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 15px; }
.checkout__sum .mono { font-size: 18px; }
.checkout__secure { font-size: 13px; color: var(--n400); display: flex; align-items: center; gap: 8px; }
.checkout__secure::before { content: ""; width: 8px; height: 10px; border: 2px solid var(--amber-500); border-radius: 2px; }
.checkout form { display: flex; flex-direction: column; gap: 14px; }
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pay-methods span { border: 1px solid var(--n700); border-radius: var(--radius-sm); padding: 10px; text-align: center; font-size: 14px; color: var(--n400); }
.pay-methods span.is-active { border-color: var(--amber-500); color: var(--n50); background: rgba(232, 163, 61, .1); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- Lizenzschlüssel ---------- */
.key-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.key-row code { flex: 1 1 240px; font-family: var(--font-mono); font-size: clamp(15px, 2vw, 19px); background: var(--n950); border: 1px solid var(--n700); border-radius: var(--radius-sm); padding: 12px 14px; letter-spacing: .04em; }
.steps-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 16px; color: var(--n100); }
.steps-list li { display: flex; gap: 14px; }
.steps-list li::before { counter-increment: step; content: counter(step); font-family: var(--font-mono); color: var(--amber-500); flex: none; }
.steps-list { counter-reset: step; }

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