/* =========================================================================
   Schluss mit Kieferstress — Verkaufsseite
   Frontend-Builder · Wettbewerbsversion
   Personality: "ruhiges Atmen" — warm, weich, unaufgeregt.
   ========================================================================= */

/* ── Tokens ───────────────────────────────────────────────────────────── */
:root {
  /* Marke (verbindlich) */
  --navy:        #0A1628;
  --navy-750:    #0D2240;
  --navy-600:    #16345E;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --orange:      #F97316;
  --orange-dark: #E8600A;
  --surface:     #F3F4F6;
  --ink:         #111827;
  --green:       #22C55E;

  /* Eigene Abstufungen innerhalb der Marke */
  --ink-2:       #4B5563;   /* Sekundärtext — 7,56:1 auf Weiß (statt #6B7280) */
  --paper:       #FBF7F1;   /* Bildbett, aus den Illustrationen abgeleitet */
  --line:        #E5E7EB;
  --line-warm:   #EDE5D9;
  --blue-050:    #EFF5FF;
  --blue-100:    #DBE7FD;
  --blue-line:   #5B8FDB;   /* Grafiklinien auf Navy */
  --label-blue:  #1E40AF;   /* kleine Labels und Textlinks — ≥7,9:1 auf allen Flächen */
  --green-dark:  #166534;
  --green-deep:  #14532D;
  --green-050:   #DCFCE7;
  --orange-deep: #9A3412;   /* Orange als Textfarbe — 7,31:1 auf Weiß */
  --white:       #FFFFFF;

  /* 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;

  /* Raster */
  --shell:   1200px;
  --gutter:  20px;
  --radius:  14px;
  --radius-lg: 20px;

  --shadow-soft: 0 1px 2px rgba(10,22,40,.05), 0 6px 20px -8px rgba(10,22,40,.12);
  --shadow-lift: 0 2px 4px rgba(10,22,40,.06), 0 18px 40px -14px rgba(10,22,40,.22);
}

/* ── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { font-family: "Nunito", "Nunito Sans", system-ui, sans-serif; margin: 0; line-height: 1.14; letter-spacing: -0.015em; }
p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

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

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 12px 18px; border-radius: 10px; font-weight: 700; text-decoration: none;
  transition: top var(--dur-micro) var(--ease-out-strong);
}
.skip-link:focus { top: 12px; }

/* ── Raster ───────────────────────────────────────────────────────────── */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell-narrow { max-width: 800px; }

section { padding-block: 68px; }
section[id], main [id] { scroll-margin-top: 78px; }

/* ── Typo-Bausteine ───────────────────────────────────────────────────── */
h1 { font-weight: 800; font-size: clamp(2.25rem, 8.5vw, 3.1rem); }
h2 { font-weight: 800; font-size: clamp(1.75rem, 5.6vw, 2.5rem); }
h3 { font-weight: 700; font-size: 1.125rem; }

.eyebrow {
  font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--label-blue); margin-bottom: 10px;
}
.sec-head { margin-bottom: 34px; max-width: 46ch; }
.sec-sub { margin-top: 14px; color: var(--ink-2); font-size: 1.06rem; }
.sec-head-light .eyebrow { color: var(--blue-100); }

.tint { color: var(--blue-dark); }
.soft { font-weight: 600; color: var(--ink-2); }

.pill {
  display: inline-block;
  font-weight: 700; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); background: var(--blue-050);
  border: 1px solid var(--blue-100);
  padding: 7px 15px; border-radius: 999px;
}

.link-quiet { color: var(--ink-2); text-decoration: none; font-weight: 600; }
.link-quiet:hover { color: var(--ink); text-decoration: underline; }

.ico { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: transform var(--dur-micro) var(--ease-out-strong),
              background-color var(--dur-micro) linear,
              border-color var(--dur-micro) linear,
              box-shadow var(--dur-micro) linear;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px -6px rgba(37,99,235,.55); }
.btn-ghost   { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-lg      { padding: 17px 30px; font-size: 1.09rem; }
.btn-compact { padding: 11px 19px; font-size: .95rem; }
.btn-block   { display: flex; width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--blue-dark); box-shadow: 0 10px 24px -8px rgba(29,78,216,.6); }
  .btn-ghost:hover   { border-color: var(--navy); background: var(--paper); }
  .hero .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
}

