/* ==========================================================================
   Vantage Videos, Stylesheet
   Farben und Schrift aus dem Design (Claude Design, 23.09.2026).
   Alles liegt lokal, keine Anfrage an fremde Server.
   ========================================================================== */

/* Figtree, variable Schrift (400 bis 700) aus einer Datei */
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/figtree-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: "Figtree";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/figtree-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;
}

/* ---------- Farben und Maße ---------- */
:root {
  --cream: #fffdf9;
  --sand: #f3efe6;
  --sand-deep: #ebe5d8;
  --line: #e4ded1;
  --ink: #1b1a17;
  --ink-soft: #4a473f;
  --muted: #6b675e;
  --red: #c8102e;
  --red-hi: #e32a4b;
  --red-lo: #8f0a20;
  --gold: #b99a5b;

  --radius-s: 14px;
  --radius-m: 20px;
  --radius-l: 32px;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);

  --shadow-card: 0 1px 1px rgba(27, 26, 23, .04), 0 2px 6px rgba(27, 26, 23, .04), 0 18px 40px -18px rgba(27, 26, 23, .18);
  --shadow-lift: 0 1px 1px rgba(27, 26, 23, .05), 0 6px 14px rgba(27, 26, 23, .06), 0 30px 60px -24px rgba(27, 26, 23, .28);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 10px; }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 1080px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 12px; }
.skip-link:focus { left: 8px; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   Knöpfe: glänzend, dreidimensional, leicht animiert
   Aufbau: Verlauf als Körper, Innenlicht oben, Kante unten, weicher Schlagschatten.
   ::before legt den Glanz auf die obere Hälfte, ::after ist der Lichtstreifen,
   der beim Überfahren einmal durchläuft.
   ========================================================================== */
.btn {
  --btn-top: var(--red-hi);
  --btn-mid: var(--red);
  --btn-bot: var(--red-lo);
  --btn-edge: #6e0718;
  --btn-glow: rgba(200, 16, 46, .45);
  --btn-text: #fff;

  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 0;
  border-radius: 9999px;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--btn-text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--btn-top) 0%, var(--btn-mid) 52%, var(--btn-bot) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 0 -2px 0 rgba(0, 0, 0, .16),
    inset 0 0 0 1px rgba(0, 0, 0, .06),
    0 1px 0 var(--btn-edge),
    0 3px 0 -1px var(--btn-edge),
    0 10px 22px -8px var(--btn-glow),
    0 22px 40px -22px var(--btn-glow);
  transform: translateY(0);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 9999px 9999px 40% 40% / 9999px 9999px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .06));
  pointer-events: none;
  z-index: -1;
}
.btn::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
  transform: skewX(-20deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}
.btn:hover {
  color: var(--btn-text);
  transform: translateY(-3px);
  filter: saturate(1.06) brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    inset 0 -2px 0 rgba(0, 0, 0, .14),
    inset 0 0 0 1px rgba(0, 0, 0, .05),
    0 1px 0 var(--btn-edge),
    0 5px 0 -1px var(--btn-edge),
    0 18px 30px -10px var(--btn-glow),
    0 34px 60px -26px var(--btn-glow);
}
.btn:hover::after { animation: btn-sheen 1.1s var(--ease) 1; }
.btn:active {
  transform: translateY(1px);
  transition-duration: .08s;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, .22),
    inset 0 -1px 0 rgba(255, 255, 255, .12),
    0 1px 0 var(--btn-edge),
    0 4px 10px -6px var(--btn-glow);
}
.btn .btn__arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

@keyframes btn-sheen {
  0%   { opacity: 0; transform: skewX(-20deg) translateX(0); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: skewX(-20deg) translateX(420%); }
}

/* Heller Knopf: Perlmutt statt Rot */
.btn--light {
  --btn-top: #ffffff;
  --btn-mid: #f6f2ea;
  --btn-bot: #e6dfd0;
  --btn-edge: #cfc6b4;
  --btn-glow: rgba(27, 26, 23, .22);
  --btn-text: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}
.btn--light::before { background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .2)); }
.btn--light::after { background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .9) 50%, transparent 100%); }

/* Dunkler Knopf */
.btn--dark {
  --btn-top: #3b3832;
  --btn-mid: #25231f;
  --btn-bot: #121110;
  --btn-edge: #000;
  --btn-glow: rgba(27, 26, 23, .45);
}

