/* ============================================================
   TidyFolders – Rebuild v2 (Elementor-Ablösung)
   Tokens aus Elementor-Kit (post-6.css) + Verbesserungen laut Review.
   ============================================================ */

/* ---------- Fonts (selbst gehostet, wie live) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2'),
       url('../assets/fonts/inter-v20-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-500.woff2') format('woff2'),
       url('../assets/fonts/inter-v20-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-700.woff2') format('woff2'),
       url('../assets/fonts/inter-v20-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/space-grotesk-v22-latin-700.woff2') format('woff2'),
       url('../assets/fonts/space-grotesk-v22-latin-700.woff') format('woff');
}

/* ---------- Tokens ---------- */
:root {
  --red: #FF3859;
  --red-border: #FAD2D9;
  --black: #000000;
  --dark-band: #1B1D1F;
  --dark-panel: #2E2E2E;
  --text: #16202E;
  --text-soft: #51565F;
  --section-bg: #F9F9F9;
  --blue: #348CEC;
  --sky: #8CC5F8;
  --white: #FFFFFF;
  --green: #23A55A;
  /* Provider-Farben – analog zur Extension-UI (5 Provider seit 13.07.2026) */
  --gpt: #8A9199;   /* neutral-grau wie in der Extension */
  --cld: #D97757;
  --gem: #9168C0;   /* violett — Blau gehört jetzt DeepSeek */
  --dsk: #4D6BFE;   /* DeepSeek-Blau */
  --grk: #1F2328;   /* Grok / x.ai schwarz-anthrazit */

  --r-card: 12px;
  --r-btn: 20px;
  --r-panel: 40px;
  --r-header-btn: 8px;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Fluide Content-Breite wie Referenz (~84vw, Deckel 1800px) */
  --container: min(1800px, 84vw);
  --header-h: 64px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }

.section-title { font-size: 44px; letter-spacing: -1px; line-height: 1.1; }
.section-label { color: var(--blue); font-size: 18px; font-weight: 600; margin-bottom: 12px; }

/* Provider-Dots */
.pv { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: none; }
.pv.gpt { background: var(--gpt); }
.pv.cld { background: var(--cld); }
.pv.gem { background: var(--gem); }
.pv.dsk { background: var(--dsk); }
.pv.grk { background: var(--grk); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; text-align: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
/* Primär-CTA = Konzept 3C „Halo Buffer": Depth-Verlauf + heller Puffer-Ring.
   Der Ring übernimmt den Job der alten 6px-Rosa-Kontur (entkoppelt das Magenta
   vom blauen Hero-Grund gegen Simultankontrast-Flimmern) — nur zeitgemäß. */
.btn-primary {
  color: #fff;
  font-size: 20px;
  padding: 15px 32px;
  border: 0;
  border-radius: var(--r-btn);
  background: linear-gradient(180deg, #FF4A66, #F22C4F);
  box-shadow:
    0 0 0 5px rgba(255,255,255,.38),      /* Halo-Ring zuerst */
    inset 0 1px 0 rgba(255,255,255,.28),  /* Innen-Highlight oben */
    0 8px 22px rgba(22,32,46,.22);        /* Tiefenschatten */
  transition: background .18s ease, box-shadow .18s ease;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #FF5570, #F73A5C);
  box-shadow:
    0 0 0 5px rgba(255,255,255,.5),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 8px 22px rgba(22,32,46,.26);
}
.btn-primary:focus-visible { outline: 3px solid rgba(255,56,89,.45); outline-offset: 4px; }
/* Header-CTA in derselben „weichen" Formensprache wie der Primär-CTA (3C):
   Verlauf + Innen-Highlight + weicher Schatten, Pill statt 8px-Kante.
   Bleibt dunkel — die Magenta-Bühne gehört dem Hero-Button. */
.btn-header {
  background: linear-gradient(180deg, #2A2E33, #16181B);
  color: #fff;
  font-size: 15px;
  padding: 9px 20px 11px; /* Text 1px höher in der Pill (optische Mitte) */
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 4px 12px rgba(22,32,46,.18);
  transition: background .18s ease, box-shadow .18s ease;
}
.btn-header:hover {
  background: linear-gradient(180deg, #FF4A66, #F22C4F);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    0 5px 14px rgba(255,56,89,.3);
}
.btn-plan-dark {
  background: var(--black); color: #fff;
  font-size: 17px; padding: 14px 20px; border-radius: 10px; width: 100%;
}
.btn-plan-dark:hover { background: var(--red); }
.btn-plan-light {
  background: #fff; color: var(--text);
  font-size: 17px; padding: 14px 20px; border-radius: 10px; width: 100%;
  border: 1px solid #D8DCE2;
}
.btn-plan-light:hover { border-color: var(--black); }

/* ---------- Header: transparent oben, weiß beim Scrollen ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(22,32,46,.06), 0 6px 24px rgba(22,32,46,.06);
}
.header-inner {
  width: var(--container); margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* Optische Korrektur: Schrift-Ascent und Logo-Funke lassen die sichtbare Masse
   unter der rechnerischen Mitte sitzen — 1px Lift gleicht das aus */
.brand { display: flex; align-items: center; gap: 9px; position: relative; top: -1px; }
.brand-mark { height: 40px; width: auto; }
.brand-font { height: 18px; width: auto; }
.main-nav { display: flex; gap: 38px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, calc(-50% - 1px)); }
.main-nav a { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--text); }
.main-nav a:hover, .main-nav a.is-active { color: var(--red); }
.nav-burger { display: none; }

/* ---------- Hero (Referenz: bg 3600px auto, top center, unter dem Header) ---------- */
.hero {
  background-color: var(--section-bg);
  /* 3 Schichten: (1) Fade unten → Weiß für nahtlose Sektionsgrenze,
     (2) Panorama, -6px hochgezogen gegen Rundungs-Gaps am Viewport-Rand,
     (3) blauer Sicherheitsstreifen HINTER dem Bild — falls doch je ein Gap
     entsteht, ist er blau (Bildfarbe) statt weiß und damit unsichtbar */
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) calc(100% - 220px), #fff 100%),
    url('../assets/img/img-back-heroPanel-scaled-scaled-scaled.jpg'),
    linear-gradient(90deg, #55B7EC, #31A0F0 50%, #5F74E8);
  /* bewusst klassische 2-Wert-Syntax — maximale Browser-Kompatibilität */
  background-position: center top, center -6px, center top;
  background-repeat: no-repeat;
  background-size: 100% 100%, 3600px auto, 100% 14px;
  text-align: center;
  padding: calc(var(--header-h) + 96px) 24px 56px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 6.5vw, 76px);
  letter-spacing: -1.5px;
  line-height: 1.18;
  text-wrap: balance;
}
.hero-sub {
  margin: 40px auto 0;
  font-size: 19px; font-weight: 500; line-height: 1.6;
  color: var(--text);
  max-width: 52em;
}
.hero-sub strong { font-weight: 700; }
.hero .btn-primary { margin-top: 40px; }
.hero-privacy { margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--text); opacity: .82; }
/* Leises Sicherheitsventil unter der Micro-Zeile: erst beim Hover als Link erkennbar */
.hero-others { margin-top: 6px; font-size: 12.5px; }
.hero-others a {
  color: var(--text); opacity: .55;
  text-decoration: none;
  transition: opacity .15s ease;
}
.hero-others a:hover { opacity: .9; text-decoration: underline; text-underline-offset: 3px; }

