/* ══════════════════════════════════════════════════════════════════
   vTzR.de — Design-Entwurf "Karteikarte" (index3.html)
   Leitmotiv: die Registerkarte/Karteikarte einer Praxisablage — jede
   Sektion trägt eine Reiter-Lasche wie ein Aktenordner, der Hero zeigt
   einen echten Wochenstreifen, der sich Nacht für Nacht in Rechnungen
   verwandelt. Gleiche Marke wie index.html: Lime #c8db00 + Oliv #5f6b2e,
   aber invertierte Typografie (fette Sans-Titel / Serifen-Fließtext) und
   eckige Karteikarten-Optik statt organischer Rundungen.
   Nur System-Schriften, keine externen Ressourcen (CSP: style-src 'self').
   ══════════════════════════════════════════════════════════════════ */

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

:root {
  --lime:      #c8db00;
  --lime-deep: #9fae00;
  --lime-soft: #eef4c6;
  --olive:     #5f6b2e;
  --olive-900: #333d1c;
  --ink:       #23261a;
  --body:      #4c5040;
  --muted:     #7c8069;
  --paper:     #fbfbf4;
  --paper-dim: #f1f1e3;
  --card:      #ffffff;
  --night:     #202415;
  --night-2:   #333d1c;
  --line:      rgba(51,61,28,.16);
  --line-soft: rgba(51,61,28,.07);

  --shadow-sm: 0 3px 12px rgba(51,61,28,.07);
  --shadow:    0 12px 30px rgba(51,61,28,.10);

  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif:   "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --mono:    ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", "DejaVu Sans Mono", monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--paper);
  background-image: repeating-linear-gradient(to bottom, transparent 0 42px, var(--line-soft) 42px 43px);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }

.container        { max-width: 1120px; margin: 0 auto; padding: 0 1.6rem; }
.container--mid   { max-width: 900px;  margin: 0 auto; padding: 0 1.6rem; }
.container--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 1.6rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.1rem 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.1rem 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.text-center { text-align: center; }
.mt-xs { margin-top: .4rem; }
.mt-sm { margin-top: .9rem; }
.mt-md { margin-top: 1.6rem; }
.mt-lg { margin-top: 2.6rem; }

/* ── Reiter-Lasche: das wiederkehrende Signatur-Element ─────────── */
.tab {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--display); font-weight: 800; font-size: .72rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--olive-900); background: var(--lime);
  padding: .42rem 1.05rem .38rem;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.tab--ghost { background: var(--paper-dim); color: var(--olive); }
.tab--on-dark { background: var(--lime); color: var(--olive-900); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700;
  border-radius: .3rem; cursor: pointer; text-align: center; line-height: 1.2;
  transition: transform .14s ease, box-shadow .2s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--olive-900); color: var(--lime); padding: .68rem 1.4rem; font-size: .92rem; }