.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn--lg { padding: 19px 34px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

/* ==========================================================================
   Kopfleiste
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .82);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(228, 222, 209, .7);
}
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo { flex: none; filter: drop-shadow(0 4px 8px rgba(200, 16, 46, .28)); }
.brand__a { font-weight: 700; }
.brand__b { font-weight: 500; color: var(--muted); margin-left: 5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 10px 14px; border-radius: 14px; font-weight: 500; font-size: 15px; transition: background .25s var(--ease); }
.nav__link:hover { background: var(--sand); color: var(--ink); }

.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--sand));
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(27, 26, 23, .06);
  border-radius: 9999px;
  padding: 8px 12px;
  font: inherit; font-weight: 600; font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.lang__flag { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 200px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px;
  box-shadow: var(--shadow-lift);
  display: none;
}
.lang__menu.is-open { display: block; animation: rise .25s var(--ease); }
.lang__item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  border: 0; background: transparent; border-radius: 12px;
  padding: 10px 12px;
  font: inherit; font-size: 15px; font-weight: 500; text-align: left; color: var(--ink);
  cursor: pointer;
}
.lang__item:hover, .lang__item[aria-current="true"] { background: var(--sand); }

@keyframes rise { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Einstieg (Hero)
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(185, 154, 91, .14), transparent 70%),
    radial-gradient(40% 40% at 90% 30%, rgba(200, 16, 46, .05), transparent 70%);
}
.hero__head { max-width: 1000px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #fff, var(--sand));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(27, 26, 23, .05);
  font-size: 14px; font-weight: 600;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(200, 16, 46, .14); }
.hero h1 { font-size: clamp(38px, 6.2vw, 72px); line-height: 1.05; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: #5b5850; max-width: 62ch; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--muted); }
.hero__trust span::before { content: "✓"; color: var(--red); font-weight: 700; margin-right: 6px; }

/* Vorher und Nachher */
.compare { display: grid; grid-template-columns: minmax(0, 1.05fr) auto minmax(0, 1fr); gap: 28px; align-items: center; }
.compare__col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.compare__label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 0 4px; }
.compare__label strong { font-weight: 600; font-size: 15px; }
.compare__label span { font-size: 14px; color: var(--muted); }

.shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.shots__col { display: flex; flex-direction: column; gap: 10px; }
.shot {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #efe9dc, #ddd4c2);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.shot:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-lift); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute; left: 10px; bottom: 10px;
  padding: 4px 10px; border-radius: 9999px;
  background: rgba(255, 253, 249, .88);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.shot--h1 { height: 230px; } .shot--h2 { height: 170px; } .shot--h3 { height: 160px; }
.shot--h4 { height: 240px; } .shot--h5 { height: 210px; } .shot--h6 { height: 190px; }

.compare__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 22px; font-weight: 600;
  background: linear-gradient(180deg, var(--red-hi), var(--red) 55%, var(--red-lo));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 12px 26px -8px rgba(200, 16, 46, .5);
}

