/* ═══════════════════════════════════════════════════════════
   InnerGlow — Landingpage
   style-innerglow.css · Stand 2026
   ─────────────────────────────────────────────────────────
   Palette: Altrosa · Pastell · Weiß · Elegant
   Mobile First — alle Breakpoints von unten nach oben
   WCAG AA — alle Textkombinationen geprüft
   ─────────────────────────────────────────────────────────
   1.  Tokens
   2.  Reset & Base
   3.  Layout
   4.  Scroll Reveal
   5.  Typografie
   6.  Buttons
   7.  Navigation
   8.  Hero
   9.  Problem-Bereich
   10. Für wen — Karten
   11. Fullbild / Zitat
   12. Was ist InnerGlow?
   13. Ablauf
   14. FAQ
   15. CTA
   16. Footer
   17. Scroll-to-top
   18. Responsive (Tablet → Desktop)
═══════════════════════════════════════════════════════════ */

/* ─── 1. Tokens ─────────────────────────────────────────── */
:root {
  /* Hintergründe — sehr hell, kein Bereich dunkel */
  --white:    #FFFFFF;
  --snow:     #FEFAFA;      /* Seitenhintergrund         */
  --petal-0:  #FDF5F5;      /* Sektionsalternative       */
  --petal-1:  #FAE9EA;      /* Warmes Pastell-Rosa       */
  --petal-2:  #F4D4D6;      /* Borders, stärker          */
  --petal-3:  #E8B8BC;      /* Akzent-Borders            */

  /* Altrosa — dekorativ */
  --rose-pale: #ECC8CB;     /* Chips, Icon-BG            */
  --rose-deco: #D4969C;     /* Linien, dekorative Icons  */
  /* WICHTIG: --rose-deco nur für Dekoration, nicht für Text */

  /* Altrosa — semantisch (Text & Links) */
  --rose:      #8A5A62;     /* Akzentfarbe Text/Links    5.65:1 auf white */
  --rose-hover:#6E4650;     /* Hover                                       */

  /* Text — warm, nie hartes Schwarz */
  --ink:       #2C1A1E;     /* Headlines                16.49:1 auf white  */
  --body:      #5A3A40;     /* Fließtext                 9.93:1 auf white  */
  --muted:     #7A5A62;     /* Hilfstexte, Captions      6.06:1 auf white  */

  /* Schrift */
  --f: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1080px;
  --r:   0px;               /* eckig — kein border-radius */
}

/* ─── 2. Reset & Base ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f);
  background: var(--snow);
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* Screenreader-only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── 3. Layout ─────────────────────────────────────────── */
.w {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;   /* Mobile: schmaleres Padding */
}

/* ─── 4. Scroll Reveal ──────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* Kein Reveal bei reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
}

/* ─── 5. Typografie ─────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .75rem;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--rose-deco);
  flex-shrink: 0;
  opacity: .6;
}

/* Mobile-first Schriftgrößen */
h1 {
  font-size: clamp(32px, 8vw, 62px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
}

h2 {
  font-size: clamp(22px, 5.5vw, 38px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--ink);
}

h3 {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--ink);
}

.sh {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.sh h2 { margin: .5rem 0 .9rem; }

.sh p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── 6. Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 14px 28px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  min-height: 44px;   /* Touch-Target WCAG 2.5.5 */
  transition: background .18s, color .18s, border-color .18s, transform .14s;
  text-align: center;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--rose-hover); transform: translateY(-1px); }
.btn-dark:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

.btn-rose {
  background: var(--rose);
  color: var(--white);
}
.btn-rose:hover { background: var(--rose-hover); transform: translateY(-1px); }
.btn-rose:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover { background: var(--petal-1); }
.btn-outline:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: none;
  border-bottom: 1px solid var(--petal-3);
  padding: 4px 0;
  min-height: 44px;
  font-size: 13px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--rose); border-color: var(--rose); }
.btn-ghost:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