.btn--primary:hover { background: var(--ink); }
.btn--solid { background: var(--lime); color: var(--olive-900); padding: .95rem 2.1rem; font-size: 1.05rem; box-shadow: var(--shadow); }
.btn--solid:hover { background: var(--lime-deep); }
.btn--ghost { background: transparent; color: var(--olive-900); border: 1.5px solid var(--olive-900); padding: .88rem 1.9rem; font-size: 1rem; }
.btn--ghost:hover { background: var(--olive-900); color: var(--lime); }
.btn--on-dark { background: var(--lime); color: var(--olive-900); padding: .95rem 2.1rem; font-size: 1.05rem; }
.btn--on-dark:hover { background: #fff; }
.btn--dark { background: var(--olive-900); color: var(--lime); padding: .95rem 2.1rem; font-size: 1.05rem; box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--ink); }
.btn--disabled { background: var(--paper-dim); color: var(--olive); border: 1.5px dashed var(--line); padding: .88rem 1.9rem; font-size: 1rem; cursor: not-allowed; }
.btn--disabled:hover { transform: none; background: var(--paper-dim); color: var(--olive); }
.btn__soon { margin-left: .55rem; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--paper); background: var(--olive); padding: .15rem .45rem; border-radius: .2rem; vertical-align: middle; }
.btn--sm { padding: .68rem 1.4rem; font-size: .92rem; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,244,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; padding: .95rem 1.6rem; max-width: 1120px; margin: 0 auto; }
.nav__logo { font-family: var(--display); font-size: 1.22rem; font-weight: 800; color: var(--olive-900); display: inline-flex; align-items: center; gap: .5rem; }
.nav__leaf { width: 1.1rem; height: 1.1rem; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__link { font-family: var(--display); font-size: .88rem; font-weight: 700; color: var(--olive-900); opacity: .78; }
.nav__link:hover { opacity: 1; color: var(--olive); }
/* ── Mobil-Menü (reines CSS, kein JS) ────────────────────────── */
.nav__check { display: none; }
.nav__burger { display: none; }
@media (max-width: 760px) {
  .nav__check { display: block; position: absolute; width: 1px; height: 1px;
               opacity: 0; pointer-events: none; }
  .nav__inner { flex-wrap: wrap; gap: .7rem; padding: .8rem 1.1rem; }
  .nav__inner > .btn { padding: .55rem 1rem; font-size: .85rem; margin-left: auto; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 40px; padding: 9px 10px; margin-right: -.4rem;
    border-radius: .5rem; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .nav__burger span {
    display: block; height: 2px; border-radius: 2px; background: var(--olive-900);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav__check:checked ~ .nav__inner .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__check:checked ~ .nav__inner .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__check:checked ~ .nav__inner .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__check:focus-visible ~ .nav__inner .nav__burger { outline: 2px solid var(--olive); outline-offset: 2px; }

  .nav__links {
    display: none; order: 3; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 0; margin-top: .1rem; border-top: 1px solid var(--line);
    max-height: calc(100vh - 5rem); overflow-y: auto;
  }
  .nav__check:checked ~ .nav__inner .nav__links { display: flex; }
  .nav__link {
    padding: .9rem .2rem; font-size: 1rem; opacity: 1;
    border-bottom: 1px solid var(--line);
  }
  .nav__links .nav__link:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nav__burger span { transition: none; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero { padding: 4.4rem 0 4.8rem; }
.hero__inner { max-width: 1120px; margin: 0 auto; padding: 0 1.6rem; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }

.announce {
  display: inline-flex; align-items: center; gap: .6rem; max-width: 100%;
  font-family: var(--display); font-size: .88rem; font-weight: 700; color: var(--olive-900);
  background: var(--paper-dim); border: 1px solid var(--line);
  padding: .5rem 1.1rem; margin-bottom: 1.6rem;
}
.announce:hover { border-color: var(--olive); }
.announce__badge { flex-shrink: 0; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); background: var(--olive-900); padding: .18rem .55rem; }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-size: .84rem; font-weight: 700; color: var(--olive); margin-bottom: 1.1rem; }

.hero h1 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem); line-height: 1.16; margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--olive); background: linear-gradient(transparent 62%, var(--lime-soft) 0); }
.hero__sub { font-family: var(--serif); font-size: 1.15rem; color: var(--body); max-width: 34rem; margin-bottom: 2rem; line-height: 1.8; }
.hero__cta-row { display: flex; align-items: center; gap: .7rem 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero__howto { margin: -.9rem 0 1.4rem; font-size: .9rem; }
.hero__howto a {
  color: var(--olive); font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--lime);
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.hero__howto a:hover { color: var(--olive-900); }
.hero__reassure {
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: 1.4rem; padding-left: .3rem;
  font-family: var(--display); font-size: .82rem; font-weight: 700; color: var(--muted);
}
.hero__reassure .dot { color: var(--olive); }

/* ── Wochenstreifen: Signatur-Element im Hero ───────────────────── */
.weekstrip { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.weekstrip__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.2rem; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
.weekstrip__days { display: flex; }
.weekstrip__day {
  flex: 1; padding: 1.3rem .5rem 1.1rem; text-align: center;
  border-right: 1px solid var(--line);
}
.weekstrip__day:last-child { border-right: none; }
.weekstrip__day-label { font-family: var(--mono); font-size: .74rem; color: var(--muted); margin-bottom: .8rem; }
.weekstrip__dot {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; margin: 0 auto .55rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.weekstrip__day--done .weekstrip__dot { background: var(--olive-900); color: var(--lime); }
.weekstrip__day--today .weekstrip__dot {
  background: var(--lime); color: var(--olive-900);
  box-shadow: 0 0 0 4px var(--lime-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .weekstrip__day--today .weekstrip__dot { animation: pulse-ring 2.4s ease-in-out infinite; }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 4px var(--lime-soft); }
  50%      { box-shadow: 0 0 0 7px rgba(200,219,0,.18); }
}
.weekstrip__day--open .weekstrip__dot { border: 1.5px solid var(--line); color: transparent; }
.weekstrip__tag { font-family: var(--mono); font-size: .62rem; color: var(--olive); }
.weekstrip__day--open .weekstrip__tag { color: var(--muted); opacity: .6; }
.weekstrip__caption { padding: .95rem 1.2rem 1.1rem; font-family: var(--serif); font-style: italic; font-size: .88rem; color: var(--muted); border-top: 1px solid var(--line); }

/* ── Section base ────────────────────────────────────────────── */
section { padding: 5rem 1.6rem; position: relative; }
.section--dim { background: var(--paper-dim); }
.section--tight { padding-top: 2.4rem; padding-bottom: 2.4rem; }
.section--dark {
  background: linear-gradient(165deg, var(--night) 0%, var(--night-2) 60%, #414d24 100%);
  color: #eef1e2;
}
.section--dark .section-head__title { color: #fbfdf2; }
.section--dark .section-head__sub { color: rgba(238,241,226,.78); }

.section-head { margin-bottom: 2.8rem; }
.section-head.text-center { text-align: center; }
.section-head.text-center .tab { }
.section-head__title { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.3rem); margin: .9rem 0 .6rem; line-height: 1.2; }
.section-head__sub { font-family: var(--serif); color: var(--muted); font-size: 1.05rem; max-width: 620px; line-height: 1.75; }
.section-head.text-center .section-head__sub { margin: 0 auto; }

/* ── Zielgruppen: eckige Karteikarten-Reiter ────────────────────── */
.audience-label { font-family: var(--display); font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1.2rem; }
.audience-pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.audience-pill {
  font-family: var(--display); font-size: .86rem; font-weight: 700; color: var(--olive-900);
  background: var(--card); border: 1px solid var(--line); padding: .42rem 1rem;
}

/* ── Karten: Karteikarte mit Reiter-Lasche ───────────────────────── */
.card { position: relative; margin-top: 1.3rem; background: var(--card); border: 1px solid var(--line); padding: 1.9rem 1.7rem 1.7rem; transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card__tab {
  position: absolute; top: -1.05rem; left: 1.3rem;
  width: 2.6rem; height: 1.9rem; display: flex; align-items: center; justify-content: center;
  background: var(--lime); font-size: 1.05rem;
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}
.card__title { font-family: var(--display); font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: .55rem; }
.card__text  { font-family: var(--serif); font-size: .96rem; color: var(--body); line-height: 1.75; }

/* ── Optionale Funktionen: Karteikarten-Zeilen mit Datumsstempel ─── */
.regbox { border: 1px solid var(--line); background: var(--card); }
.regrow {
  display: grid; grid-template-columns: 2.4rem 1fr auto; gap: 1.1rem; align-items: start;
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line);
}
.regrow:last-child { border-bottom: none; }
.regrow__icon { font-size: 1.35rem; line-height: 1.4; }
.regrow__title { font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--ink); margin-bottom: .4rem; }
.regrow__text { font-family: var(--serif); color: var(--body); font-size: .95rem; line-height: 1.7; }
.regrow__stamp {
  font-family: var(--mono); font-size: .72rem; color: var(--olive-900); white-space: nowrap;
  border: 1px solid var(--olive); padding: .3rem .65rem; margin-top: .1rem;
}
@media (max-width: 640px) {
  .regrow { grid-template-columns: 1.8rem 1fr; }
  .regrow__stamp { grid-column: 2; margin-top: .6rem; }
}

/* ── Hinweis-Kasten ──────────────────────────────────────────────── */
.limit-notice {
  margin-top: 2rem; padding: 1.1rem 1.5rem;
  background: var(--lime-soft); border: 1px solid var(--line);
  font-family: var(--serif); font-size: .93rem; color: var(--body); line-height: 1.7; text-align: center;
}
.limit-notice strong { font-family: var(--display); color: var(--olive-900); }

/* ── 2026 Aktion: Registerkarten-Zeitleiste ──────────────────────── */
.regtimeline { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 2.6rem auto 1.6rem; border-top: 1px solid rgba(238,241,226,.22); }
.regmonth { flex: 1 1 120px; padding: 1.4rem .8rem 0; text-align: center; position: relative; }
.regmonth .tab { margin-bottom: .8rem; }
.regmonth__title { font-family: var(--display); font-weight: 700; font-size: .84rem; color: #eef1e2; line-height: 1.35; }
.regmonth--next .tab { background: transparent; border: 1.5px dashed var(--lime); color: var(--lime); clip-path: none; padding: .4rem 1rem; }
.regmonth--next .regmonth__title { color: var(--lime); }
.aktion-hint { text-align: center; margin-top: 1rem; }
.aktion-hint a { font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--lime); border-bottom: 1px solid rgba(200,219,0,.4); padding-bottom: 1px; }

/* ── Teaser-Zeilen (Sicherheit / Preise) ──────────────────────────── */
.teaser { display: flex; align-items: center; gap: 1.5rem; background: var(--card); border: 1px solid var(--line); padding: 1.5rem 1.8rem; position: relative; }
.teaser .tab { position: absolute; top: -.95rem; left: 1.5rem; }
.teaser__icon { width: 2.8rem; height: 2.8rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: var(--paper-dim); }
.teaser__body { flex: 1; padding-top: .3rem; }
.teaser__badge { font-family: var(--display); font-weight: 800; font-size: .82rem; color: var(--olive-900); margin-bottom: .5rem; }
.teaser__text { font-family: var(--serif); font-size: .94rem; color: var(--body); line-height: 1.7; }
.teaser__link { flex-shrink: 0; font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--olive-900); white-space: nowrap; padding: .55rem 1.1rem; border: 1.5px solid var(--olive-900); }
.teaser__link:hover { background: var(--olive-900); color: var(--lime); }
@media (max-width: 680px) {
  .teaser { flex-direction: column; align-items: flex-start; }
  .teaser__link { align-self: flex-start; }
}

/* ── So funktioniert es: horizontale Reiter-Schritte ─────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 1.35rem; left: calc(16.66% + .5rem); width: calc(66.66% - 1rem); height: 1px;
  background: var(--line);
}
.step__num { position: relative; z-index: 1; display: inline-flex; margin-bottom: 1.1rem; }
.step__title { font-family: var(--display); font-size: 1.08rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.step__text  { font-family: var(--serif); font-size: .95rem; color: var(--muted); line-height: 1.75; }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

/* ── Ablauf-Pipeline: illustrierter Weg Termin → Zahlungseingang ─── */
.flow__stages { display: flex; align-items: stretch; gap: 0; }

.flow__stage { flex: 1; min-width: 0; padding: 1.6rem 1rem 1.4rem; }
.flow__stage-badge {
  display: inline-block; font-family: var(--display); font-size: .6rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  border: 1.5px dashed var(--line); padding: .15rem .5rem; margin-bottom: .55rem;
}
.flow__stage-title { font-family: var(--display); font-weight: 800; font-size: .92rem; color: var(--ink); line-height: 1.3; }
.flow__stage-text { font-family: var(--serif); font-size: .83rem; color: var(--body); line-height: 1.6; margin-top: .6rem; }

.flow__rows { margin-top: .85rem; display: flex; flex-direction: column; gap: .45rem; }
.flow__row {
  display: flex; align-items: center; gap: .4rem;
  background: var(--paper-dim); border: 1px solid var(--line); padding: .38rem .5rem;
}
.flow__row-dot {
  width: 1.05rem; height: 1.05rem; border-radius: 50%; flex-shrink: 0;
  background: var(--olive-900); color: var(--lime); font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.flow__row-body { min-width: 0; }
.flow__row-name {
  font-family: var(--serif); font-size: .8rem; color: var(--body);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.flow__row-time { font-family: var(--mono); font-size: .62rem; color: var(--muted); margin-top: .1rem; }
.flow__row--pdf {
  font-family: var(--mono); font-size: .74rem; color: var(--olive-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.flow__row--pdf::before { content: '📄'; font-size: .8rem; flex-shrink: 0; }

.flow__confirm {
  margin-top: 1rem; font-family: var(--display); font-weight: 700; font-size: .74rem;
  color: var(--olive-900); background: var(--lime-soft); border: 1px solid var(--line);
  padding: .5rem .6rem; line-height: 1.5;
}

.flow__arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; flex: 0 0 3.4rem; }
.flow__arrow-label { font-family: var(--serif); font-style: italic; font-size: .64rem; color: var(--muted); text-align: center; max-width: 5.2rem; line-height: 1.3; }
.flow__arrow-line { display: block; width: 100%; height: 2px; background: var(--olive); position: relative; }
.flow__arrow-line::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  border-style: solid; border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--olive);
}

@media (max-width: 900px) {
  .flow__stages { flex-direction: column; }
  .flow__arrow { flex-direction: row; flex-basis: auto; gap: .7rem; padding: .3rem 0; justify-content: center; }
  .flow__arrow-label { order: -1; white-space: nowrap; max-width: none; }
  .flow__arrow-line { width: 2px; height: 1.6rem; flex-shrink: 0; }
  .flow__arrow-line::after {
    right: auto; top: auto; bottom: -1px; left: 50%; transform: translateX(-50%);
    border-width: 7px 5px 0 5px; border-color: var(--olive) transparent transparent transparent;
  }
}

/* ── Ablauf-Karten als Öffner für Detail-Modals ──────────────────── */
button.flow__stage {
  display: block; width: 100%; text-align: left; font: inherit; color: inherit;
  cursor: pointer; appearance: none; -webkit-appearance: none;
}
button.flow__stage:focus-visible { outline: 2px solid var(--olive-900); outline-offset: 3px; }
.flow__stage-more {
  display: block; margin-top: .85rem; font-family: var(--display); font-weight: 700;
  font-size: .74rem; color: var(--olive-900);
}

.stage-modal {
  max-width: 34rem; width: calc(100% - 2rem); padding: 2.1rem 1.9rem 1.9rem;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--body);
}
.stage-modal::backdrop { background: rgba(32,36,21,.55); }
.stage-modal__form { position: absolute; top: 1rem; right: 1rem; }
.stage-modal__close {
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  background: var(--paper-dim); border: 1px solid var(--line); color: var(--ink);
  font-size: .9rem; cursor: pointer;
}
.stage-modal__close:hover { background: var(--lime-soft); }
.stage-modal__icon { position: static; margin-bottom: 1rem; clip-path: none; width: 2.6rem; height: 1.9rem; }
.stage-modal__title { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: .9rem; }
.stage-modal__text { font-family: var(--serif); font-size: .96rem; line-height: 1.75; }
.stage-modal__text + .stage-modal__text { margin-top: 1rem; }
.stage-modal__text a { color: var(--olive-900); }

@media (max-width: 680px) {
  .stage-modal { max-height: calc(100% - 2rem); }
}

/* ── Vertrauen: quadratische Register-Icons ──────────────────────── */
.trust-item { text-align: center; }
.trust-item__icon { width: 2.9rem; height: 2.9rem; margin: 0 auto 1rem; background: var(--lime-soft); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.trust-item__title { font-family: var(--display); font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.trust-item__text  { font-family: var(--serif); font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.35rem 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--olive); font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-family: var(--serif); margin-top: 1rem; font-size: .96rem; color: var(--body); line-height: 1.8; max-width: 44rem; }
.faq details p strong, .faq details p em { color: var(--ink); }

/* ── Kontakt ─────────────────────────────────────────────────────── */
.contact-box { max-width: 30rem; }
.contact-box__text { font-family: var(--display); font-weight: 700; font-size: .92rem; color: rgba(238,241,226,.7); margin-bottom: .5rem; }
.contact-box__email { font-family: var(--display); font-size: 1.55rem; font-weight: 800; color: #fff; display: inline-block; margin: .7rem 0 1.6rem; border-bottom: 2px solid var(--lime); }
.contact-box__hint { font-family: var(--display); font-size: .8rem; color: rgba(238,241,226,.55); margin-top: 1rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer { background: var(--night); color: rgba(238,241,226,.6); text-align: center; padding: 2.6rem 1.6rem; font-size: .88rem; }
footer strong { color: #fff; font-family: var(--display); }
footer a { color: var(--lime); font-family: var(--display); font-weight: 700; }
footer a:hover { text-decoration: underline; }
.footer__note { font-family: var(--display); font-size: .78rem; opacity: .65; margin-top: .5rem; }

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .weekstrip { max-width: 30rem; margin-inline: auto; }
  .hero__reassure { max-width: 30rem; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  section { padding: 3.4rem 1.2rem; }
  .hero { padding: 3rem 0 3.2rem; }
  .weekstrip__day-label { font-size: .64rem; }
}