/* ── Kopfleiste ───────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(1.25) blur(12px);
  -webkit-backdrop-filter: saturate(1.25) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  max-width: var(--shell); margin-inline: auto; padding: 10px var(--gutter);
  display: flex; align-items: center; gap: 16px;
}
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }

/* Logo-PNG hat 1920x1080 mit transparentem Rand; Motiv liegt bei 231,243 → 1693,829.
   Der Ausschnitt wird rein rechnerisch gesetzt, das Asset bleibt unangetastet. */
.brand-mark {
  --h: 27px;
  display: block;
  width:  calc(var(--h) * 2.4949);
  height: var(--h);
  background-image: url("../assets/logo/SMK_Logo_transparenter_Hintergrund.png");
  background-repeat: no-repeat;
  background-size: calc(var(--h) * 3.2764) auto;
  background-position: calc(var(--h) * -0.39418) calc(var(--h) * -0.41468);
}

.nav-wide { display: none; gap: 26px; }
.nav-wide a { text-decoration: none; font-weight: 600; color: var(--ink-2); font-size: .98rem; }
.nav-wide a:hover { color: var(--navy); }

.topbar-end { display: flex; align-items: center; gap: 14px; margin-left: 12px; }
.nav-login { display: none; font-size: .95rem; }
.topbar-end > .btn { display: none; }

.nav-drop { position: relative; }
.nav-drop > summary {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
}
.nav-drop > summary svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; }
.nav-drop-panel {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 70;
  min-width: 220px; display: grid;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lift); padding: 8px;
}
.nav-drop-panel a {
  text-decoration: none; font-weight: 600; color: var(--ink);
  padding: 12px 14px; border-radius: 10px;
}
.nav-drop-panel a:hover { background: var(--surface); }
.nav-drop-login { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 14px !important; color: var(--ink-2) !important; }

/* ── 1 · Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding-block: 40px 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-750) 100%);
  color: var(--white);
}
.hero-glow {
  position: absolute; top: -220px; left: 50%; translate: -50% 0;
  width: 900px; height: 620px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(37,99,235,.30) 0%, rgba(37,99,235,0) 72%);
}
.hero-grid { position: relative; display: grid; gap: 34px; }

.hero-copy > * + * { margin-top: 20px; }
.hero h1 { margin-top: 18px; color: var(--white); }
.hero .tint { color: var(--orange); }
.lede { font-size: 1.09rem; color: var(--ink-2); max-width: 52ch; }
.hero .lede { color: #DCE6F3; }

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

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px !important; }
.trust-row li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .97rem; color: #F7FAFC;
}
.trust-row .ico { color: var(--blue-line); }

/* Ghost-Button auf dunklem Grund: heller Rand, weisse Schrift. */
.hero .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }

.hero-figure { position: relative; margin: 0; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-lift);
  outline: 1px solid rgba(255,255,255,.22); outline-offset: -1px;
}
.hero-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 16%; }
.hero-tag {
  position: absolute; left: 16px; bottom: -14px;
  background: var(--white); border-radius: 12px;
  padding: 10px 16px; box-shadow: var(--shadow-lift);
  display: grid; line-height: 1.3;
}
.hero-tag strong { font-family: "Nunito", sans-serif; font-size: 1rem; color: var(--navy); }
.hero-tag span { font-size: .85rem; font-weight: 600; color: var(--ink-2); }

/* ── 2 · Kennst du dieses Gefühl? ─────────────────────────────────────── */
.feel { background: var(--white); padding-top: 78px; }
.feel-grid { display: grid; gap: 14px; }

/* Auf dem Handy als kompakte Reihe lesbar: vier schnelle Wiedererkennungs-
   Momente hintereinander statt vier bildschirmhoher Karten. */
.feel-card {
  display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: stretch;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms var(--ease-out-strong), box-shadow 200ms var(--ease-out-strong);
}
.feel-art { background: var(--paper); }
.feel-art img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 52% 42%; }
.feel-text { padding: 14px 16px; align-self: center; }
.feel-text h3 { color: var(--navy); font-size: 1.02rem; }
.feel-text p { margin-top: 6px; color: var(--ink-2); font-size: .94rem; line-height: 1.55; }

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