/* Alias für bestehende Klassen im HTML */
.btn-text { composes: btn-ghost; }

/* ─── 7. Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .28s, border-color .28s;
}

.nav.s {
  background: rgba(254, 250, 250, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--petal-2);
}

.nav__i {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav__logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--rose); }

/* Desktop-Menü — standardmäßig versteckt (Mobile First) */
.nav__menu {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav__menu a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  transition: color .18s;
  padding: 4px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__menu a:hover { color: var(--rose); }
.nav__menu a:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* CTA in Nav — Desktop */
.nav__cta {
  display: none;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--rose);
  color: var(--white);
  padding: 9px 18px;
  min-height: 44px;
  align-items: center;
  border-radius: var(--r);
  transition: background .18s;
}
.nav__cta:hover { background: var(--rose-hover); }
.nav__cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* Hamburger — immer sichtbar auf Mobile */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
}
.nav__burger:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* Mobile Nav-Panel */
.nav__mob {
  display: none;
  position: fixed;
  inset: 60px 0 0;
  background: var(--white);
  padding: 2rem 1.25rem;
  z-index: 199;
  border-top: 1px solid var(--petal-2);
  overflow-y: auto;
}
.nav__mob.open { display: block; }
.nav__mob a {
  display: block;
  font-size: 20px;
  font-weight: 300;
  padding: 1rem 0;
  border-bottom: 1px solid var(--petal-1);
  color: var(--ink);
  min-height: 56px;
  display: flex;
  align-items: center;
}
.nav__mob a:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ─── 8. Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

/* Bild oben auf Mobile */
.hero__r {
  order: -1;
  height: 260px;
  background: url('Bilder/hero_innerglow_02.png') center center / cover no-repeat;
  background-color: var(--petal-1);
  position: relative;
  flex-shrink: 0;
}

.hero__r::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253,245,245,.1) 0%,
    rgba(253,245,245,.5) 100%
  );
}

/* Text unter dem Bild auf Mobile */
.hero__l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
  flex: 1;
}

.hero__h1 { margin: .75rem 0 .75rem; }
.hero__h1 b { font-weight: 600; color: var(--rose); }

/* Subheadline im Hero */
.hero__sub {
  font-size: clamp(17px, 4.5vw, 24px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero__p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

/* Beide Buttons auf Mobile volle Breite */
.hero__actions .btn {
  width: 100%;
  max-width: 320px;
}

.hero__actions .btn-ghost {
  max-width: 320px;
}

.hero__note {
  font-size: 12px;
  font-weight: 300;
  color: var(--petal-3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__note::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--petal-3);
  flex-shrink: 0;
}

/* Highlight-Chips im Hero */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--rose);
  background: var(--petal-1);
  border: 1px solid var(--petal-2);
  padding: 5px 12px;
  letter-spacing: .03em;
}

.chip svg { flex-shrink: 0; }

/* ─── 9. Problem-Bereich ────────────────────────────────── */
.problem-sec {
  padding: 4rem 0;
  background: var(--petal-0);
}

.problem-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.problem-intro {
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.problem-intro b {
  font-weight: 600;
  color: var(--rose);
  display: block;
  font-size: clamp(14px, 3.5vw, 17px);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin: 1.5rem 0;
  border: 1px solid var(--petal-2);
  background: var(--white);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--petal-1);
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.65;
}
.problem-list li:last-child { border-bottom: none; }

.problem-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deco);
  flex-shrink: 0;
  margin-top: 8px;
}

.problem-close {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ─── 10. Für wen — Karten ──────────────────────────────── */
.forwho-sec {
  padding: 4rem 0;
  background: var(--white);
}

/* Grid: 1 Spalte Mobile */
.wi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--petal-2);
  margin-top: 2rem;
}

.wi {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--petal-2);
  transition: background .2s;
  position: relative;
}
.wi:last-child { border-bottom: none; }
.wi:hover { background: var(--petal-0); }

