/* ============================================================
   IMPRV — styles.css
   Design tokens (Farben/Fonts) stehen ganz oben in :root.
   Einfache Anpassungen: Texte im index.html, Farben hier.
   ============================================================ */

:root {
  --ink: #0a0a0b;
  --ink-soft: #1a1a1d;
  --ink-muted: #6b6b70;
  --ink-faint: #78787e;

  --paper: #fcfcfa;
  --paper-soft: #f4f4f1;
  --paper-line: #e9e9e4;

  --accent: #2563eb; /* Marken-Signatur (das blaue "v"), sonst sparsam einsetzen */

  --max: 1120px;
  --radius: 16px;

  --shadow-soft: 0 1px 3px rgba(10, 10, 11, 0.04), 0 12px 40px -12px rgba(10, 10, 11, 0.12);
  --shadow-float: 0 20px 60px -20px rgba(10, 10, 11, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv01", "cv11";
  overflow-x: hidden;
}

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

::selection { background: rgba(10, 10, 11, 0.9); color: var(--paper); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }

.btn--sm { padding: 9px 18px; font-size: 14.5px; }
.btn--lg { padding: 14px 24px; font-size: 15px; }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); }

.btn--ghost { background: rgba(255, 255, 255, 0.6); border-color: var(--paper-line); color: var(--ink); }
.btn--ghost:hover { background: #fff; }

.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled,
.nav.is-menu-open {
  background: rgba(252, 252, 250, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--paper-line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { font-size: 22px; font-weight: 700; letter-spacing: -0.04em; }
.brand-v { color: var(--accent); }
.nav__links { display: none; gap: 40px; }
.nav__links a { font-size: 15.5px; color: var(--ink-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }

@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__right { display: flex; align-items: center; gap: 6px; }

.nav__lang {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.nav__lang:hover { color: var(--ink); }

/* Burger (nur mobile) */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
@media (min-width: 768px) { .nav__burger { display: none; } }

/* Mobile-Menü-Panel */
.nav__mobile {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 49;
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  background: rgba(252, 252, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--paper-line);
}
.nav__mobile.is-open { display: flex; animation: menu-in 0.35s var(--ease); }
.nav__mobile a {
  padding: 15px 2px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--paper-line);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile .nav__mobile-lang { color: var(--ink-muted); font-size: 15px; }
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 768px) { .nav__mobile { display: none !important; } }

/* ── Typography helpers ──────────────────────────────── */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 24px;
}
.h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.h2--wide { max-width: 780px; }
.lead {
  margin-top: 32px;
  max-width: 640px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.footnote { margin-top: 32px; font-size: 14px; color: var(--ink-faint); }

/* ── Gründer-Signatur & Avatare ──────────────────────── */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  filter: grayscale(1);
}
.avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  filter: none;
}
.avatar--lg { width: 64px; height: 64px; }
.warum__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.warum__me { display: flex; align-items: center; gap: 14px; }
.warum__name { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.warum__role { display: block; margin-top: 1px; font-size: 13.5px; color: var(--ink-muted); }
.signature { margin-top: 36px; display: flex; align-items: center; gap: 14px; }
.signature__name { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.signature__role { display: block; margin-top: 1px; font-size: 13.5px; color: var(--ink-muted); }

/* ── Sections ────────────────────────────────────────── */
.section { padding: 96px 0; }
@media (min-width: 640px) { .section { padding: 128px 0; } }
.section--border { border-top: 1px solid var(--paper-line); }
.section--soft { background: var(--paper-soft); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 144px 0 80px;
  background-image:
    linear-gradient(to bottom, rgba(252, 252, 250, 0) 55%, rgba(252, 252, 250, 1) 100%),
    radial-gradient(1200px 600px at 50% -10%, rgba(10, 10, 11, 0.05), transparent 70%);
}
@media (min-width: 640px) { .hero { padding: 176px 0 112px; } }

.hero__title {
  max-width: 900px;
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero__sub {
  margin-top: 28px;
  max-width: 620px;
  font-size: clamp(1.075rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.hero__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }

.trust {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.trust i { width: 4px; height: 4px; border-radius: 999px; background: var(--paper-line); }

/* Hero zentriert (Apple-Stil): kurzer Text, viel Ruhe */
.hero .container { text-align: center; }
.hero__title, .hero__sub { margin-left: auto; margin-right: auto; }
.hero__cta { justify-content: center; }
.trust { justify-content: center; }

/* ── Mobile-Feinschliff ──────────────────────────────── */
@media (max-width: 767px) {
  /* Sprachwechsler wandert ins Burger-Menü */
  .nav__right .nav__lang { display: none; }
}

@media (max-width: 639px) {
  .hero { padding: 150px 0 56px; }
  .hero__title { font-size: 2rem; } /* je Satz eine Zeile auf dem iPhone */
  .hero__visual { margin-top: 64px; }

  .eyebrow { font-size: 11.5px; letter-spacing: 0.12em; text-wrap: balance; }

  /* CTA-Buttons gestapelt, volle Breite */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  /* Trust-Punkte als ruhiges 2x2-Raster */
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    justify-items: center;
    margin-top: 40px;
    font-size: 12.5px;
    text-align: center;
  }
  .trust i { display: none; }

  .browser__body { padding: 44px 24px; gap: 24px; }

  .section { padding: 80px 0; }
}

/* Gleichmässige Umbrüche bei Kartentiteln */
.card__title, .price__title, .reason__title, .step__title { text-wrap: balance; }

/* Hero visual */
.hero__visual { position: relative; max-width: 960px; margin: 144px auto 0; padding: 0 24px; }
.hero__phone { position: absolute; right: 8px; bottom: -40px; width: 176px; display: none; }
@media (min-width: 640px) { .hero__phone { display: block; } }

/* ── Browser mockup ──────────────────────────────────── */
.browser {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
  background: #fff;
  box-shadow: var(--shadow-float);
}
.browser__bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--paper-line);
  background: var(--paper-soft);
}
.browser__bar .dot { width: 12px; height: 12px; border-radius: 999px; background: #e4e4df; }
.browser__url {
  margin-left: 12px;
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  color: var(--ink-faint);
}
.browser__body {
  display: grid;
  gap: 32px;
  padding: 64px 40px;
  background: #fff;
  place-items: center;
}
@media (min-width: 640px) { .browser__body { padding: 80px 64px; } }
.skel { border-radius: 8px; }
.skel--pill { height: 8px; width: 96px; background: var(--paper-soft); }
.skel--title { height: 40px; width: 75%; background: rgba(10, 10, 11, 0.9); border-radius: 8px; }
.skel--line { height: 16px; width: 66%; background: var(--paper-line); border-radius: 6px; }
.skel--line.short { width: 50%; }
.skel--btn { height: 44px; width: 176px; background: var(--ink); border-radius: 999px; }

/* ── Phone mockup ────────────────────────────────────── */
.phone {
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: var(--ink);
  padding: 4px;
  box-shadow: var(--shadow-float);
}
.phone__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1170 / 2532; /* iPhone 16 Pro Form -> Screenshot füllt randlos */
  overflow: hidden;
  border-radius: 26px; /* dezente iPhone-Rundung, klippt die Bildecken kaum */
  background: var(--paper-soft);
}
.phone__screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink);
  z-index: 2;
}
.phone__screen--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(to bottom, var(--paper), var(--paper-soft));
  text-align: center;
  padding: 16px;
}
.phone__screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Echte Screenshots haben ihre eigene Statusleiste -> künstlichen Notch ausblenden */
.phone__screen--photo::before { display: none; }
/* Safari: Rundung direkt aufs Bild statt overflow-Clip am Container.
   Ein abgerundeter overflow:hidden-Container wird von Safari in 1x gerastert -> unscharf. */
.phone__screen--photo { overflow: visible; background: transparent; }
.phone__screen--photo img { border-radius: 26px; }
.phone__icon { color: var(--ink); line-height: 0; }
.phone__icon svg { width: 38px; height: 38px; }
.phone__label { font-size: 11px; font-weight: 500; color: var(--ink-muted); }
.phone__name { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ── Grids ───────────────────────────────────────────── */
.grid { margin-top: 56px; display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; gap: 40px 24px; }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid--services { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Cards (Für wen) ─────────────────────────────────── */
.card {
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 32px;
  transition: transform 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card__title { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.card__body { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ── Preise / Leistungen ─────────────────────────────── */
.price {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 32px;
  transition: transform 0.3s var(--ease);
}
.price:hover { transform: translateY(-4px); }
.price--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(10, 10, 11, 0.1);
  box-shadow: var(--shadow-float);
}
.price__head { display: flex; align-items: center; justify-content: space-between; }
.price__no { font-size: 13px; font-weight: 500; letter-spacing: 0.16em; color: var(--ink-faint); }
.price--featured .price__no { color: rgba(252, 252, 250, 0.5); }
.badge {
  border-radius: 999px;
  background: rgba(252, 252, 250, 0.15);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.price__title { margin-top: 24px; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.price__body { margin-top: 12px; flex: 1; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.price--featured .price__body { color: rgba(252, 252, 250, 0.7); }
.price__foot { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--paper-line); }
.price--featured .price__foot { border-top-color: rgba(252, 252, 250, 0.15); }
.price__amount { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.price__meta { margin-top: 2px; font-size: 13px; color: var(--ink-faint); }
.price--featured .price__meta { color: rgba(252, 252, 250, 0.65); }

/* ── Projekte ────────────────────────────────────────── */
.project {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--paper-line);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.project__stage { display: flex; justify-content: center; padding: 48px 40px 0; }
.project__stage--purple { background: linear-gradient(to bottom, #eae6ff, #f6f4ff); }
.project__stage--blue { background: linear-gradient(to bottom, #dde7f3, #f0f5fb); }
.project__stage .phone { width: 168px; transition: transform 0.5s var(--ease); }
.project:hover .project__stage .phone { transform: translateY(-8px); }
.project__info { display: flex; flex-direction: column; flex: 1; padding: 32px; }
.project__titlerow { display: flex; align-items: center; gap: 12px; }
.project__name { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.project__tag { font-size: 12px; color: var(--ink-faint); }
.project__body { margin-top: 12px; flex: 1; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.project__link { margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; }
.project__link .arrow { transition: transform 0.3s var(--ease); }
.project:hover .project__link .arrow { transform: translateX(4px); }

/* ── Warum (Reasons) ─────────────────────────────────── */
.reason {
  display: flex;
  gap: 20px;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 32px;
}
.reason__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  color: var(--ink);
}
.reason__icon svg { width: 22px; height: 22px; }
.reason__title { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.reason__body { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ── Prozess (Steps) ─────────────────────────────────── */
.step__no { font-size: 13px; font-weight: 500; letter-spacing: 0.16em; color: var(--ink-faint); }
.step__title { margin-top: 12px; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.step__body { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ── CTA ─────────────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  padding: 80px 32px;
  text-align: center;
}
@media (min-width: 640px) { .cta { padding: 80px 64px; } }
.cta__title {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-wrap: balance;
}
.cta__sub {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(252, 252, 250, 0.6);
  text-wrap: pretty;
}
/* ── Kontaktformular (auf dunkler CTA-Karte) ─────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.form { max-width: 560px; margin: 40px auto 0; text-align: left; }
.form__row { display: grid; gap: 12px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(252, 252, 250, 0.16);
  background: rgba(252, 252, 250, 0.06);
  color: var(--paper);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.field::placeholder { color: rgba(252, 252, 250, 0.45); }
.field:focus { outline: none; border-color: var(--accent); background: rgba(252, 252, 250, 0.1); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25); }
textarea.field { margin-top: 12px; resize: vertical; min-height: 92px; }
.form__submit { width: 100%; justify-content: center; margin-top: 16px; }
.form__hint { margin-top: 14px; font-size: 13.5px; color: rgba(252, 252, 250, 0.66); text-align: center; }
.form__success {
  max-width: 560px;
  margin: 40px auto 0;
  padding: 32px;
  border-radius: 16px;
  background: rgba(252, 252, 250, 0.06);
  border: 1px solid rgba(252, 252, 250, 0.16);
  text-align: center;
}
.form__success-title { color: var(--paper); font-size: 1.125rem; font-weight: 600; }
.form__success-sub { margin-top: 6px; color: rgba(252, 252, 250, 0.6); }

/* ── Footer ──────────────────────────────────────────── */
.footer { border-top: 1px solid var(--paper-line); padding: 48px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 640px) { .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__logo { font-size: 16px; font-weight: 700; letter-spacing: -0.04em; }
.footer__meta { margin-top: 4px; font-size: 13px; color: var(--ink-faint); }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 14px; color: var(--ink-muted); }
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: var(--ink); }

/* ── Testimonials / Stimmen (randlos, editorial) ─────── */
.testimonials { margin-top: 56px; display: grid; gap: 48px; }
@media (min-width: 768px) { .testimonials { grid-template-columns: 1fr 1fr; gap: 64px; } }
.quote { display: flex; flex-direction: column; margin: 0; }
.quote::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}
.quote blockquote {
  margin: 0;
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.quote__author { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.quote__name { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.quote__role { display: block; margin-top: 1px; font-size: 13.5px; color: var(--ink-muted); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { margin-top: 48px; max-width: 780px; }
.faq__item { border-top: 1px solid var(--paper-line); }
.faq__item:last-child { border-bottom: 1px solid var(--paper-line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 1.075rem;
  font-weight: 500;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-faint);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 0;
  padding: 0 0 24px;
  max-width: 660px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ── Rechtsseiten (Datenschutz) ──────────────────────── */
.legal { max-width: 760px; padding: 128px 24px 96px; margin: 0 auto; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink-muted); margin-bottom: 40px; }
.legal__back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.1; }
.legal__meta { margin-top: 12px; font-size: 14px; color: var(--ink-faint); }
.legal h2 { margin-top: 48px; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.legal p, .legal li { margin-top: 14px; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.legal ul { margin-top: 8px; padding-left: 22px; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal .note { margin-top: 24px; padding: 16px 20px; border-radius: 12px; background: var(--paper-soft); border: 1px solid var(--paper-line); font-size: 14px; color: var(--ink-muted); }
.legal .placeholder { color: var(--accent); font-weight: 500; }

/* ── Scroll reveal (Blur-to-sharp, Linear-Stil) ──────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: none; }

/* Hero-Mockup: richtet sich beim Scrollen sanft auf (Apple-Stil) */
.hero__visual { perspective: 1200px; }
.hero__visual .browser { transform-origin: 50% 0; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