.feel-close {
  margin-top: 30px; font-size: 1.12rem; color: var(--ink-2);
  max-width: 62ch;
}
.feel-close strong { color: var(--navy); font-weight: 700; }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 26px; padding: 16px 18px;
  background: var(--surface); border-left: 3px solid var(--blue);
  border-radius: 10px;
  font-size: .97rem; color: var(--ink-2); max-width: 68ch;
}
.notice .ico { color: var(--blue-dark); margin-top: 2px; }
.notice-tight { margin-top: 20px; }

/* ── 3 · Netzwerk (Signature) ─────────────────────────────────────────── */
.web { background: var(--navy); color: var(--white); padding-block: 74px; }
.web-grid { display: grid; gap: 34px; align-items: center; }
.web-copy h2 { color: var(--white); }
.web-copy p { margin-top: 18px; color: #D6E2F4; font-size: 1.06rem; max-width: 48ch; }

.web-figure { width: 100%; max-width: 520px; margin-inline: auto; }
.web-figure svg { width: 100%; height: auto; overflow: visible; }

.web-lines path {
  stroke: var(--blue-line); stroke-width: 2.6;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
[data-inview] .web-lines path { animation: line-draw 900ms var(--ease-in-out-strong) forwards; }
.web-lines path:nth-child(1) { animation-delay: 0ms; }
.web-lines path:nth-child(2) { animation-delay: 80ms; }
.web-lines path:nth-child(3) { animation-delay: 160ms; }
.web-lines path:nth-child(4) { animation-delay: 240ms; }
.web-lines path:nth-child(5) { animation-delay: 320ms; }
@keyframes line-draw { to { stroke-dashoffset: 0; } }

.web-nodes circle { fill: var(--navy-750); stroke: var(--blue-line); stroke-width: 2; }
.web-dots circle { fill: var(--blue-line); }
.web-nodes circle, .web-dots circle {
  transform-box: fill-box; transform-origin: center;
  opacity: 0; scale: .95;
}
[data-inview] .web-nodes circle,
[data-inview] .web-dots circle { animation: node-pop 500ms var(--ease-out-strong) forwards; }
.web-nodes circle:nth-child(1), .web-dots circle:nth-child(1) { animation-delay: 300ms; }
.web-nodes circle:nth-child(2), .web-dots circle:nth-child(2) { animation-delay: 380ms; }
.web-nodes circle:nth-child(3), .web-dots circle:nth-child(3) { animation-delay: 460ms; }
.web-nodes circle:nth-child(4), .web-dots circle:nth-child(4) { animation-delay: 540ms; }
.web-nodes circle:nth-child(5), .web-dots circle:nth-child(5) { animation-delay: 620ms; }
@keyframes node-pop { to { opacity: 1; scale: 1; } }

/* Ohne JS (kein data-inview) bleibt alles sichtbar und fertig gezeichnet. */
html:not(.js) .web-lines path { stroke-dashoffset: 0; }
html:not(.js) .web-nodes circle,
html:not(.js) .web-dots circle { opacity: 1; scale: 1; }

.web-core { transform-box: fill-box; transform-origin: center; }
.web-core-ring { fill: none; stroke: rgba(91,143,219,.42); stroke-width: 1.6; }
.web-core-disc { fill: var(--blue); }
.web-core-label {
  fill: var(--white); font-family: "Nunito", sans-serif; font-weight: 800;
  font-size: 30px; text-anchor: middle;
}
.web-core > * { transform-box: fill-box; transform-origin: center; animation: breathe 4s ease-in-out infinite; }

@keyframes breathe { 0%, 100% { scale: 1; } 50% { scale: 1.04; } }

.web-labels text {
  fill: var(--white); font-family: "Nunito", sans-serif; font-weight: 700; font-size: 30px;
}

/* ── 4 · 10-Tage-Reise ────────────────────────────────────────────────── */
.trip { background: var(--surface); }
.trip-grid { position: relative; display: grid; gap: 20px; }

/* Der Faden liegt auf Höhe der Etappen-Marken. Der Anker ist ein fester
   Offset vom Kartenrand (20px Innenabstand + 12px Bildrand + halbe Marke),
   damit die Linie bei jeder Spaltenbreite exakt sitzt. */
.trip-thread { display: none; }

.trip-card {
  position: relative; z-index: 1;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px 24px;
  box-shadow: var(--shadow-soft);
}
.trip-art { position: relative; border-radius: 10px; overflow: hidden; background: var(--paper); margin-bottom: 18px; }
.trip-art img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 34%; }
.trip-num {
  position: absolute; top: 12px; left: 12px;
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--blue); color: var(--white);
  font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1rem;
  box-shadow: 0 2px 10px -2px rgba(10,22,40,.45);
}
.trip-step { font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.16rem; color: var(--navy); }
.trip-days {
  margin-top: 8px;
  font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--label-blue);
}
.trip-body { margin-top: 10px; color: var(--ink-2); font-size: 1rem; }