/* Filmrahmen */
.film {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #2c2a25, #0f0e0c);
  box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset, 0 40px 80px -30px rgba(27, 26, 23, .55), 0 10px 24px -12px rgba(27, 26, 23, .4);
}
.film__screen { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: #1f1d19; }
.film__screen video, .film__screen img { width: 100%; height: 100%; object-fit: cover; }
.film__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 9999px;
  background: linear-gradient(180deg, var(--red-hi), var(--red));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
  color: #fff; font-size: 12px; font-weight: 600;
}
.film__ai {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  padding: 4px 10px; border-radius: 9999px;
  background: rgba(0, 0, 0, .45); color: rgba(255, 255, 255, .85);
  font-size: 11px; font-weight: 500;
}
.film__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: #d8d3c8; font-size: 14px; text-align: center; padding: 20px;
  background: radial-gradient(70% 70% at 50% 40%, #3a362f, #1a1815);
}
.film__play {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center; padding-left: 5px;
  background: linear-gradient(180deg, #fff, #e8e2d6);
  color: var(--ink); font-size: 22px;
  box-shadow: inset 0 1px 0 #fff, 0 12px 30px -8px rgba(0, 0, 0, .6);
}
/* Hochformat als Telefon, rechts unten über dem Querformat */
.phone {
  position: absolute; right: -18px; bottom: -34px;
  width: 26%; min-width: 96px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  padding: 5px;
  background: linear-gradient(160deg, #34312b, #0c0b0a);
  box-shadow: 0 30px 50px -18px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.phone__screen { width: 100%; height: 100%; border-radius: 18px; overflow: hidden; background: radial-gradient(80% 60% at 50% 40%, #3a362f, #1a1815); }
.phone__screen video, .phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.film__caption { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 0 4px; margin-top: 44px; }

/* ==========================================================================
   Leistung auf einen Blick
   ========================================================================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--sand { background: var(--sand); }
.section__title { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.1; max-width: 22ch; }
.section__sub { font-size: 18px; color: #5b5850; margin-top: 12px; max-width: 60ch; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; margin-top: 44px; }
.card {
  position: relative;
  background: linear-gradient(180deg, #fffefb, var(--cream));
  border: 1px solid rgba(228, 222, 209, .8);
  border-radius: var(--radius-l);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__label { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--red); }
.card__title { font-size: 24px; line-height: 1.25; font-weight: 600; letter-spacing: -0.02em; }
.card__list { display: flex; flex-direction: column; gap: 9px; font-size: 16px; line-height: 1.45; color: var(--ink-soft); }
.card__list li { position: relative; padding-left: 22px; }
.card__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(185, 154, 91, .18); }
.card__row { display: flex; justify-content: space-between; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.card__row strong { color: var(--ink); font-size: 18px; }
.card__note { font-size: 15px; line-height: 1.45; color: var(--ink-soft); }
.card__alt { font-size: 13px; color: var(--muted); }

.card--accent {
  color: #fff;
  border: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, .16), transparent 60%),
    linear-gradient(160deg, #d4163a, var(--red) 45%, #9a0b23);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 30px 60px -26px rgba(200, 16, 46, .6);
}
.card--accent .card__label { color: rgba(255, 255, 255, .85); }
.card--accent .card__list { color: #fff; }
.card--accent .card__list li::before { background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); }
.card--accent .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Bestellen
   ========================================================================== */
.order { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 22px; align-items: start; margin-top: 40px; }
.panel {
  border-radius: var(--radius-l);
  padding: clamp(24px, 3.2vw, 38px);
  display: flex; flex-direction: column; gap: 20px;
}
.panel--sand { background: var(--sand); border: 1px solid rgba(228, 222, 209, .8); box-shadow: inset 0 1px 0 #fff; }
.panel--dark {
  color: #f1ede4;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(185, 154, 91, .22), transparent 60%),
    linear-gradient(170deg, #2a2823, #141311);
  box-shadow: 0 40px 80px -36px rgba(27, 26, 23, .7), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.panel__step { font-weight: 600; font-size: 17px; }
.panel--dark .panel__step { color: #fff; }

.tiers { display: flex; flex-direction: column; gap: 12px; border: 0; margin: 0; padding: 0; }
.tier { position: relative; display: block; cursor: pointer; }
.tier input { position: absolute; opacity: 0; pointer-events: none; }
.tier__body {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  transition: border-color .25s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tier:hover .tier__body { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.tier input:checked + .tier__body { border-color: var(--red); box-shadow: 0 0 0 4px rgba(200, 16, 46, .1), var(--shadow-lift); }
.tier input:focus-visible + .tier__body { outline: 3px solid var(--red); outline-offset: 3px; }
.tier__radio {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #cfc6b4; background: #fff;
  display: grid; place-items: center;
  transition: border-color .25s var(--ease);
}
.tier input:checked + .tier__body .tier__radio { border-color: var(--red); }
.tier input:checked + .tier__body .tier__radio::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(180deg, var(--red-hi), var(--red-lo));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}
.tier__text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.tier__name { font-weight: 600; font-size: 17px; }
.tier__time { font-size: 15px; color: #5b5850; }
.tier__price { text-align: right; }
.tier__price strong { display: block; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.tier__price span { font-size: 12px; color: var(--muted); }

.summary { border-top: 1px solid #dcd6c9; padding-top: 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.summary__label { font-size: 16px; color: var(--ink-soft); }
.summary__total { font-weight: 700; font-size: 32px; letter-spacing: -0.02em; }
.pay-note { font-size: 14px; color: var(--muted); text-align: center; display: flex; gap: 8px; align-items: center; justify-content: center; }
.pay-note svg { flex: none; }
.legal-note { font-size: 13px; line-height: 1.5; color: #5b5850; }
.legal-note a { text-decoration: underline; text-underline-offset: 2px; }

.after-list { display: flex; flex-direction: column; gap: 16px; counter-reset: s; }
.after-list li { position: relative; padding-left: 46px; font-size: 16px; line-height: 1.5; color: #d9d4c9; }
.after-list li strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.after-list li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; color: var(--ink);
  background: linear-gradient(180deg, #f3e6c6, var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 6px 14px -6px rgba(185, 154, 91, .7);
}
.good-to-know {
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px; line-height: 1.55; color: #cfc9bd;
}
.good-to-know strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   Fragen
   ========================================================================== */
.faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 14px; margin-top: 36px; }
.faq__item {
  background: linear-gradient(180deg, #fffefb, var(--cream));
  border: 1px solid rgba(228, 222, 209, .8);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.faq__q { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.faq__a { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }

/* ==========================================================================
   Abschluss und Fußzeile
   ========================================================================== */
.closing { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.closing h2 { font-size: clamp(30px, 4.2vw, 48px); max-width: 20ch; }

.footer { border-top: 1px solid var(--line); padding: 32px 0 40px; font-size: 14px; color: var(--muted); }
.footer__inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__small { width: 100%; font-size: 13px; color: #8b877d; margin-top: 6px; }

/* ==========================================================================
   Rechtsseiten und Danke-Seite
   ========================================================================== */
.legal { padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 110px); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.legal h2 { font-size: 22px; letter-spacing: -0.02em; margin: 36px 0 10px; }
.legal p, .legal li, .legal address { font-size: 16px; line-height: 1.65; color: var(--ink-soft); font-style: normal; }
.legal p + p { margin-top: 10px; }
.legal ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.legal a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.legal .micro { font-size: 14px; color: var(--muted); }
.back { display: inline-flex; margin-bottom: 26px; font-size: 15px; font-weight: 500; color: var(--muted); }

.thanks { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.thanks__icon {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--red-hi), var(--red) 55%, var(--red-lo));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 20px 40px -14px rgba(200, 16, 46, .6);
}
.thanks h1 { font-size: clamp(34px, 5vw, 56px); }
.thanks__lead { font-size: 19px; color: #5b5850; max-width: 56ch; }
.thanks .panel { text-align: left; width: 100%; max-width: 760px; margin-top: 18px; }

/* ==========================================================================
   Einblenden beim Scrollen (nur mit JavaScript, sonst sofort sichtbar)
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Kleine Bildschirme
   ========================================================================== */
@media (max-width: 1100px) {
  .compare { gap: 18px; }
  .shot--h1 { height: 190px; } .shot--h2 { height: 140px; } .shot--h3 { height: 130px; }
  .shot--h4 { height: 200px; } .shot--h5 { height: 175px; } .shot--h6 { height: 155px; }
  .compare__arrow { width: 46px; height: 46px; font-size: 18px; }
  .phone { right: -10px; }
}
@media (max-width: 860px) {
  .compare { grid-template-columns: 1fr; gap: 26px; }
  .compare__col { width: 100%; max-width: 640px; margin: 0 auto; }
  .compare__arrow { transform: rotate(90deg); justify-self: center; }
  .order { grid-template-columns: 1fr; }
  .phone { right: 8px; bottom: -28px; }
}
@media (max-width: 720px) {
  .nav__link { display: none; }
  .header .btn { padding: 10px 16px; font-size: 14px; }
  .shots { gap: 8px; }
  .shots__col { gap: 8px; }
  .shot--h1 { height: 150px; } .shot--h2 { height: 110px; } .shot--h3 { height: 105px; }
  .shot--h4 { height: 155px; } .shot--h5 { height: 135px; } .shot--h6 { height: 125px; }
  .shot figcaption { font-size: 10px; left: 6px; bottom: 6px; padding: 3px 7px; }
  .phone { width: 24%; right: -6px; bottom: -22px; border-radius: 16px; padding: 4px; }
  .phone__screen { border-radius: 13px; }
  .film__placeholder { padding-right: 30%; }
  .eyebrow { text-align: left; }
  .btn--lg { padding: 17px 26px; font-size: 17px; }
  .hero__ctas .btn { width: 100%; }
  .card { padding: 26px; }
  .tier__body { padding: 16px; }
  .summary__total { font-size: 26px; }
}

/* Weniger Bewegung, wenn im Betriebssystem so eingestellt */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
