/* =========================================================
   Schluss mit Kieferstress — Verkaufsseite (Visual-Studio)
   Mobile-first. Nur transform/opacity animiert.
   ========================================================= */

:root {
  /* Marke */
  --navy:        #0A1628;
  --navy-2:      #0D2240;
  --navy-3:      #16305A;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --orange:      #F97316;
  --orange-dark: #E8600A;
  /* Dunkle Marken-Abstufung für kleine Labels: #E8600A schafft auf den
     Papiertönen nur 2,99:1, dieser Ton 8,02:1. */
  --orange-ink:  #7E2E02;
  --green:       #22C55E;

  /* Flächen — Papiertöne aus den Illustrationen gemessen */
  --white:       #FFFFFF;
  --surface:     #F3F4F6;
  --paper:       #FBF3E7;
  --paper-soft:  #FDF5EA;
  --paper-warm:  #F9EEDA;

  /* Text */
  --ink:         #111827;
  --ink-strong:  #0A1628;
  --ink-2:       #3D4A5C;
  --on-navy:     #FFFFFF;
  --on-navy-2:   #C9D6EC;

  /* Struktur */
  --line:        #E4E7EC;
  --line-warm:   #ECDFC9;
  --r-s: 10px;
  --r-m: 14px;
  --r-l: 20px;
  --shadow-s: 0 1px 2px rgba(10,22,40,.06), 0 2px 8px rgba(10,22,40,.05);
  --shadow-m: 0 2px 6px rgba(10,22,40,.06), 0 12px 28px rgba(10,22,40,.08);
  --shadow-l: 0 4px 12px rgba(10,22,40,.08), 0 24px 56px rgba(10,22,40,.12);

  /* Motion */
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-reveal: 700ms;
  --dur-micro: 160ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: Nunito, "Nunito Sans", system-ui, sans-serif;
  color: var(--ink-strong);
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 8.6vw, 3.75rem); font-weight: 800; line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 5.6vw, 2.55rem); font-weight: 800; line-height: 1.14; }
h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.35; }

p { margin: 0; }
a { color: var(--blue-dark); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--r-s) var(--r-s); text-decoration: none; font-weight: 700;
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: 820px; }

section { scroll-margin-top: 76px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: Nunito, "Nunito Sans", system-ui, sans-serif;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; text-align: center;
  padding: 13px 22px; min-height: 46px;
  border: 2px solid transparent; border-radius: 999px;
  transition: transform var(--dur-micro) var(--ease-out-strong),
              background-color var(--dur-micro) linear,
              border-color var(--dur-micro) linear,
              color var(--dur-micro) linear;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.28); }
.btn-ghost   { background: transparent; color: var(--ink-strong); border-color: #C3CBD8; }

.btn-sm { font-size: .95rem; padding: 10px 18px; min-height: 42px; }
.btn-lg { font-size: 1.06rem; padding: 15px 26px; min-height: 52px; }
.btn-xl { font-size: 1.12rem; padding: 17px 30px; min-height: 58px; }
.btn-block { display: flex; width: 100%; }

/* Auf schmalen Geräten bleibt der Kauf-Button dadurch einzeilig. */
@media (max-width: 430px) {
  .btn-lg { font-size: 1.02rem; padding-inline: 18px; }
  .btn-xl { font-size: 1.04rem; padding-inline: 16px; }
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--blue-dark); }
  .btn-ghost:hover   { border-color: var(--navy); background: rgba(10,22,40,.04); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.topbar-in { display: flex; align-items: center; gap: 14px; min-height: 64px; }

.mark { display: block; flex: none; text-decoration: none; }
.mark-frame {
  display: block; position: relative; overflow: hidden;
  width: 120px; aspect-ratio: 2.495;
}
.mark-frame img {
  position: absolute; width: 131.32%; height: auto;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}

.nav-main { display: none; }
.topbar-end { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.link-quiet { display: none; color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: .95rem; }
.link-quiet:hover { color: var(--ink-strong); }

@media (min-width: 900px) {
  .topbar-in { min-height: 74px; gap: 26px; }
  .mark-frame { width: 138px; }
  .nav-main { display: flex; gap: 26px; }
  .nav-main a {
    color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: .98rem;
    padding: 6px 0; border-bottom: 2px solid transparent;
    transition: color var(--dur-micro) linear, border-color var(--dur-micro) linear;
  }
  .nav-main a:hover { color: var(--ink-strong); border-bottom-color: var(--orange); }
  .link-quiet { display: inline-block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 34px 0 44px;
  background:
    radial-gradient(120% 90% at 88% 4%, rgba(249,115,22,.10) 0%, rgba(249,115,22,0) 58%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 46%, var(--white) 100%);
}
.hero-grid { display: grid; gap: 30px; }

.eyebrow {
  display: inline-block;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: .82rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy-3);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line-warm);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--navy-3); }