/* ── 5 · Inhalte ──────────────────────────────────────────────────────── */
.stuff { background: var(--white); }
.rhythm {
  display: grid; gap: 26px;
  background: var(--paper); border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg); overflow: hidden;
}
.rhythm-art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.rhythm-copy { padding: 4px 22px 28px; }
.rhythm-copy h2 { font-size: clamp(1.45rem, 4.6vw, 1.95rem); color: var(--navy); }
.wide-only { display: none; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; background: var(--white);
}
.chip-know { color: var(--navy); border: 1px solid var(--blue-100); }
.chip-know .ico { color: var(--blue-dark); }
.chip-do { color: var(--green-dark); border: 1px solid #93DFB0; }
.chip-do .ico { color: var(--green-dark); fill: currentColor; stroke-width: 1.2; }
.rhythm-note { margin-top: 18px; color: var(--ink-2); font-size: 1rem; }

.extras-grid { display: grid; gap: 18px; margin-top: 22px; }
.extra {
  display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-soft);
}
.extra-art { border-radius: 10px; overflow: hidden; background: var(--paper); }
.extra-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.tagline {
  font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-deep);
}
.extra-text h3 { margin-top: 5px; color: var(--navy); font-size: 1.06rem; line-height: 1.32; }

/* ── 6 · 10-Tage-Programm ─────────────────────────────────────────────── */
.plan { background: var(--surface); }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.plan-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 12px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms var(--ease-out-strong), box-shadow 200ms var(--ease-out-strong);
}
.plan-art { border-radius: 10px; overflow: hidden; background: var(--paper); }
.plan-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.plan-day {
  margin-top: 12px; font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--label-blue);
}
.plan-card h3 { margin-top: 3px; color: var(--navy); font-size: 1rem; line-height: 1.3; }

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

.inline-cta {
  margin-top: 30px; display: grid; gap: 14px; justify-items: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.inline-cta p { font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); }

/* ── Einwand-Kästen (Muster aus visual-studio übernommen) ─────────────── */
.objection {
  margin-top: 28px;
  display: grid; gap: 0;
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.objection-pic { background: var(--paper); }
.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(--navy); margin-bottom: 6px;
}
.objection-a { color: var(--ink-2); font-size: 1rem; }
.objection-flat { border-color: var(--line); box-shadow: none; }

@media (min-width: 768px) {
  .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; }
}

/* ── 7 · Wer dich begleitet ───────────────────────────────────────────── */
.who { background: var(--white); }
.who-grid { display: grid; gap: 28px; align-items: start; }
.who-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-soft); }
/* Engerer Ausschnitt als im Hero — dasselbe Foto, anderer Blick. */
.who-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 22%;
  scale: 1.16; transform-origin: 50% 26%;
}
.who-copy h2 { color: var(--navy); }
.who-body { margin-top: 16px; color: var(--ink-2); font-size: 1.05rem; }

/* ── 8 · Angebot ──────────────────────────────────────────────────────── */
.deal { background: var(--navy); color: var(--white); }
.deal .sec-head { margin-inline: auto; text-align: center; max-width: none; }
.deal h2 { color: var(--white); }