/* Media-Card: Video + USP-Spec-Leiste als EIN Objekt —
   gemeinsame Kante, gemeinsamer Radius, ein Schatten (Apple/Linear-Muster) */
.hero-video-wrap {
  max-width: 1090px; margin: 72px auto 0;
  position: relative;
  background: #fff;
  border-radius: 20px; /* Container-Familie */
  overflow: hidden;
  isolation: isolate; /* Safari: sauberes Radius-Clipping */
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-video {
  display: block;
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  background: #000;
}

/* Spec-Leiste: 3 gleiche Spalten, Hairline-Trenner, exakt auf Videobreite */
.video-usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Dunkler Sockel wie ROI-Kachel/Provider-Band: hebt die Chips vom weißen
     Video-Card ab, statt darin zu verschwinden */
  background: var(--dark-panel);
}
.usp-chip {
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 24px 28px;
  transition: background .15s ease;
}
.usp-chip + .usp-chip { border-left: 1px solid rgba(255,255,255,.09); }
.usp-chip:hover { background: #3A3A3A; }
.usp-chip:hover .usp-txt b { color: #FF8098; }
.usp-chip:focus-visible { outline: 2px solid var(--red); outline-offset: -4px; }
/* Icon-Kacheln: schlicht weiß, Icon in Rot — keine Kontur */
.usp-ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: #fff;
  color: var(--red);
  display: grid; place-items: center;
}
.usp-ico svg { width: 24px; height: 24px; }
.usp-txt b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1.25; color: #fff; transition: color .15s ease; }
.usp-txt small { display: block; font-size: 15px; color: #B7BDC6; margin-top: 5px; }

/* ---------- Social Proof (Platzhalter-Inhalte, Struktur final) ---------- */
.proof { width: var(--container); margin-inline: auto; padding: 96px 0 10px; text-align: center; }

/* Proof-Zeile: ein ruhiger Streifen statt drei Pills (folgt auf die Logos) */
.proof-line {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 36px;
  font-size: 16.5px; color: var(--text-soft);
}
.proof-line b { color: var(--text); font-weight: 700; }
.proof-item { display: inline-flex; align-items: center; gap: 10px; }
.proof-sep { width: 5px; height: 5px; border-radius: 50%; background: #D5DAE1; }
.stars { color: #F5A623; letter-spacing: 1.5px; font-size: 15px; }
.avatars { display: inline-flex; }
.avatars i {
  width: 32px; height: 32px; border-radius: 50%;
  font: 700 11px var(--font-body); font-style: normal;
  display: grid; place-items: center;
  border: 2px solid #fff;
  margin-left: -9px;
}
.avatars i:first-child { margin-left: 0; }
.avatars i:nth-child(1) { background: #DCE9FB; color: #2C5FBD; }
.avatars i:nth-child(2) { background: #FFE3E9; color: #C2334F; }
.avatars i:nth-child(3) { background: #DFF3E7; color: #237A52; }

/* Testimonials: weiße Karten mit Hairline + Attribution (kein Grau-Fill) */
.proof-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1150px; margin: 44px auto 0; }
.quote {
  margin: 0; background: #fff;
  border: 1px solid #E7ECF2; border-radius: 14px;
  padding: 24px;
  text-align: left;
}
.quote blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text); }
.quote figcaption { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.q-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  font: 700 12px var(--font-body);
  display: grid; place-items: center;
}
.q-avatar.av-a { background: #DCE9FB; color: #2C5FBD; }
.q-avatar.av-b { background: #FFE3E9; color: #C2334F; }
.q-avatar.av-c { background: #DFF3E7; color: #237A52; }
.quote figcaption b { display: block; font-size: 13.5px; color: var(--text); line-height: 1.3; }
.quote figcaption small { display: block; font-size: 12.5px; color: var(--text-soft); margin-top: 1px; }

/* Logo-Zeile mit kleiner echter Überschrift — eröffnet die Proof-Sektion */
.logos-label {
  display: block;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; letter-spacing: -.3px;
  color: var(--text); margin: 0 0 24px;
}
.logos-row {
  display: flex; gap: 52px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  color: #AFB7C2;
}
/* Platzhalter-Markierung (vor Launch ersetzen — siehe TODO.md) */
.placeholder { position: relative; }
.placeholder::after {
  content: "Platzhalter";
  position: absolute; top: -7px; right: -6px;
  font: 600 9px var(--font-body); letter-spacing: .05em; text-transform: uppercase;
  background: #FFF3CD; color: #8A6D1A; border: 1px solid #F0DFA0;
  padding: 1px 6px; border-radius: 99px;
  pointer-events: none;
}

/* ---------- Benefits Carousel (Referenz-Styling) ---------- */
.benefits { padding: 56px 0 8px; }
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 32px; /* stretch: höchste Karte bestimmt die Höhe aller */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4vw;
  scrollbar-width: none;
  /* genug Luft oben/unten, damit die Karten-Schatten NICHT geclippt werden */
  padding: 40px 4vw 72px;
  cursor: grab;
}
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track.dragging .use-card { pointer-events: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.use-card {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 320px;
  /* Höhe rein inhaltsbasiert; Flex-Stretch gleicht die Reihe an der höchsten Karte an */
  scroll-snap-align: start;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
/* Verläufe 1:1 aus den Original-PNGs gesampelt — keine Bild-Assets mehr nötig */
.use-card.g02 { background: linear-gradient(100deg, #DCD64A, #B1CD6D 50%, #7AC199); }
.use-card.g03 { background: linear-gradient(100deg, #8068B6, #6985C7 50%, #4BA9DD); }
.use-card.g04 { background: linear-gradient(100deg, #F3C04C, #F7A055 50%, #FA8060); }
.use-card.g06 { background: linear-gradient(115deg, #5B6CDD, #896ACB 50%, #B867B9); }
.use-card.g07 { background: linear-gradient(115deg, #D6547F, #DF8B72 50%, #E8C265); }
.use-card.g08 { background: linear-gradient(100deg, #CA5676, #A75891 50%, #7C5AB2); }
.use-card.g09 { background: linear-gradient(100deg, #FD6946, #FA8545 50%, #F6A744); }
.use-card-content { padding: 60px 44px 84px; }
.use-card h3 { font-size: 33px; line-height: 1.22; letter-spacing: -.6px; }
.use-card hr {
  border: 0; border-top: 2.5px solid rgba(255,255,255,.9);
  width: 210px; margin: 30px 0 26px;
}
.use-card p { font-size: 17px; line-height: 1.65; font-weight: 500; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: #C9CDD4; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.is-active { background: var(--black); transform: scale(1.15); }

/* ---------- Features ---------- */
.features {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0 64px;
}
.features .section-title { margin-bottom: 48px; }
.feature-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-bottom: 32px;
}
.feature-card {
  background: #fff;
  border-radius: 20px; /* Container-Familie: 20px (Panel, Privacy, Video-Card) — innen 12–16px */
  box-shadow: 0 4px 24px rgba(22,32,46,.07);
  padding: 40px;
}
.feature-card h3 { font-size: 28px; letter-spacing: -.5px; margin-bottom: 14px; }
.feature-card > p { color: var(--text-soft); font-size: 16.5px; line-height: 1.65; margin-bottom: 12px; }
.feature-card > p:last-of-type { margin-bottom: 28px; }

/* Ruhige Visuals: statisches Bild, Video nur bei Hover */
.media-swap { position: relative; border-radius: 12px; overflow: hidden; }
.media-swap img { width: 100%; }
.media-swap video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s ease;
}
.media-swap.playing video { opacity: 1; }

/* Konzept „Ein Objekt": EIN dunkles Super-Panel — Cross-AI-Story oben,
   die drei Sekundär-USPs als eingerückte Spec-Zeile unten im selben Panel.
   Ruhe durch eine Silhouette statt mehrerer konkurrierender Formen. */
.crossllm {
  background: var(--dark-panel);
  box-shadow: 0 18px 48px rgba(22,32,46,.22);
  padding: 56px 56px 0; /* unten 0: die USP-Zellen tragen den Abstand selbst,
                           damit ihre vertikalen Trenner bis zur Kante laufen */
  margin-bottom: 32px;
}
.crossllm-main {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.crossllm h3 { color: #fff; }
.crossllm-copy h3 { margin-bottom: 16px; }
.crossllm-copy p { color: #C3C9D2; font-size: 16.5px; line-height: 1.65; margin-bottom: 14px; }
.crossllm-copy p b { color: #fff; }
/* Provider als ruhige Pills */
.crossllm-providers { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.crossllm-providers span {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: #E9ECF1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 8px 15px;
}
/* Dunkle Dots auf dunklem Panel aufhellen */
.crossllm-providers .pv.gpt { background: #C6CCD4; }
.crossllm-providers .pv.grk { background: #EDF0F4; }
.crossllm-providers .soon { background: transparent; border: 0; padding: 8px 4px; color: #8A9099; font-weight: 500; }
/* Beide Panel-Visuals sind PNGs mit eingebackenem Schlagschatten und
   transparentem Grund — deshalb hier bewusst KEIN box-shadow und kein
   border-radius, das läge sonst doppelt. max-width ist jeweils die native
   Breite: auf sehr breiten Viewports würde die Grid-Spalte darüber hinaus
   wachsen und das Bild hochskalieren. */
.crossllm-visual, .crossllm-bm-visual { min-width: 0; }
/* <picture> ist von Haus aus inline; als Block verhält es sich exakt wie das
   frühere direkte <img>, damit die auto-Margins weiter aus-/einrücken. */
.crossllm-visual picture, .crossllm-bm-visual picture { display: block; }
.crossllm-visual img, .crossllm-bm-visual img { display: block; width: 100%; height: auto; }
.crossllm-visual img { max-width: 715px; margin-left: auto; }    /* rechte Spalte */
.crossllm-bm-visual img { max-width: 630px; margin-right: auto; } /* linke Spalte */

/* USP-Spec-Zeile im Panel: Hairline oben, vertikale Trenner, Kacheln wie Hero-Leiste */
.crossllm-usps {
  list-style: none; margin: 44px 0 0; padding: 0;
  border-top: 1px solid rgba(255,255,255,.09);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.crossllm-usps li {
  display: flex; gap: 16px; align-items: center;
  padding: 24px 28px 28px;
}
.crossllm-usps li:first-child { padding-left: 0; }
.crossllm-usps li:last-child { padding-right: 0; }
.crossllm-usps li + li { border-left: 1px solid rgba(255,255,255,.09); }
.crossllm-usps h4 { font-size: 19px; letter-spacing: -.2px; color: #fff; margin-bottom: 4px; }
.crossllm-usps p { font-size: 15px; line-height: 1.5; color: #B7BDC6; margin: 0; }

/* Zweiter Beat im Panel: Bookmarks. Gleicher Hairline-Trenner wie zur USP-Zeile,
   Seiten gespiegelt (Visual links) und Headline eine Stufe kleiner als die h3
   darüber — der Block soll als nachgeordneter Beat lesen, nicht als gleichwertige
   zweite Story. */
.crossllm-bookmarks {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
  border-top: 1px solid rgba(255,255,255,.09);
  margin-top: 44px; padding-top: 44px;
}
.crossllm-bm-copy h4 {
  font-size: 23px; line-height: 1.25; letter-spacing: -.3px;
  color: #fff; margin-bottom: 14px;
}
.crossllm-bm-copy p { color: #C3C9D2; font-size: 16.5px; line-height: 1.65; margin: 0; }
/* #9AA1AB statt des sonst im Panel üblichen #8A9099: leiser als der Fließtext,
   aber über der WCAG-AA-Schwelle (5,2:1 statt 4,2:1) — es ist Verkaufsargument,
   keine Fußnote. */
.crossllm-bm-copy .crossllm-bm-note { margin-top: 14px; font-size: 14.5px; color: #9AA1AB; }
/* Die frueheren CSS-Mockups (.mini-ui/.mini-row/.lnk) sind entfallen, seit beide
   Panel-Visuals echte PNGs sind. Bei Bedarf: git show f64fcc1:css/style.css */

/* Wie Referenz: Original-Bild in geclippter, abgerundeter Box mit Schlagschatten,
   Höhe kompakt (an die Sekundär-USP-Zeile angelehnt) */
.privacy-banner {
  background: url('../assets/img/img-feature-privacy-scaled-scaled.jpg') center / cover no-repeat #348CEC;
  border-radius: 20px; /* gleiche Radius-Familie wie das dunkle Panel darüber */
  min-height: 200px;
  box-shadow: 0 14px 40px rgba(22,32,46,.16);
  display: grid; place-items: center;
  text-align: center;
  padding: 28px 24px;
}
.privacy-banner h4 { font-size: 28px; }
.privacy-banner h4 { color: #fff; font-size: 32px; letter-spacing: -.5px; line-height: 1.3; }

/* ---------- Setup-Bühne (Subgrid): Zeile 1 = sichtbares Band,
   Zeile 2 = Höhe der weißen Karte, Zeile 3 = Plans.
   Band endet automatisch hinter der Karte, Plans-Verlauf beginnt automatisch
   exakt an der Kartenunterkante — bei jeder Fensterbreite.

   Wichtig für Safari: Der Bandinhalt (.provider-band-content) ist DIREKTES
   Kind von .setup-wrap, nicht der Subgrid-Box — Safari reicht die Höhe von
   Subgrid-Kindern nicht an die Elternzeile durch (Zeile kollabierte auf 0).
   Als Wrap-Kind bestimmt der Inhalt die Zeilenhöhe in jeder Engine nativ. */
.setup-wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  padding-top: 104px; /* großzügige Luft zwischen Privacy-Banner und Bühne */
  /* Luft unter der Bühne: der Box-Schatten läuft frei aus,
     bevor der weiße FAQ-Hintergrund beginnt (kein Clipping) */
  padding-bottom: 100px;
}
.setup-box {
  grid-area: 1 / 1 / 4 / 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  width: var(--container); /* fluchtet mit den Feature-Karten; nur die How-it-works-Karte überlappt */
  margin-inline: auto;
  background: #fff; /* NICHT dunkel: Plans-Hintergrundbild deckt nicht überall — Dunkel schiene durch */
  border-radius: var(--r-panel);
  overflow: hidden;               /* clippt Band + Plans-Hintergrundbild an den runden Ecken */
  box-shadow: 0 30px 70px rgba(22,32,46,.13);
}
/* Band = nur Hintergrund (spannt hinter die Karte). Der Inhalt lebt als
   Wrap-Kind in Reihe 1 und bestimmt deren Höhe (Safari-sicher, s. o.). */
.provider-band {
  grid-row: 1 / 3;
  margin-bottom: 48px;            /* Band endet knapp über der Kartenunterkante */
  background: var(--dark-band);
}
.provider-band-content {
  grid-area: 1 / 1;
  z-index: 1;
  align-self: start;
  display: grid; justify-items: center; gap: 16px;
  color: #fff; text-align: center;
  padding: 28px 24px; /* oben/unten bewusst gleich */
}
.provider-band-content p { font-size: 17.5px; font-weight: 500; margin: 0; }
/* Ein Chip pro Browser = erkennbare Download-Möglichkeit statt Textaufzählung */
.band-browsers { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.band-browsers a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07);
  font-size: 13.5px; font-weight: 600; color: #E6E9ED;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.band-browsers a:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.32); color: #fff; }
.band-browsers a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.band-browsers svg { width: 15px; height: 15px; flex: none; fill: currentColor; }
.howitworks {
  grid-area: 2 / 1;
  justify-self: center;
  position: relative; z-index: 2;
  width: calc(var(--container) + 4vw);
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: var(--r-panel);
  padding: 56px 64px 64px;
  text-align: center;
  box-shadow: 0 26px 60px rgba(22,32,46,.14);
}
.howitworks .section-title { margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: end; }
.step { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.step img { width: 64px; height: 64px; }
.step p { font-size: 16px; font-weight: 500; color: var(--text); }

/* ---------- Plans (Zeile 3 — Hintergrundbild startet an der Zeilen- = Kartenunterkante) ---------- */
.plans {
  grid-row: 3;
  background: url('../assets/img/img-background-plans-scaled.png') top center / 100% auto no-repeat;
  text-align: center;
  /* 48px nach oben gezogen: der blaue Verlauf schiebt sich UNTER die weiße
     How-it-works-Karte (Karte überlappt sichtbar, statt anzustoßen) — trifft
     exakt die Unterkante des dunklen Bands (margin-bottom: 48px) */
  margin-top: -48px;
  padding: 148px 24px 140px;
}
.plans .section-title { font-size: 48px; }
.plans-sub { margin-top: 26px; font-size: 19px; font-weight: 500; line-height: 1.6; }
.plan-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 1030px; margin: 64px auto 0;
  text-align: left;
  align-items: start;
  position: relative;
}
.plan-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 28px 24px;
  position: relative;
  z-index: 1; /* Karten liegen über dem Donut */
}
.plan-starter { border: 2px solid var(--black); }
.plan-pro { box-shadow: 0 16px 48px rgba(22,32,46,.16); border: 1px solid #EEF1F5; }
/* Donut: Geschwister-Element der Karten, hinter ihnen (kein negatives z-index — Safari-sicher) */
.plan-donut {
  /* vermessen am Original: Breite = 66% der Pro-Karte, Zentrum exakt auf der
     rechten Kartenkante, 20px unter der Kartenoberkante — vollständig fluid */
  position: absolute;
  width: calc((100% - 28px) / 2 * 0.74);
  height: auto;
  top: 20px; right: 0;
  transform: translate(50%, -50%);
  pointer-events: none;
  z-index: 0;
}
/* Donut rollt beim ersten Einscrollen sanft im Uhrzeigersinn an seinen Platz:
   von links kommend (−64px) und aus −40° zurückgedreht auf 0°.
   Start wird in main.js an das Transitionsende der zweiten Plan-Karte gekoppelt
   (kein fester Delay: der Donut sitzt über den Karten und käme beim Scrollen
   sonst zuerst in den Viewport). */
.plan-donut.reveal {
  opacity: 0;
  transform: translate(calc(50% - 64px), -50%) rotate(-40deg);
  transition-duration: 1.1s, 1.1s;
}
.plan-donut.reveal.in {
  opacity: 1;
  transform: translate(50%, -50%) rotate(0deg);
}
.plan-head { min-height: 148px; }
.plan-name { font-size: 19px; font-weight: 700; font-family: var(--font-body); }
.plan-name-row { display: flex; justify-content: space-between; align-items: center; }
.plan-price { font-family: var(--font-head); font-weight: 700; font-size: 56px; letter-spacing: -1px; margin-top: 10px; }
.plan-price span { font-size: 22px; letter-spacing: 0; }
.plan-billed { color: var(--text-soft); font-size: 15px; margin-top: 4px; }
.plan-list { list-style: none; margin: 22px 0 0; padding: 0; }
.plan-list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 15.5px; padding: 13px 14px;
  border-radius: 8px;
}
.plan-list li:nth-child(odd) { background: var(--section-bg); }
.plan-list b { font-weight: 700; }
/* Neutrale Icons statt Emojis: ✓ = enthalten, – = nicht enthalten */
.pl-ico { width: 21px; height: 21px; flex: none; border-radius: 50%; position: relative; }
li.inc .pl-ico { background: var(--green); }
li.inc .pl-ico::after {
  content: ""; position: absolute; inset: 0;
  background: center / 12px no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>');
}
li.exc .pl-ico { background: #E7EAEE; }
li.exc .pl-ico::after {
  content: ""; position: absolute; inset: 0;
  background: center / 11px no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2351565F" stroke-width="3.5" stroke-linecap="round"><path d="M5 12h14"/></svg>');
}
li.exc { color: var(--text-soft); }
li.exc b { font-weight: 600; }
.tf-seg {
  display: flex; background: #F1F2F4; border-radius: 999px; padding: 3px;
}
.tf-seg__btn {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--text-soft);
  padding: 5px 13px; border-radius: 999px;
}
.tf-seg__btn.is-active { background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.14); }

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border-radius: 0 0 var(--r-panel) var(--r-panel);
  padding: 60px 0 110px;
  position: relative; z-index: 2;
}
.faq-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 80px;
}
.faq-title { font-size: 48px; letter-spacing: -1px; line-height: 1.12; }

/* Kontakt-Block unter dem FAQ-Titel: Auffangbecken für alles, was die FAQ
   nicht abdeckt (öffnet später ein Notion-Formular in neuem Tab) */
.faq-contact { margin-top: 40px; max-width: 330px; }
.faq-contact-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 21px; letter-spacing: -.3px; margin-bottom: 18px;
}
.btn-faq {
  background: linear-gradient(180deg, #2A2E33, #16181B);
  color: #fff;
  font-size: 15.5px;
  padding: 12px 24px 13px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 4px 12px rgba(22,32,46,.18);
  transition: background .18s ease, box-shadow .18s ease;
}
.btn-faq:hover {
  background: linear-gradient(180deg, #FF4A66, #F22C4F);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    0 5px 14px rgba(255,56,89,.3);
}
.btn-faq:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.faq-group { margin-bottom: 56px; }
.faq-group-label {
  color: var(--blue); font-size: 16px; font-weight: 600;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 10px;
}
.faq-group-label::after { content: ""; flex: 1; height: 2px; background: var(--blue); opacity: .8; }
.faq-item { border-bottom: 1px solid #F0F2F5; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 25px; letter-spacing: -.3px; color: var(--text);
  padding: 26px 4px 26px 0;
}
.faq-q:hover { color: var(--red); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform .3s ease;
}
.faq-icon::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-item.open .faq-icon::before { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { color: var(--text-soft); font-size: 16.5px; line-height: 1.65; padding: 0 40px 24px 0; max-width: 680px; margin: 0; }
.faq-a-inner p + p { margin-top: -8px; }
.faq-a-inner a { color: var(--blue); text-decoration: underline; }

/* ---------- ROI ---------- */
.roi {
  background: url('../assets/img/img-background-roi-scaled.jpg') center / cover no-repeat #6B63E8;
  color: #fff;
  margin-top: calc(-1 * var(--r-panel));
  padding: calc(140px + var(--r-panel)) 24px 120px;
}
.roi-inner {
  width: var(--container); max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'head head' 'left right'; /* Headline volle Breite; Chips bündig mit Kachel */
  gap: 72px 80px; /* Reihenabstand groß genug für den schwebenden Chips-Titel */
  align-items: start;
}
.roi-head { grid-area: head; }
.roi-left { grid-area: left; }
.roi-right { grid-area: right; position: relative; }
.roi-label { font-size: 16px; font-weight: 500; margin-bottom: 18px; }
.roi h2 { font-size: 44px; letter-spacing: -1px; line-height: 1.15; }
.roi-card {
  background: var(--dark-panel);
  border-radius: var(--r-card);
  padding: 26px 28px 30px;
  max-width: 456px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.roi-card-label { color: var(--sky); font-size: 18px; font-weight: 600; }
.roi-card-value {
  font-family: var(--font-head); font-weight: 700; font-size: 46px;
  letter-spacing: -.5px; margin-top: 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; /* einzeilig; JS skaliert die Schriftgröße bei Überbreite (fitValue) */
}
.roi-card-value .roi-unit { font-size: .46em; }

/* Rechner in der Kachel */
.roi-calc {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; gap: 14px;
}
.roi-calc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.roi-calc-row label, .roi-calc-caption { font-size: 14px; font-weight: 500; color: #C9CED6; }
#roi-salary-out { font-weight: 700; font-size: 15.5px; font-variant-numeric: tabular-nums; }
#roi-salary {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px; margin: 0;
  background:
    linear-gradient(var(--sky), var(--sky)) 0 0 / var(--fill, 21%) 100% no-repeat,
    rgba(255,255,255,.18);
  outline-offset: 4px; cursor: pointer;
}
#roi-salary::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
#roi-salary::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
#roi-salary::-moz-range-track { height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); }
#roi-salary::-moz-range-progress { height: 6px; border-radius: 3px; background: var(--sky); }
.roi-seg { display: inline-flex; background: rgba(255,255,255,.14); border-radius: 999px; padding: 3px; }
.roi-seg button {
  border: 0; background: transparent; color: #fff; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  padding: 6px 14px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.roi-seg button.is-active { background: #fff; color: var(--dark-panel); }
.roi-assumptions { font-size: 12.5px; line-height: 1.5; color: #9AA1AA; margin: 2px 0 0; }

/* CTA unter der Kachel — gleiche Breite wie die Kachel */
.btn-roi {
  display: block; max-width: 456px;
  margin-top: 28px; background: #fff; color: var(--black);
  font-size: 17px; padding: 13px 28px; border-radius: var(--r-btn);
}
.btn-roi:hover { background: #E9EDF2; }
.roi-cta-note {
  margin-top: 12px; max-width: 456px; text-align: center;
  /* wie .hero-privacy (Subtext unterm Hero-CTA): dunkel, 13.5px/600 */
  font-size: 13.5px; font-weight: 600; color: var(--text);
}

/* Beweiskette rechts */
.roi-steps-title {
  font-size: 14.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 18px;
}
@media (min-width: 1025px) {
  /* Titel schwebt in der Lücke über den Chips, damit Chip- und Kachel-Oberkante bündig sind */
  .roi-steps-title { position: absolute; bottom: calc(100% + 14px); left: 0; margin: 0; }
}
.roi-steps { list-style: none; counter-reset: roistep; display: grid; gap: 14px; margin: 0; padding: 0; }
.roi-steps li {
  counter-increment: roistep;
  position: relative;
  padding: 18px 22px 18px 64px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.roi-steps li::before {
  content: counter(roistep);
  position: absolute; left: 20px; top: 19px;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; color: #5B54C7;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
}
.roi-steps li:not(:last-child)::after {
  content: ''; position: absolute; left: 33px; bottom: -15px;
  width: 2px; height: 16px; background: rgba(255,255,255,.35);
}
.roi-step-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 6px;
}
.roi-steps p { font-size: 15.5px; line-height: 1.65; margin: 0; }
.roi-right a { text-decoration: underline; }

/* Utility: nur für Screenreader */
.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;
}

/* ---------- Scroll-Reveal: dezent, einmalig, unter der Fold ----------
   Die .reveal-Klasse wird NUR per JS vergeben (ohne JS bleibt alles sichtbar);
   bereits sichtbare Elemente werden beim Setup übersprungen. */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .85s cubic-bezier(.22,1,.36,1),
    transform .85s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.use-card.reveal { transform: translate(30px, 34px); } /* Use-Cases: von unten-seitlich */
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Footer: Reihe 1 = Store-Chips + Hauptnavigation (inkl. Blog),
   Reihe 2 = © + Rechtliches. Volle Nav-Wiederholung: liefert jedem späteren
   Blogartikel saubere interne Links zurück auf alle Produktbereiche. */
.site-footer { background: var(--black); padding: 36px 8vw 30px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px 40px; flex-wrap: wrap;
  padding-bottom: 26px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 28px; flex-wrap: wrap;
}
.footer-copy { color: #7C838C; font-size: 13.5px; margin: 0; }
.site-footer nav[aria-label="Legal"] { display: flex; gap: 28px; flex-wrap: wrap; }
.site-footer a { color: #C7CBD1; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }

/* Store-Links je Browser — unabhängig vom erkannten Browser immer alle sichtbar */
.footer-get { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-get-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #7C838C; margin: 0;
}
.footer-browsers { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-browsers a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px 7px 10px; border-radius: 999px;
  border: 1px solid #2A2E33; background: #16191C;
  font-size: 13px; font-weight: 600; color: #C7CBD1;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.footer-browsers a:hover { background: #22262B; border-color: #3C424A; color: #fff; }
.footer-browsers a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.footer-browsers svg { width: 16px; height: 16px; flex: none; fill: currentColor; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .usp-txt small { display: none; } /* schmalere Viewports: nur Titel in der Spec-Leiste */
  .usp-chip { padding: 16px 18px; }
  .crossllm-main { grid-template-columns: 1fr; }
  /* gestapelt beide Visuals mittig statt an der Spaltenkante */
  .crossllm-visual img { margin-inline: auto; }
  /* Icon über den Text statt daneben: die drei Zellen sind hier nur noch ~290px
     breit, davon gingen 46px Icon + 16px Gap + 56px Padding ab — für den Text
     blieben 173px. Gestapelt sind es 235px, und die Überschriften (max. 147px)
     bleiben sicher einzeilig. */
  .crossllm-usps li { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px 20px 28px; }
  /* gestapelt zuerst die Copy, dann das Mockup — wie im Block darüber */
  .crossllm-bookmarks { grid-template-columns: 1fr; }
  .crossllm-bm-visual { order: 2; }
  .crossllm-bm-visual img { margin-inline: auto; }
}
@media (max-width: 1024px) {
  :root { --container: min(1800px, 90vw); }
  .section-title { font-size: 36px; }
  .main-nav { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-burger span { width: 22px; height: 2px; background: var(--black); }
  .site-header.nav-open { background: #fff; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: var(--header-h); transform: none;
    background: #fff; padding: 8px 0 16px; border-bottom: 1px solid #E7EAEE;
  }
  .site-header.nav-open .main-nav a { padding: 12px 5vw; }
  .header-cta { margin-left: auto; }
  .use-card { flex-basis: calc((100% - 32px) / 2); }
  .feature-grid-2, .steps { grid-template-columns: 1fr; }
  /* Bühne bleibt Subgrid — nur Breiten/Abstände anpassen */
  .setup-box { width: var(--container); }
  .howitworks { width: calc(var(--container) + 20px); }
  .plans { padding: 128px 16px 90px; }
  .crossllm { padding: 40px 32px 0; }
  .proof-quotes { grid-template-columns: 1fr; max-width: 560px; }
  .plan-cards { grid-template-columns: 1fr; max-width: 560px; }
  /* gestapelt: Abstand zwischen Kontakt-Button und den Akkordeons */
  .faq-inner { grid-template-columns: 1fr; gap: 64px; }
  /* Plans-Bild ist sehr breit (2560×665) — bei 100% Breite wird es schmal
     zusammengestaucht; auf schmalen Viewports größer skalieren */
  .plans { background-size: 150% auto; }
  .roi-inner { grid-template-columns: 1fr; grid-template-areas: 'head' 'left' 'right'; gap: 48px; }
}
@media (max-width: 640px) {
  .br-desktop { display: none; }
  .hero { background-size: cover; background-position: center top; padding-top: calc(var(--header-h) + 48px); }
  .hero-sub { margin-top: 30px; font-size: 17px; }
  .hero .btn-primary { margin-top: 32px; }
  .hero-video-wrap { margin-top: 48px; border-radius: 14px; }
  .video-usps { grid-template-columns: 1fr; }
  .usp-chip { padding: 14px 18px; }
  .usp-chip + .usp-chip { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .usp-txt small { display: block; }
  .hero-video { border-radius: 0; }
  .header-inner { gap: 10px; }
  .brand-mark { height: 30px; }
  .brand-font { height: 14px; }
  .btn-header { font-size: 13px; padding: 8px 12px; white-space: nowrap; }
  .proof { padding-top: 56px; }
  .benefits { padding-top: 56px; }
  .carousel-track { padding: 20px 24px; scroll-padding-inline: 24px; }
  .use-card { flex-basis: calc(100% - 24px); }
  .use-card-content { padding: 40px 30px 56px; }
  .use-card h3 { font-size: 27px; }
  .use-card p { font-size: 15.5px; }
  .features { padding: 56px 0 40px; }
  .feature-card { padding: 24px 20px; }
  .privacy-banner h4 { font-size: 26px; }
  .crossllm { padding: 32px 22px 0; }
  .crossllm-bookmarks { margin-top: 30px; padding-top: 30px; gap: 32px; }
  .crossllm-bm-copy h4 { font-size: 21px; }
  .crossllm-usps { grid-template-columns: 1fr; }
  /* einspaltig über die volle Breite: hier ist Icon neben Text wieder richtig,
     gestapelt würde die Liste nur unnötig hoch */
  .crossllm-usps li { padding: 18px 0; flex-direction: row; align-items: center; gap: 16px; }
  .crossllm-usps li:last-child { padding-bottom: 26px; }
  .crossllm-usps li + li { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .provider-band-content { padding: 22px 16px; gap: 13px; }
  .provider-band-content p { font-size: 15.5px; }
  .setup-box { width: var(--container); border-radius: 24px; }
  .howitworks { padding: 48px 24px 56px; border-radius: 24px; }
  .howitworks .section-title { margin-bottom: 40px; }
  .plans { padding: 112px 16px 72px; background-size: 230% auto; }
  .faq-contact { margin-bottom: 8px; }
  .plans .section-title { font-size: 40px; }
  .plan-donut { display: none; }
  .faq-title { font-size: 38px; }
  .faq-q { font-size: 19.5px; padding-block: 20px; }
  .roi { padding: 120px 20px 88px; }
  .roi h2 { font-size: 34px; }
  .roi-card-value { font-size: 36px; }
  .roi-steps li { padding: 16px 18px 16px 56px; }
  .roi-steps li::before { left: 16px; top: 17px; }
  .roi-steps li:not(:last-child)::after { left: 29px; }
  .roi-calc-row:has(.roi-seg) { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-top, .footer-bottom, .footer-nav, .footer-get { justify-content: center; text-align: center; }
  .site-footer nav { justify-content: center; flex-wrap: wrap; gap: 16px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .faq-a, .faq-icon::before, .faq-icon::after, .usp-chip { transition: none; }
}

/* ============================================================
   Rechtsseiten (Impressum, Datenschutz, Terms) — ZENTRALE Rules
   Genutzt von imprint.html, privacy.html, terms.html.
   Der Header wird auf diesen Seiten fest weiß gesetzt (Klasse
   .site-header.scrolled im Markup), da kein Hero darüber liegt.
   ============================================================ */
.legal-wrap {
  width: min(720px, 90vw); margin-inline: auto;
  padding: calc(var(--header-h) + 52px) 0 96px;
}
.legal-back {
  display: flex; width: fit-content; align-items: center; gap: 8px;
  margin-bottom: 26px; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--text-soft); text-decoration: none;
}
.legal-back:hover { color: var(--text); }
.legal-back svg { width: 16px; height: 16px; flex: none; }

.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #676D79;
  margin: 0 0 16px;
}
.legal-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }

.legal-wrap h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -1px; line-height: 1.12;
  color: var(--text); margin: 0;
}
.legal-wrap h1 .subtle { color: #9AA0A9; font-weight: 400; }
.legal-lead { margin: 16px 0 0; font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--text-soft); }
.legal-lead strong { color: var(--text); font-weight: 600; }

/* Impressum: Definitionsliste der Pflichtangaben */
.imprint { margin: 40px 0 0; border-top: 1px solid #E6E9EE; }
.imprint__row { display: grid; grid-template-columns: 210px 1fr; gap: 6px 30px; padding: 18px 0; border-bottom: 1px solid #F0F2F5; }
.imprint dt { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #676D79; padding-top: 2px; }
.imprint dd { margin: 0; color: var(--text); line-height: 1.65; font-size: 16.5px; font-family: var(--font-body); }
.imprint dd small { display: block; margin-top: 3px; font-size: 13.5px; color: #676D79; }
/* Links in Rechtstexten bewusst dezent: neutrale, dünne Unterstreichung statt
   der roten Marken-Linie (wirkt im dichten Fließtext ruhiger). */
.imprint dd a, .legal-note a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(22, 32, 46, .3); text-decoration-thickness: 1px; text-underline-offset: 2px; font-weight: 500; }
.imprint dd a:hover, .legal-note a:hover { text-decoration-color: var(--text); }

/* Impressum: erklärende Absätze (Streitbeilegung, Haftung, Urheberrecht) */
.legal-note { margin-top: 52px; }
.legal-note section + section { margin-top: 32px; }
.legal-note h2 { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -.2px; color: var(--text); margin: 0 0 10px; }
.legal-note p { font-family: var(--font-body); color: var(--text-soft); font-size: 16px; line-height: 1.72; margin: 0; }
.legal-note p + p { margin-top: 12px; }

/* Datenschutz/Terms: Sprach-Umschalter */
.lang-toggle { display: inline-flex; gap: 4px; margin: 24px 0 4px; padding: 4px; border: 1px solid #E6E9EE; border-radius: 999px; background: var(--section-bg); }
.lang-toggle button { font-family: var(--font-body); font-size: 14px; font-weight: 600; padding: 7px 16px; border: 0; border-radius: 999px; background: transparent; color: var(--text-soft); cursor: pointer; transition: background .15s ease, color .15s ease; }
.lang-toggle button[aria-pressed="true"] { background: #fff; color: var(--text); box-shadow: 0 1px 3px rgba(22,32,46,.14); }

/* Datenschutz/Terms: langer Fließtext */
.legal-prose { margin-top: 20px; }
.legal-prose .lang-block[hidden] { display: none; }
/* Hauptabschnitte durch eine feine Linie klar voneinander abgegrenzt. */
.legal-prose h2 { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: -.3px; color: var(--text); margin: 48px 0 16px; padding-bottom: 11px; border-bottom: 1px solid #EAEDF1; }
.legal-prose .lang-block > h2:first-child { margin-top: 8px; }
/* Unterpunkte (5.1 etc.): klar als Zwischenüberschrift lesbar, deutlich
   größer als der Fließtext und mit viel Luft nach oben abgesetzt. */
.legal-prose h3 { font-family: var(--font-head); font-weight: 700; font-size: 18.5px; letter-spacing: -.2px; color: var(--text); margin: 34px 0 9px; }
.legal-prose p { font-family: var(--font-body); color: var(--text-soft); font-size: 15.5px; line-height: 1.72; margin: 0 0 12px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose ul ul { margin: 6px 0; }
.legal-prose li { font-family: var(--font-body); color: var(--text-soft); font-size: 15.5px; line-height: 1.65; margin: 5px 0; }
.legal-prose li::marker { color: var(--red); }
.legal-prose strong { color: var(--text); font-weight: 600; }
.legal-prose em { font-style: italic; }
.legal-prose a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(22, 32, 46, .3); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.legal-prose a:hover { text-decoration-color: var(--text); }
.legal-prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; background: var(--section-bg); padding: 1px 6px; border-radius: 6px; }

/* Datenschutz: Opt-out-Schalter für die Reichweitenmessung */
.optout-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 0 0 12px; }
.btn-optout { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--text); background: #fff; border: 1px solid #D8DDE4; border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.btn-optout:hover { border-color: var(--red); color: var(--red); }
.btn-optout[aria-pressed="true"] { background: var(--section-bg); border-color: #C6CDD6; }
.btn-optout[disabled] { opacity: .55; cursor: default; }
.btn-optout[disabled]:hover { border-color: #D8DDE4; color: var(--text); }
.optout-state { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--text-soft); }

@media (max-width: 600px) {
  .imprint__row { grid-template-columns: 1fr; gap: 5px; padding: 16px 0; }
  .imprint dt { padding-top: 0; }
}