.lead {
  font-size: clamp(1.04rem, 3.5vw, 1.2rem);
  color: var(--ink-2);
  line-height: 1.62;
  max-width: 34em;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-row .btn-lg { flex: 1 1 auto; }

.trust {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: grid; gap: 10px;
  font-size: .97rem; font-weight: 600; color: var(--ink-strong);
}
.trust li { display: flex; align-items: center; gap: 10px; }
.ico { width: 20px; height: 20px; flex: none; stroke: var(--blue); fill: var(--blue); }
.ico [fill="none"] { fill: none; }

.hero-shot { margin: 0; position: relative; }
.shot-frame {
  position: relative; overflow: hidden;
  border-radius: var(--r-l);
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  box-shadow: var(--shadow-l);
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.shot-glow { display: none; }

@media (min-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1.06fr .94fr; align-items: center; gap: 54px; }
  .trust { grid-template-columns: 1fr; gap: 12px; font-size: 1rem; }
  .cta-row .btn-lg { flex: 0 0 auto; }
  .shot-frame { aspect-ratio: 4 / 5; }
  .shot-frame img { object-position: 50% 24%; }
  .shot-glow {
    display: block; position: absolute; inset: auto -18px -22px -18px; height: 60%;
    background: radial-gradient(60% 100% at 50% 100%, rgba(249,115,22,.16), rgba(249,115,22,0) 70%);
    z-index: -1;
  }
}

/* =========================================================
   Sektions-Grundgerüst
   ========================================================= */
.sec-head { max-width: 42rem; margin-bottom: 26px; }
.sec-sub { margin-top: 12px; color: var(--ink-2); font-size: 1.04rem; }

.legal-note {
  margin-top: 22px;
  font-size: .95rem; line-height: 1.55;
  color: var(--ink-2);
  border-left: 3px solid var(--line-warm);
  padding-left: 14px;
  max-width: 46rem;
}
.legal-note-inline { margin-top: 18px; border-left-color: #D6DCE5; }

/* =========================================================
   PROBLEM
   ========================================================= */
.feel { padding: 52px 0 56px; background: var(--white); }

.feel-grid { display: grid; gap: 16px; }
.feel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 200ms var(--ease-out-strong), box-shadow 200ms var(--ease-out-strong);
}
.feel-pic { background: var(--paper-soft); }
.feel-pic img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.feel-body { padding: 18px 20px 22px; }
.feel-body h3 { margin-bottom: 7px; }
.feel-body p { color: var(--ink-2); font-size: 1rem; }

@media (hover: hover) and (pointer: fine) {
  .feel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
}

.feel-out {
  margin-top: 26px;
  font-family: Nunito, sans-serif; font-weight: 700;
  font-size: clamp(1.1rem, 3.9vw, 1.34rem);
  line-height: 1.45; color: var(--ink-strong);
  max-width: 40rem;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

@media (min-width: 700px) {
  .feel-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 1000px) {
  .feel { padding: 76px 0 80px; }
  .feel-grid { grid-template-columns: repeat(4, 1fr); }
  .feel-body { padding: 20px 20px 24px; }
}

/* =========================================================
   ANSATZ / PHASEN
   ========================================================= */
.journey { padding: 52px 0 56px; background: var(--paper); }

.rail { display: none; }

.phases { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; counter-reset: ph; }
.phase {
  background: var(--white);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--line-warm);
}
.phase-pic { background: var(--paper-soft); }
.phase-pic img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 42%; }
.phase-tag {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin: 18px 20px 8px;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: .95rem;
  color: var(--navy-3);
}
.phase-tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex: none; }
.phase-tag em {
  font-style: normal; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-2); background: var(--surface);
  padding: 3px 9px; border-radius: 999px;
}
.phase h3 { margin: 0 20px 22px; font-size: 1.06rem; font-weight: 600; line-height: 1.5; color: var(--ink); font-family: "Nunito Sans", sans-serif; }