.deal-card {
  display: grid; gap: 0;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
  max-width: 980px; margin-inline: auto;
}
.deal-body { padding: 26px 22px; }
.deal-art { border-radius: 12px; overflow: hidden; background: var(--paper); margin-bottom: 24px; }
.deal-art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 46%; }
.have-list { display: grid; gap: 14px; }
.have-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; font-weight: 600; }
.tick {
  display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto; margin-top: 1px;
  border-radius: 50%; background: var(--green-050);
  box-shadow: inset 0 0 0 1.5px rgba(34,197,94,.55);
}
.tick svg { width: 16px; height: 16px; fill: none; stroke: var(--green-deep); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.deal-buy { padding: 26px 22px 30px; background: var(--surface); border-top: 1px solid var(--line); }
.price { font-family: "Nunito", sans-serif; font-weight: 800; color: var(--navy); }
.price-num { font-size: clamp(2.5rem, 9vw, 3.2rem); line-height: 1; letter-spacing: -0.02em; }
.price-note { margin-top: 6px; font-weight: 600; color: var(--ink-2); font-size: .98rem; }

.legal {
  margin-top: 22px; padding: 18px 20px;
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: 12px;
  font-size: .97rem; line-height: 1.6; color: var(--ink);
}
.deal-buy .btn { margin-top: 20px; }

.buy-facts { display: grid; gap: 10px; margin-top: 18px; }
.buy-facts li {
  position: relative; padding-left: 22px;
  font-size: .93rem; color: var(--ink-2);
}
.buy-facts li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
}
.buy-facts a { color: var(--label-blue); font-weight: 700; }

/* ── 9 · FAQ ──────────────────────────────────────────────────────────── */
.ask { background: var(--white); }
.ask-list { display: grid; gap: 12px; }
.ask-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.ask-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy);
  list-style: none;
}
.ask-item > summary:hover { background: var(--surface); }
.chev { display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto; color: var(--blue-dark); }
.chev svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform 250ms var(--ease-out-strong); }
.ask-item[open] .chev svg { transform: rotate(180deg); }

.ask-panel { display: grid; grid-template-rows: 1fr; }
.ask-panel-in { overflow: hidden; min-height: 0; }
.ask-panel-in p { padding: 0 20px 20px; color: var(--ink-2); font-size: 1rem; }
.ask-panel-in a { color: var(--label-blue); font-weight: 700; }

/* Mit JS: weiche Grid-Transition (interruptible). Ohne JS: normales details-Verhalten. */
html.js .ask-panel { grid-template-rows: 0fr; transition: grid-template-rows 250ms var(--ease-out-strong); }
html.js .ask-item.is-open .ask-panel { grid-template-rows: 1fr; }

/* ── 10 · Abschluss ───────────────────────────────────────────────────── */
.finale { position: relative; overflow: hidden; padding-block: 84px; isolation: isolate; }
.finale-art {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
}
.finale-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
              rgba(10,22,40,.93) 0%,
              rgba(10,22,40,.86) 42%,
              rgba(10,22,40,.93) 100%);
}
.finale-in { text-align: center; color: var(--white); }
.finale-in h2 { color: var(--white); text-shadow: 0 2px 14px rgba(4,10,20,.65); }
.finale-in p {
  margin: 16px auto 28px; max-width: 42ch; font-size: 1.09rem; color: var(--white);
  text-shadow: 0 1px 10px rgba(4,10,20,.6);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-foot { background: var(--navy); color: var(--white); padding-block: 44px 34px; }
.foot-grid { display: grid; gap: 26px; }
.foot-brand { display: grid; gap: 14px; }
.brand-mark-foot { --h: 30px; filter: brightness(0) invert(1); opacity: .95; }
.foot-brand p { color: #D6E2F4; font-size: .98rem; max-width: 40ch; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.foot-links a { color: var(--white); font-weight: 600; font-size: .97rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.foot-links a:hover { border-bottom-color: var(--white); }
.foot-legal {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18);
  color: #C7D6EC; font-size: .92rem;
}

/* ── Mobile Kauf-Leiste ───────────────────────────────────────────────── */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px -16px rgba(10,22,40,.5);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out-strong);
}
.dock[hidden] { display: none; }
.dock.is-up { transform: translateY(0); }
.dock-in {
  max-width: var(--shell); margin-inline: auto;
  padding: 10px var(--gutter); display: flex; align-items: center; gap: 14px;
}
.dock-price { display: grid; line-height: 1.15; }
.dock-price strong { font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.32rem; color: var(--navy); }
.dock-price span { font-size: .78rem; font-weight: 600; color: var(--ink-2); }
.dock .btn { margin-left: auto; flex: 0 1 auto; }
body.has-dock { padding-bottom: 76px; }