/* Nummerierung — elegant, dekorativ */
.wi__n {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -.04em;
  color: var(--petal-2);
  line-height: 1;
  margin-bottom: .75rem;
  -webkit-text-stroke: 1px var(--petal-3);
  color: transparent;
}

.wi__h {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.wi__p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── 11. Fullbild / Zitat ──────────────────────────────── */
.fullbild {
  position: relative;
  padding: 4rem 1.25rem;
  text-align: center;
  overflow: hidden;
  background: var(--petal-1);
  border-top: 1px solid var(--petal-2);
  border-bottom: 1px solid var(--petal-2);
}

/* Hintergrundbild */
.fullbild::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("Bilder/CTA_innerglow_02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay für bessere Lesbarkeit */
.fullbild::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.fullbild__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.fullbild__q {
  font-size: clamp(16px, 5.5vw, 22px);
  font-weight: 300;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.fullbild__sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── 12. Was ist InnerGlow? (Format-Bereich) ───────────── */
.format-sec {
  padding: 4rem 0;
  background: var(--snow);
}

.format-question {
  text-align: center;
  margin-bottom: 2rem;
}
.format-question h2 { margin: .5rem 0 1rem; }
.format-question p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* Format-Pfade: 1 Spalte Mobile */
.format-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--petal-2);
}

.fpath {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--petal-2);
  background: var(--white);
  transition: background .2s;
}
.fpath:last-child { border-bottom: none; }
.fpath:hover { background: var(--petal-0); }

.fpath__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
  opacity: .8;
}

.fpath__icon {
  width: 40px;
  height: 40px;
  background: var(--petal-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.fpath__icon svg { color: var(--rose); }

.fpath__h {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: -.015em;
}

.fpath__p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fpath__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fpath__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--body);
}

.tick {
  width: 16px;
  height: 16px;
  background: var(--petal-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.tick svg { color: var(--rose); }

/* Kombinierbar-Box */
.format-combo {
  border: 1.5px dashed var(--petal-3);
  background: var(--petal-0);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  flex-wrap: wrap;
}

.format-combo__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.65;
}
.format-combo__text strong { font-weight: 500; color: var(--ink); }

/* EPUB-Streifen */
.epub-strip {
  background: var(--petal-0);
  border: 1px solid var(--petal-2);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.epub-strip__ico { color: var(--muted); flex-shrink: 0; }
.epub-strip__text { font-size: 13.5px; font-weight: 300; color: var(--muted); }
.epub-strip__text span { font-weight: 500; color: var(--body); }

/* ─── 13. Ablauf ────────────────────────────────────────── */
.proc-sec {
  padding: 4rem 0;
  background: var(--petal-0);
}

/* 1 Spalte Mobile */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--petal-2);
  margin-top: 2rem;
}

.proc-step {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--petal-2);
  transition: background .2s;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}
.proc-step:last-child { border-bottom: none; }
.proc-step:hover { background: var(--petal-0); }

.proc-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  padding-top: 3px;
}

.proc-h {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}

.proc-p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── 14. FAQ ───────────────────────────────────────────── */
.faq-sec {
  padding: 4rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 640px;
  margin: 2rem auto 0;
  border: 1px solid var(--petal-2);
}

.fq { border-bottom: 1px solid var(--petal-2); }
.fq:last-child { border-bottom: none; }

.fq__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  gap: 1rem;
  text-align: left;
  min-height: 56px;
  transition: background .18s;
}
.fq__btn:hover, .fq.open .fq__btn { background: var(--petal-0); }
.fq__btn:focus-visible { outline: 2px solid var(--rose); outline-offset: -2px; }

.fq__q {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -.01em;
}

.fq__ico {
  width: 24px;
  height: 24px;
  background: var(--petal-1);
  border: 1px solid var(--petal-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .26s, background .18s;
  color: var(--rose);
}
.fq.open .fq__ico {
  transform: rotate(45deg);
  background: var(--petal-2);
}

.fq__a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  background: var(--petal-0);
}
.fq.open .fq__a { display: block; }