@media (min-width: 780px) {
  .phases { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rail { display: block; position: relative; height: 2px; margin: 6px 0 22px; }
  .rail-line {
    display: block; height: 2px; width: 100%;
    background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.15));
    transform: scaleX(0); transform-origin: left;
    transition: transform 900ms var(--ease-in-out-strong);
  }
  .rail-line.is-drawn { transform: scaleX(1); }
}
@media (min-width: 1000px) {
  .journey { padding: 76px 0 80px; }
}

/* Einwand-Karte */
.objection {
  margin-top: 28px;
  display: grid; gap: 0;
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.objection-pic { background: var(--paper-soft); }
.objection-pic img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.objection-body { padding: 20px; }
.objection-q {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1.06rem;
  color: var(--ink-strong); margin-bottom: 6px;
}
.objection-a { color: var(--ink-2); font-size: 1rem; }
.objection-flat { border-color: var(--line); background: var(--surface); box-shadow: none; }

@media (min-width: 780px) {
  .objection { grid-template-columns: 300px 1fr; align-items: stretch; }
  .objection-pic img { height: 100%; aspect-ratio: auto; min-height: 150px; }
  .objection-body { padding: 26px 30px; align-self: center; }
  .objection-flat { grid-template-columns: 1fr; }
}

/* =========================================================
   NETZWERK
   ========================================================= */
.network {
  padding: 56px 0 60px;
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(37,99,235,.20) 0%, rgba(37,99,235,0) 60%),
    var(--navy);
  color: var(--on-navy);
}
.network h2 { color: var(--on-navy); }
.net-text p { margin-top: 16px; color: var(--on-navy-2); font-size: 1.04rem; line-height: 1.68; }
.net-grid { display: grid; gap: 34px; }

.net-map {
  position: relative;
  width: 100%; max-width: 460px; margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-lines .ln {
  fill: none;
  stroke: #7EA9F7;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .9;
}
/* Die Kette, von der die Copy spricht: laeuft exakt durch alle fuenf Knoten. */
.net-lines .chain {
  fill: none;
  stroke: #7EA9F7;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: opacity 700ms var(--ease-out-strong) 420ms;
}
.net-map.is-drawn .chain { opacity: .28; }
.no-js .net-lines .chain { opacity: .28; }

.net-map.is-drawn .ln {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 900ms var(--ease-in-out-strong);
}
.net-map.is-drawn .ln:nth-of-type(1) { transition-delay: 0ms; }
.net-map.is-drawn .ln:nth-of-type(2) { transition-delay: 80ms; }
.net-map.is-drawn .ln:nth-of-type(3) { transition-delay: 160ms; }
.net-map.is-drawn .ln:nth-of-type(4) { transition-delay: 240ms; }
.net-map.is-drawn .ln:nth-of-type(5) { transition-delay: 320ms; }

.net-node {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  background: var(--navy-2);
  border: 1px solid rgba(160,190,240,.45);
  color: #fff;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: .84rem;
  padding: 8px 12px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.net-node.core {
  background: var(--orange);
  border-color: rgba(255,255,255,.5);
  color: #26160A;
  font-size: 1rem;
  padding: 13px 22px;
}

.net-map .net-node:not(.core) { opacity: 0; transform: translate(-50%, -50%) scale(.95); }
.net-map.is-drawn .net-node:not(.core) {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
  transition: opacity 500ms var(--ease-out-strong), transform 500ms var(--ease-out-strong);
  transition-delay: calc(300ms + var(--n) * 60ms);
}
.no-js .net-map .net-node:not(.core) { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.no-js .net-lines .ln { stroke-dashoffset: 0; }

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.04); }
}
.net-node.core { animation: breathe 4s ease-in-out infinite; }