/* ── Scroll-Reveals ───────────────────────────────────────────────────── */
[data-reveal] {
  transition: opacity 600ms var(--ease-out-strong), transform 600ms var(--ease-out-strong);
  transition-delay: calc(var(--i, 0) * 60ms);
}
[data-reveal]:not([data-inview]) { opacity: 0; transform: translateY(20px); }

/* ── Hero-Entrance (CSS-only, kein JS-Timing) ─────────────────────────── */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-in-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); }
.hero-figure.rise { animation-name: rise-in-photo; }

/* =========================================================================
   Breakpoints
   ========================================================================= */

@media (min-width: 560px) {
  .cta-row .btn { flex: 0 1 auto; }
  .extras-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extra { grid-template-columns: 1fr; }
  .extra-art img { aspect-ratio: 16 / 10; }
  .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .inline-cta { grid-template-columns: 1fr auto; align-items: center; justify-items: stretch; }
  .inline-cta .btn { justify-self: end; }
}

@media (min-width: 620px) {
  .feel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .feel-card { grid-template-columns: minmax(0, 1fr); }
  .feel-art img { height: auto; aspect-ratio: 16 / 9; object-position: 50% 45%; }
  .feel-text { padding: 18px 20px 22px; align-self: start; }
  .feel-text h3 { font-size: 1.125rem; }
  .feel-text p { font-size: 1rem; margin-top: 8px; }
}

@media (min-width: 768px) {
  :root { --gutter: 32px; }
  body { font-size: 17.5px; }
  section { padding-block: 88px; }

  .hero { padding-block: 56px 76px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
  .hero-photo img { aspect-ratio: 4 / 5; object-position: 50% 14%; }
  .hero-tag { left: auto; right: 20px; bottom: -18px; }

  .feel-grid { gap: 22px; }

  .web-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .web-figure { max-width: none; }

  .trip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .trip-thread {
    display: block; position: absolute; z-index: 2;
    top: 49px; height: 3px; border-radius: 3px;
    left: 51px; right: calc((100% - 44px) / 3 - 51px);
    background: linear-gradient(90deg, var(--blue) 0%, rgba(37,99,235,.55) 100%);
    transform: scaleX(0); transform-origin: left;
  }
  [data-inview] > .trip-thread { animation: thread-x 900ms var(--ease-in-out-strong) forwards; }
  @keyframes thread-x { to { transform: scaleX(1); } }
  html:not(.js) .trip-thread { transform: none; }

  .rhythm { grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
  .rhythm-art { height: 100%; }
  .rhythm-art img { height: 100%; aspect-ratio: auto; min-height: 340px; }
  .rhythm-copy { padding: 34px 36px; }
  .wide-only { display: inline; }

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

  .who-grid { grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
  .who-figure img { aspect-ratio: 4 / 5; object-position: 50% 16%; }

  .deal-card { grid-template-columns: 1.02fr .98fr; }
  .deal-body { padding: 34px 34px 38px; }
  .deal-buy { padding: 40px 38px; border-top: 0; border-left: 1px solid var(--line); }

  .foot-grid { grid-template-columns: 1fr auto; align-items: center; }
  .foot-links { justify-content: flex-end; }

  .dock { display: none !important; }
  body.has-dock { padding-bottom: 0; }
}

@media (min-width: 1000px) {
  .brand-mark { --h: 31px; }
  .nav-wide { display: flex; }
  .nav-login { display: inline; }
  .topbar-end > .btn { display: inline-flex; }
  .nav-drop { display: none; }

  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; }
  h1 { font-size: clamp(2.9rem, 4.1vw, 3.5rem); }
  .lede { font-size: 1.15rem; }
  .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .feel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feel-text { padding: 20px 20px 24px; }

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

/* =========================================================================
   Reduced Motion — Bewegung aus, Inhalt bleibt sichtbar
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .web-core > * { animation: none !important; scale: 1 !important; }
  .web-lines path { stroke-dashoffset: 0 !important; }
  .web-nodes circle, .web-dots circle { opacity: 1 !important; scale: 1 !important; }
  .trip-thread { transform: none !important; }
  [data-reveal]:not([data-inview]) { opacity: 1; transform: none; }
}