/* ─── 15. CTA ───────────────────────────────────────────── */
.cta-sec {
  position: relative;
  padding: 4rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background: var(--petal-1);
}

.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Bilder/CTA_innerglow_01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
}

.cta-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
  z-index: 0;
}

.cta-sec .w,
.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin: .5rem 0 1rem;
}

.cta-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* CTA-Highlight */
.cta-highlight {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-highlight span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cta-highlight span::before {
  content: '·';
  color: var(--petal-3);
  font-size: 16px;
}

.cta-highlight span:first-child::before {
  display: none;
}

.cta-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.cta-row svg {
  color: var(--rose);
  flex-shrink: 0;
}

.cta-row a {
  color: var(--rose);
  font-weight: 500;
  transition: color .18s;
}

.cta-row a:hover {
  color: var(--rose-hover);
}

.cta-row a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* ─── 16. Footer ────────────────────────────────────────── */
footer {
  background: var(--petal-0);
  border-top: 1px solid var(--petal-2);
  padding: 2.5rem 1.25rem;
}

.ft {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.ft__logo { flex-shrink: 0; }

.ft__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
}

.ft__links a {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  transition: color .18s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.ft__links a:hover { color: var(--rose); }
.ft__links a:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

.ft__copy {
  font-size: 12px;
  color: var(--petal-3);
  font-weight: 300;
}

/* ─── 17. Scroll-to-top ─────────────────────────────────── */
#up {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--rose);
  border: none;
  cursor: pointer;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(138, 90, 98, .25);
}
#up.v { opacity: 1; pointer-events: auto; }
#up:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ─── 18. Responsive (Tablet → Desktop) ─────────────────── */
@media (min-width: 600px) {
  .w { padding: 0 2rem; }
  .nav__i { padding: 0 2rem; }

  /* Hero: Bild rechts */
  .hero {
    flex-direction: row;
    min-height: 100svh;
  }
  .hero__r {
    order: 1;
    width: 45%;
    height: auto;
    flex-shrink: 0;
  }
  .hero__l {
    padding: 7rem 2.5rem 3rem;
    flex: 1;
  }
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
  .hero__actions .btn,
  .hero__actions .btn-ghost { width: auto; max-width: none; }

  .wi-grid { grid-template-columns: 1fr 1fr; }
  .wi { border-right: 1px solid var(--petal-2); border-bottom: 1px solid var(--petal-2); }
  .wi:nth-child(2n) { border-right: none; }
  .wi:nth-last-child(-n+2) { border-bottom: none; }

  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc-step { border-right: 1px solid var(--petal-2); border-bottom: 1px solid var(--petal-2); }
  .proc-step:nth-child(2n) { border-right: none; }
  .proc-step:nth-last-child(-n+2) { border-bottom: none; }

  .cta-meta { flex-direction: row; justify-content: center; }
  .ft { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 960px) {
  .w { padding: 0 2.5rem; }
  .nav__i { padding: 0 2.5rem; }
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }

  .hero__r { width: 45%; }
  .hero__l { padding: 8rem 4rem 4rem max(2.5rem, calc((100vw - var(--max))/2 + 2.5rem)); }

  /* Drei Spalten ab Desktop */
  .wi-grid { grid-template-columns: repeat(3, 1fr); }
  .wi { border-right: 1px solid var(--petal-2); border-bottom: none; }
  .wi:last-child { border-right: none; }

  .proc-grid { grid-template-columns: repeat(4, 1fr); }
  .proc-step { border-right: 1px solid var(--petal-2); border-bottom: none; }
  .proc-step:last-child { border-right: none; }
  .proc-step { display: block; }  /* Reset Grid-Layout */

  .format-paths { grid-template-columns: 1fr 1fr; }
  .fpath { border-right: 1px solid var(--petal-2); border-bottom: none; }
  .fpath:last-child { border-right: none; }

  .fullbild { padding: 6rem 2.5rem; }
}