@media (min-width: 560px) { .net-node { font-size: .92rem; padding: 9px 15px; } }
@media (min-width: 860px) {
  .network { padding: 82px 0 88px; }
  .net-grid { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 48px; }
  .net-map { aspect-ratio: 4 / 3; max-width: 620px; }
  .net-node { font-size: .96rem; }
  .net-node.core { font-size: 1.08rem; padding: 15px 26px; }
}

/* =========================================================
   10 TAGE
   ========================================================= */
.days { padding: 52px 0 56px; background: var(--white); }

.day-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  counter-reset: none;
}
.day {
  display: flex; flex-direction: column;
  background: var(--paper-warm);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: transform 200ms var(--ease-out-strong), box-shadow 200ms var(--ease-out-strong);
}
.day-pic { display: block; background: var(--paper-warm); }
.day-pic img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.day-no {
  display: block; margin: 12px 14px 2px;
  font-family: Nunito, sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange-ink);
}
.day-title {
  display: block; margin: 0 14px 16px;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: 1rem;
  line-height: 1.3; color: var(--ink-strong);
}

@media (hover: hover) and (pointer: fine) {
  .day:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
}
@media (min-width: 620px) { .day-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) {
  .days { padding: 76px 0 80px; }
  .day-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
}

/* =========================================================
   INHALTE / BONI
   ========================================================= */
.extras { padding: 52px 0 56px; background: var(--paper); }

.extras-grid { display: grid; gap: 18px; }
.extra {
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.extra-pic { background: var(--paper-soft); }
.extra-pic img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.extra-body { padding: 18px 20px 22px; }
.extra-kicker {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange-ink);
  margin-bottom: 6px;
}
.extra-body h3 { font-size: 1.16rem; }

.extras-list {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; gap: 12px;
  font-size: 1.02rem; color: var(--ink-strong); font-weight: 600;
}
.extras-list li { display: flex; align-items: flex-start; gap: 11px; }

.tick {
  width: 22px; height: 22px; flex: none; margin-top: 1px;
  fill: none; stroke: var(--green); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (min-width: 700px) {
  .extras-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .extras-list { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
}
@media (min-width: 1000px) { .extras { padding: 76px 0 80px; } }

/* =========================================================
   ÜBER ROBERT
   ========================================================= */
.who { padding: 52px 0 56px; background: var(--white); }
.who-grid { display: grid; gap: 28px; }
.who-shot { margin: 0; }
.shot-frame-square { aspect-ratio: 1 / 1; box-shadow: var(--shadow-m); }
.who-text p { margin-top: 16px; color: var(--ink-2); font-size: 1.04rem; line-height: 1.68; }

@media (min-width: 860px) {
  .who { padding: 76px 0 80px; }
  .who-grid { grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; }
}

/* =========================================================
   ANGEBOT
   ========================================================= */
.offer {
  padding: 56px 0 60px;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(37,99,235,.22) 0%, rgba(37,99,235,0) 62%),
    var(--navy);
}
.offer-wrap { display: flex; justify-content: center; }
.offer-box {
  width: 100%; max-width: 720px;
  background: var(--white);
  border-radius: var(--r-l);
  padding: 28px 22px 26px;
  box-shadow: var(--shadow-l);
}
.offer-box h2 { font-size: clamp(1.55rem, 5.4vw, 2.1rem); }

.offer-list {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: grid; gap: 13px;
  font-size: 1.02rem; color: var(--ink-strong); font-weight: 600;
}
.offer-list li { display: flex; align-items: flex-start; gap: 11px; }

.price {
  margin: 26px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
}
.price strong {
  font-family: Nunito, sans-serif; font-weight: 800;
  font-size: clamp(2.3rem, 9vw, 3rem); line-height: 1; color: var(--ink-strong);
  letter-spacing: -0.02em;
}
.price span { color: var(--ink-2); font-size: 1rem; font-weight: 600; }

.disclaimer {
  margin: 20px 0 18px;
  background: var(--surface);
  border-left: 4px solid var(--navy-3);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  padding: 16px 18px;
  font-size: .97rem; line-height: 1.6;
  color: var(--ink);
}

.offer-facts {
  margin: 22px 0 0; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid; gap: 18px;
}
.offer-facts dt {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--ink-strong); margin-bottom: 5px;
}
.offer-facts dd { margin: 0; color: var(--ink-2); font-size: .99rem; line-height: 1.6; }

@media (min-width: 640px) {
  .offer-box { padding: 38px 38px 34px; }
  .offer-list { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .offer-facts { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (min-width: 1000px) { .offer { padding: 82px 0 88px; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 52px 0 56px; background: var(--white); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1rem; margin: 0; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer;
  padding: 19px 2px;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: 1.06rem; line-height: 1.4;
  color: var(--ink-strong);
}
.chev {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: var(--blue); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 250ms var(--ease-out-strong);
}
.faq-q[aria-expanded="false"] .chev { transform: rotate(-90deg); }

.faq-a { color: var(--ink-2); }
.faq-a p { padding: 0 2px 20px; font-size: 1.01rem; line-height: 1.65; max-width: 56ch; }

.js .faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 250ms var(--ease-out-strong);
}
.js .faq-a[data-open] { grid-template-rows: 1fr; }
.js .faq-a-in { overflow: hidden; min-height: 0; }

@media (min-width: 1000px) { .faq { padding: 76px 0 80px; } }

/* =========================================================
   ABSCHLUSS
   ========================================================= */
.finish { padding: 52px 0 60px; background: var(--paper); }
.finish-grid { display: grid; gap: 26px; align-items: center; }
.finish-text p { margin: 14px 0 26px; color: var(--ink-2); font-size: 1.08rem; }
.finish-pic { margin: 0; }
.finish-pic img {
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-l); box-shadow: var(--shadow-m);
  background: var(--paper-soft);
}

@media (min-width: 860px) {
  .finish { padding: 78px 0 86px; }
  .finish-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot { background: var(--navy); color: var(--on-navy-2); padding: 40px 0 34px; }
.foot-grid { display: grid; gap: 24px; }
.foot-brand p { margin-top: 14px; color: var(--on-navy-2); font-size: 1rem; max-width: 32rem; }

.mark-frame-foot {
  width: 150px;
  background: var(--white);
  border-radius: var(--r-s);
  padding: 0;
}
.mark-frame-foot img { width: 118%; }

.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-links a { color: #fff; text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 2px; }
.foot-links a:hover { border-bottom-color: var(--orange); }

.foot-note {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: var(--on-navy-2); font-size: .95rem;
}

@media (min-width: 780px) {
  .foot { padding: 52px 0 40px; }
  .foot-grid { grid-template-columns: 1.4fr 1fr; align-items: start; gap: 40px; }
  .foot-links { justify-content: flex-end; }
}

/* =========================================================
   STICKY KAUF-LEISTE
   ========================================================= */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(10,22,40,.13);
  transform: translateY(115%);
  transition: transform 320ms var(--ease-out-strong);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
}
.buybar.is-on { transform: translateY(0); }
.buybar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.buybar-price { display: none; }
.buybar-price strong {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--ink-strong);
  margin-right: 8px;
}
.buybar-price span { color: var(--ink-2); font-size: .93rem; font-weight: 600; }
.buybar .btn { flex: 1 1 auto; }

.bar-on .foot { padding-bottom: 96px; }

@media (min-width: 620px) {
  .buybar-price { display: block; }
  .buybar .btn { flex: 0 0 auto; }
  .bar-on .foot { padding-bottom: 108px; }
}

/* =========================================================
   MOTION
   ========================================================= */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-photo {
  from { opacity: 0; transform: translateY(16px) scale(1.03); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.rise       { animation: rise-in var(--dur-reveal) var(--ease-out-strong) both; animation-delay: var(--d, 0ms); }
.rise-photo { animation: rise-photo var(--dur-reveal) var(--ease-out-strong) both; animation-delay: var(--d, 0ms); }

[data-reveal] {
  transition: opacity 600ms var(--ease-out-strong), transform 600ms var(--ease-out-strong);
}
[data-reveal]:not([data-inview]) { opacity: 0; transform: translateY(20px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .net-node.core { animation: none; transform: translate(-50%, -50%); }
}
