/* ============================================================
   CONVOCIS — Redesign 2026 „Mehr als nur ein Telefonagent"
   Layout-Vorbild sevenrooms.com: dunkler Header, geteilter Hero (Serif-
   Headline links, Bild rechts), farbige Vollflächen-Sektionen mit
   Label → Serif-Headline → Text → Pill, dunkler CTA-Block, dunkler
   mehrspaltiger Footer. Scroll-Vorbild allo.restaurant: der gepinnte
   „All-in-One"-Block (.aio), in dem die Bausteine von außen in einen
   Ring um das zentrale Viereck fliegen.

   Farben: Creme #F8F6EE (SevenRooms-Grundton) · Navy #16293F (Header,
   Footer, CTA) · Terracotta #C96F4A (Akzent, Brand) · Navy #16293F
   (eine Vollflächen-Sektion + Viereck) · Sand #EDE3D2 · Salbei #DDE6E0.
   Lora (Display) · Karla (Text & UI) — lokal gehostet, DSGVO-konform.

   Die Unterseiten (preise, demo, onboarding, impressum, datenschutz,
   404) nutzen dieselben Bausteine (.site-header, .btn, .page-head,
   .sec, .card, .form-*, .article, .p-*, .onb-*) und bekommen den neuen
   Look damit automatisch.
   ============================================================ */

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/karla-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #16293F;        /* Marken-Navy (Dashboard/Icon): Header, Footer, CTA, Überschriften */
  --ink-2: #1F3A5F;      /* Hover-Stufe des Navy */
  --ink-deep: #0B1524;   /* tiefster Grund: Film, Abdunkelung, Tarif-Finder unten */
  --navy: #1F3A5F;
  --navy-deep: #16293F;  /* = --ink; Viereck, Navy-Sektion */
  --coral: #C96F4A;
  --coral-deep: #B35E3B;
  --coral-text: #9E4F2C; /* AA-konform auf Creme/Weiß */
  --coral-soft: #F6E8DE;
  --sand: #EDE3D2;
  --sage: #DDE6E0;
  --cream: #F8F6EE;
  --cream-2: #FFFDF7;
  --body: #4A4740;
  --muted: #6B675F;
  --line: #E6DFD0;
  --line-dark: rgba(255, 255, 255, 0.12);
  --green: #4C9A6E;
  --green-soft: #E9F2EA;
  --radius: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Karla, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: break-word;
  -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto;
}
h1 em, h2 em { font-style: italic; color: var(--coral); }
p { margin: 0; color: var(--body); }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }
.wrap-narrow { max-width: 760px; }

.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;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--coral); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Header (dunkel, SevenRooms) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 clamp(20px, 4vw, 44px); height: 68px;
  background: var(--ink); color: #fff;
}
.brand { display: inline-flex; align-items: baseline; gap: 2px; }
.brand-word { font-family: Lora, serif; font-size: 23px; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
.brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: live 2.4s ease-in-out infinite; }

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 28px); }
.site-nav > a:not(.btn) { font-size: 15px; font-weight: 700; color: rgba(255, 255, 255, 0.82); transition: color .18s; }
.site-nav > a:not(.btn):hover { color: #fff; }
.site-nav .btn-light { margin-left: clamp(4px, 1vw, 12px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 15px 30px; border: 1.5px solid transparent; cursor: pointer;
  font-family: Karla, sans-serif; font-size: 15.5px; font-weight: 700; letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(22, 41, 63, 0.22); }
.site-header .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.site-header .btn-primary:hover { background: var(--cream); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: rgba(22, 41, 63, 0.06); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-coral { background: var(--coral); color: var(--navy-deep); border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-deep); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }

.nav-burger { display: none; background: none; border: none; padding: 10px; cursor: pointer; color: #fff; }
.mobile-nav {
  display: none;
  position: fixed; inset: 68px 0 auto 0; z-index: 99;
  flex-direction: column; gap: 4px;
  background: var(--ink); border-bottom: 1px solid var(--line-dark);
  padding: 14px clamp(20px, 4vw, 44px) 26px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a:not(.btn) { padding: 12px 0; font-size: 18px; font-weight: 700; color: #fff; border-bottom: 1px solid var(--line-dark); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }
.mobile-nav .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.mobile-nav .btn-primary { background: #fff; color: var(--ink); }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .nav-burger { display: block; }
}

/* ---------- Kicker / Sektionsbausteine ---------- */
.kicker {
  display: block;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral-text);
  margin-bottom: 18px;
}
.kicker-light { color: var(--coral); }

.sec { padding: clamp(64px, 9vw, 124px) 0 0; }
.sec-last { padding-bottom: clamp(64px, 9vw, 124px); }
.sec h2 { font-size: clamp(34px, 5vw, 60px); }
.sec-sub { font-size: 18px; color: var(--muted); margin-top: 16px; max-width: 560px; }

.hero-actions { display: flex; gap: 16px 22px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 36px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.arrow-link .arr { color: var(--coral); transition: transform .18s ease; }
.arrow-link:hover .arr { transform: translateX(5px); }

.checks { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.checks li { display: flex; align-items: baseline; gap: 12px; font-size: 17px; color: var(--body); }
.checks li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); transform: translateY(-2px); }
.checks strong { color: var(--ink); }

/* ============================================================
   DUNKLE FLÄCHEN mit Orb — .ai-img (Features 1 & 4) und .hero-media
   teilen denselben Grund: warmer Navy/Terracotta-Verlauf + feines Korn.
   ============================================================ */
.ai-img, .hero-media {
  position: relative; margin: 0; overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(201, 111, 74, 0.55), transparent 55%),
    radial-gradient(90% 80% at 85% 90%, rgba(31, 58, 95, 0.75), transparent 60%),
    linear-gradient(160deg, #2B3A4E, #6E5544 60%, #C9986B);
}
.ai-img::before, .hero-media::before {
  content: ""; position: absolute; inset: 0; opacity: .18; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ai-img--phone, .ai-img--team { aspect-ratio: 4 / 3.4; border-radius: var(--radius); }
.ai-img .orb-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 46%; }
.ai-img--phone .orb-wrap { left: 42%; top: 42%; } /* Platz für die Anruf-Karte unten rechts */


/* ============================================================
   DER FILM — gepinnte Kamerafahrt (Runde 12)
   .film ist 620svh hoch, .film-pin klebt 100svh. Der Canvas zeigt je
   Fortschritt das passende Einzelbild (site.js), die Overlays (.fo)
   blenden per data-in/data-out ein. --p (0–1) liegt auf .film.
   ============================================================ */
.film { position: relative; height: 900svh; background: var(--ink-deep); color: #fff; }
.film-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.film-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.film-veil { position: absolute; inset: 0; pointer-events: none; }
.film-veil::before {
  content: ""; position: absolute; inset: 0; opacity: var(--veil, 1);
  background:
    linear-gradient(90deg, rgba(11, 21, 36, 0.74) 0%, rgba(11, 21, 36, 0.4) 40%, rgba(11, 21, 36, 0.12) 70%, rgba(11, 21, 36, 0.32) 100%),
    linear-gradient(180deg, rgba(11, 21, 36, 0.25) 0%, rgba(11, 21, 36, 0) 30%, rgba(11, 21, 36, 0.48) 100%);
}
.film-veil::after { content: ""; position: absolute; inset: 0; background: var(--ink-deep); opacity: var(--dark, 0); }

.fo { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; pointer-events: none; will-change: opacity, transform; }
.fo.is-on { pointer-events: auto; }
.fo .wrap { position: relative; }
.fo h1, .fo h2 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.fo p { color: rgba(255, 255, 255, 0.82); }
.fo-hero { padding-top: 68px; }
.fo-hero h1 { font-size: clamp(42px, 5.6vw, 84px); max-width: 12ch; }
.fo-hero .hero-sub { font-size: clamp(17px, 1.4vw, 21px); margin-top: 22px; max-width: 520px; }
.fo-hero .hero-actions { justify-content: flex-start; margin-top: 30px; }
.film-cue { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 40px; }
.film-cue .arr { display: inline-block; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.fo-text h2 { font-size: clamp(36px, 5vw, 72px); max-width: 12ch; }
.fo-text p { font-size: clamp(16px, 1.3vw, 20px); margin-top: 18px; max-width: 460px; }
.fo-right .wrap { display: flex; justify-content: flex-end; }
.fo-right .wrap > * { text-align: right; }
.fo-right .wrap { flex-direction: column; align-items: flex-end; }
.fo-right p { margin-left: auto; }

/* Laptop: fährt aus dem Tresen (klein, unten) in die Mitte, dann klein ins Viereck */
.fo-laptop { justify-content: center; }
.fo-laptop .laptop { width: min(760px, 70vw); transform: scale(var(--ls, 1)) translateY(var(--ly, 0px)); transform-origin: 50% 60%; will-change: transform; }
@media (min-width: 981px) {
  .fo-laptop { justify-content: flex-start; padding-left: clamp(24px, 5vw, 80px); }
  .fo-laptop .laptop { width: min(720px, 58vw); margin: 0; }
  .fo-right .wrap > * { max-width: 30vw; }
  .fo-right h2 { font-size: clamp(32px, 3.6vw, 56px); }
  .fo-right .wrap { padding-right: clamp(24px, 4vw, 60px); }
}
.fo-laptop .laptop-screen { box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55); }
.fo-laptop .call-card { position: absolute; left: 50%; bottom: 14%; transform: translateX(-50%) translateY(var(--cy, 30px)); width: min(360px, 80vw); opacity: var(--co, 0); }
@media (min-width: 981px) { .fo-laptop .call-card { left: calc(clamp(24px, 5vw, 80px) + min(720px, 58vw) - 150px); bottom: 12%; transform: translateY(var(--cy, 30px)); } }

/* Das System im Film: Kopf + Bühne mittig, dunkler Grund kommt über --dark */
.fo-aio { flex-direction: column; justify-content: center; padding: 68px clamp(20px, 4vw, 44px) 12px; }
.fo-aio .aio-head { text-align: center; margin-bottom: clamp(10px, 2vh, 24px); }
.fo-aio .aio-title { min-height: 2.1em; }

/* CTA am Ende der Fahrt */
.fo-cta { justify-content: center; text-align: center; }
.fo-cta .wrap { display: flex; flex-direction: column; align-items: center; }
.fo-cta h2 { font-size: clamp(38px, 6vw, 84px); }
.fo-cta .cta-num { margin-top: clamp(24px, 3vw, 40px); }
.fo-cta .hero-actions { margin-top: 20px; }

/* Fortschritts-Punkte rechts */
.film-dots { position: absolute; right: clamp(14px, 2vw, 28px); top: 50%; transform: translateY(-50%); margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; z-index: 5; }
.film-dots li { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); transition: background .2s, transform .2s; }
.film-dots li.is-on { background: var(--coral); transform: scale(1.5); }

/* Ohne JS / reduced motion: alles statisch untereinander */
html:not(.js) .film, .film.is-static { height: auto; }
html:not(.js) .film-pin, .film.is-static .film-pin { position: static; height: auto; overflow: visible; display: flex; flex-direction: column; gap: 48px; padding: 68px 0 64px; background: var(--ink-deep); }
html:not(.js) .film-canvas, .film.is-static .film-canvas, html:not(.js) .film-veil, .film.is-static .film-veil, html:not(.js) .film-dots, .film.is-static .film-dots { display: none; }
html:not(.js) .fo, .film.is-static .fo { position: static; opacity: 1; pointer-events: auto; }
html:not(.js) .fo-laptop .laptop, .film.is-static .fo-laptop .laptop { transform: none; }
html:not(.js) .fo-laptop .call-card, .film.is-static .fo-laptop .call-card { position: static; transform: none; opacity: 1; margin: 16px auto 0; }

/* ============================================================
   HERO — geteilt: Creme-Copy links, Bild rechts bis zum Rand
   ============================================================ */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: calc(100svh - 68px); background: var(--cream); }
.hero-copy { display: flex; align-items: center; padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 72px) clamp(56px, 8vw, 110px) clamp(24px, 5vw, 80px); }
.hero-copy-inner { max-width: 560px; }
.hero h1 { font-size: clamp(44px, 5vw, 76px); }
.hero-sub { font-size: clamp(17px, 1.4vw, 20px); margin-top: 24px; max-width: 480px; }
.hero .hero-actions { justify-content: flex-start; }
.hero-note { font-size: 13.5px; color: var(--muted); margin-top: 26px; }
.hero-media {
  min-height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  padding: 48px 24px;
}
.hero-play {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.94); color: var(--ink);
  border-radius: 999px; padding: 10px 22px 10px 12px;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: background .18s, transform .18s;
}
.hero-play:hover { background: #fff; transform: translateY(-2px); }
.hero-play-ic { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; }
.hero-media-note { position: relative; z-index: 2; font-size: 13px; color: rgba(255, 255, 255, 0.72); margin-top: -14px; text-align: center; }

/* --- Video-Slots (Higgsfield-Clips) ---
   [data-video] bekommt per site.js ein <video class="bg-video"> als Kind,
   sobald die Datei geladen werden konnte; .has-video blendet den Orb aus.
   data-video-dim (CTA) legt das Video abgedunkelt hinter den Text. */
[data-video] { position: relative; overflow: hidden; }
.bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.has-video .bg-video { opacity: 1; }
.has-video .orb-wrap { opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.has-video::before { z-index: 1; } /* Korn bleibt über dem Video */
.has-video .hero-play, .has-video .hero-media-note, .has-video .call-card { z-index: 2; }
[data-video-dim] .bg-video { opacity: 0; }
[data-video-dim].has-video .bg-video { opacity: .28; }
[data-video-dim] > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .bg-video { display: none; } .has-video .orb-wrap { opacity: 1; } }

/* --- Der Orb --- */
.orb-wrap { position: relative; z-index: 1; width: clamp(220px, 24vw, 340px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; touch-action: manipulation; }
.orb-wrap::before {
  content: ""; position: absolute; inset: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 194, 159, 0.55) 0%, rgba(201, 111, 74, 0.22) 40%, rgba(201, 111, 74, 0) 70%);
  filter: blur(18px);
  animation: orbGlow 7s ease-in-out infinite;
}
.orb {
  position: relative; z-index: 1; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 36% 30%, #FFFBF3 0%, #FFDDBE 18%, #EE9E74 42%, #C4776A 62%, #5C6683 84%, #33456A 100%);
  box-shadow:
    0 30px 70px rgba(201, 111, 74, 0.28),
    0 0 60px rgba(244, 194, 159, 0.45),
    inset -14px -22px 54px rgba(22, 41, 63, 0.26),
    inset 12px 16px 40px rgba(255, 255, 255, 0.55);
  filter: blur(0.6px);
  animation: orbFloat 7s ease-in-out infinite;
  will-change: transform;
}
.orb-blob { position: absolute; border-radius: 50%; filter: blur(26px); opacity: .9; mix-blend-mode: screen; }
.orb-blob.b1 { width: 70%; height: 70%; left: -10%; top: 0; background: radial-gradient(circle, #FFE3C4 0%, rgba(255, 227, 196, 0) 70%); animation: blob1 9s ease-in-out infinite; }
.orb-blob.b2 { width: 80%; height: 80%; right: -20%; top: 20%; background: radial-gradient(circle, #C96F4A 0%, rgba(201, 111, 74, 0) 70%); animation: blob2 11s ease-in-out infinite; }
.orb-blob.b3 { width: 64%; height: 64%; left: 12%; bottom: -14%; background: radial-gradient(circle, #B4E6D6 0%, rgba(180, 230, 214, 0) 70%); animation: blob3 13s ease-in-out infinite; opacity: .8; }
.orb-blob.b4 { width: 55%; height: 55%; right: 5%; bottom: 5%; background: radial-gradient(circle, #1F3A5F 0%, rgba(31, 58, 95, 0) 70%); mix-blend-mode: multiply; animation: blob2 10s ease-in-out infinite reverse; opacity: .55; }
.orb-gloss { position: absolute; left: 14%; top: 8%; width: 42%; height: 28%; border-radius: 50%; background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%); filter: blur(6px); }
.orb-ring {
  position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; border-radius: 50%;
  border: 1.5px solid rgba(255, 220, 190, 0.5);
  transform: translate(-50%, -50%) scale(1); opacity: 0;
  animation: orbRing 4.5s ease-out infinite;
}
.orb-ring.r2 { animation-delay: 1.5s; }
.orb-ring.r3 { animation-delay: 3s; }
@keyframes orbGlow { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes orbFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-12px) scale(1.025); } }
@keyframes blob1 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(18%, 12%) scale(1.15); } 66% { transform: translate(-6%, 22%) scale(.95); } }
@keyframes blob2 { 0%, 100% { transform: translate(0, 0) scale(1); } 40% { transform: translate(-22%, -14%) scale(1.1); } 70% { transform: translate(-8%, 16%) scale(.9); } }
@keyframes blob3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24%, -30%) scale(1.2); } }
@keyframes orbRing { 0% { transform: translate(-50%, -50%) scale(.98); opacity: .7; } 100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; } }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: clamp(44px, 9vw, 72px) clamp(20px, 5vw, 32px) 40px; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-media { min-height: 0; padding: 40px 20px 36px; gap: 24px; }
  .orb-wrap { width: clamp(180px, 52vw, 240px); }
  .hero-play { font-size: 13px; padding: 8px 16px 8px 9px; white-space: normal; text-align: left; }
  .hero-play-ic { width: 28px; height: 28px; }
}

/* ============================================================
   VERTRAUEN — eine Zeile, vier Fakten
   ============================================================ */
.trust { padding: clamp(44px, 6vw, 72px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.trust-lede { font-size: clamp(17px, 1.5vw, 21px); max-width: 720px; color: var(--ink); font-family: Lora, serif; line-height: 1.4; }
.trust-row { list-style: none; margin: clamp(26px, 3vw, 36px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-row li { border-left: 2px solid var(--coral); padding-left: 16px; }
.trust-row strong { display: block; font-family: Lora, serif; font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.trust-row span { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   ALL-IN-ONE — der allO-Scrollblock.
   .aio ist 320svh hoch, .aio-pin klebt 100svh im Viewport. site.js
   schreibt den Fortschritt (0–1) als --p auf .aio und je Satellit
   eine eigene, gestaffelte --q (0 = weit draußen, 1 = im Ring).
   Zielposition im Ring: --tx/--ty in Einheiten der Ringradien (--r/--ry);
   Startposition = Zielrichtung, nach außen auf --far verlängert — oder
   per --sx/--sy eigene Startrichtung (z. B. damit nichts durch die
   Headline fliegt).
   ============================================================ */
.aio { position: relative; background: var(--ink-deep); color: #fff; height: 320svh; }
.aio-pin {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 68px clamp(20px, 4vw, 44px) 12px; /* 68px = sticky Header */
}
.aio-head { text-align: center; position: relative; z-index: 3; margin-bottom: clamp(10px, 2vh, 24px); }
.aio-head .kicker { margin-bottom: 12px; }
.aio-title { position: relative; font-size: clamp(28px, 3.6vw, 50px); color: #fff; min-height: 2.1em; }
.aio-t { display: block; transition: opacity .45s ease, transform .45s var(--ease); }
.aio-t-b { position: absolute; left: 0; right: 0; top: 0; opacity: 0; transform: translateY(10px); }
.aio.is-docked .aio-t-a, .fo-aio.is-docked .aio-t-a { opacity: 0; transform: translateY(-10px); }
.aio.is-docked .aio-t-b, .fo-aio.is-docked .aio-t-b { opacity: 1; transform: none; }

.aio-stage {
  --r: clamp(150px, 18vw, 240px);       /* horizontaler Ringradius */
  --ry: clamp(108px, 21svh, 196px);     /* vertikaler Ringradius (Ellipse, damit es in 100svh passt) */
  --far: 4.2;
  position: relative; width: 100%;
  height: calc(var(--ry) * 2.7 + 24px);
  display: flex; align-items: center; justify-content: center;
}
.aio-core {
  position: relative; z-index: 2;
  width: clamp(140px, 14vw, 200px); aspect-ratio: 1;
  border-radius: 22px;
  background: linear-gradient(160deg, #2A4D7A 0%, var(--navy-deep) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.16);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transform: scale(calc(0.86 + 0.14 * var(--p, 1)));
}
.aio-core::before {
  content: ""; position: absolute; inset: -14px; border-radius: 34px;
  border: 1px solid rgba(201, 111, 74, 0.35);
  opacity: var(--p, 1); transition: opacity .3s;
}
.aio-core-word { font-family: Lora, serif; font-weight: 500; font-size: clamp(22px, 2vw, 28px); color: #fff; letter-spacing: -0.01em; }
.aio-core-word::after { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); margin-left: 4px; vertical-align: middle; }
.aio-core-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }

.aio-sats { display: contents; }
.aio-sat {
  --q: 1;
  position: absolute; left: 50%; top: 50%; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px 11px 12px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: clamp(13px, 1.05vw, 15.5px); font-weight: 700; white-space: nowrap; color: #fff;
  opacity: calc(0.05 + 0.95 * var(--q));
  transform:
    translate(-50%, -50%)
    translate(
      calc(var(--tx) * var(--r)  + (var(--sx, var(--tx)) * var(--far) - var(--tx)) * var(--r)  * (1 - var(--q))),
      calc(var(--ty) * var(--ry) + (var(--sy, var(--ty)) * var(--far) - var(--ty)) * var(--ry) * (1 - var(--q)))
    )
    scale(calc(0.85 + 0.15 * var(--q)));
  will-change: transform, opacity;
}
/* Zielpositionen im Ring (Desktop) — in Einheiten von --r / --ry */
.aio-sat[data-i="0"] { --tx: -1;    --ty: -0.72; }
.aio-sat[data-i="1"] { --tx: 1;     --ty: -0.72; }
.aio-sat[data-i="2"] { --tx: -1.38; --ty: 0.08; }
.aio-sat[data-i="3"] { --tx: 1.38;  --ty: 0.08; }
.aio-sat[data-i="4"] { --tx: -1;    --ty: 0.9; }
.aio-sat[data-i="5"] { --tx: 1;     --ty: 0.9; }
.aio-sat[data-i="6"] { --tx: 0;     --ty: -1.28; --sx: -1.1; --sy: -0.55; }
.aio-sat[data-i="7"] { --tx: 0;     --ty: 1.32;  --sx: 1.1;  --sy: 0.55; }
.aio-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--coral); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; }
.aio-ic svg { width: 17px; height: 17px; }
.aio-foot { position: relative; z-index: 3; text-align: center; max-width: 620px; font-size: 15px; color: rgba(255, 255, 255, 0.72); margin-top: clamp(8px, 1.5vh, 20px); opacity: calc(var(--p, 1) * var(--p, 1)); transition: opacity .3s; }

@media (min-width: 861px) and (max-height: 760px) {
  .aio-foot { display: none; }
  .aio-title { font-size: clamp(26px, 3vw, 40px); }
}

/* Handy (Hochkant): der Zoom bleibt gepinnt und scrollgesteuert — nur das
   Layout wird kompakt: kleineres Viereck, die acht Bausteine als schmale
   Pills in vier Zweierreihen über und unter dem Viereck, sie fliegen von
   links/rechts herein. */
@media (max-width: 860px) {
  .aio { height: 260svh; }
  .aio-pin { padding: 68px 16px 10px; justify-content: flex-start; }
  .aio-head { margin: clamp(14px, 3svh, 30px) 0 4px; }
  .aio-head .kicker { font-size: 11px; margin-bottom: 8px; }
  .aio-title { font-size: clamp(26px, 7.2vw, 34px); min-height: 2.15em; }
  /* Wie am Desktop ein Ring, nur enger: in der Mitte nur das kleine c
     (unser Icon), aussen herum die acht Begriffe — oben einer, dann zwei
     Paare, links und rechts neben dem c eines, unten einer. */
  .aio-stage {
    --r: clamp(96px, calc(25vw + 18px), 126px);
    --ry: clamp(42px, 5.6svh, 54px);
    --far: 4;
    height: calc(var(--ry) * 4.6 + 64px);
  }
  .aio-core { width: 58px; border-radius: 16px; gap: 0; }
  .aio-core::before { inset: -6px; border-radius: 22px; }
  /* Nur das c mit dem Punkt — Wortmarke und Zeile darunter treten zurueck */
  .aio-core-word { font-size: 0; line-height: 1; }
  .aio-core-word::before { content: "c"; font-family: Lora, serif; font-weight: 500; font-size: 27px; color: #fff; }
  .aio-core-word::after { width: 4px; height: 4px; margin-left: 2px; }
  .aio-core-tag { display: none; }
  .aio-sat {
    gap: 7px; padding: 6px 9px 6px 6px; border-radius: 10px;
    font-size: 11.5px; line-height: 1.15; white-space: normal; text-align: left;
    width: min(146px, calc(50vw - 46px));
    min-height: 40px; box-sizing: border-box;
  }
  .aio-ic { width: 22px; height: 22px; border-radius: 7px; }
  .aio-ic svg { width: 13px; height: 13px; }
  .aio-sat[data-i="0"] { --tx: -1; --ty: -1.15; --sx: -1.5; --sy: -0.6; }
  .aio-sat[data-i="1"] { --tx: 1;  --ty: -1.15; --sx: 1.5;  --sy: -0.6; }
  .aio-sat[data-i="2"] { --tx: -1; --ty: 0;     --sx: -1.5; --sy: 0; }
  .aio-sat[data-i="3"] { --tx: 1;  --ty: 0;     --sx: 1.5;  --sy: 0; }
  .aio-sat[data-i="4"] { --tx: -1; --ty: 1.15;  --sx: -1.5; --sy: 0.6; }
  .aio-sat[data-i="5"] { --tx: 1;  --ty: 1.15;  --sx: 1.5;  --sy: 0.6; }
  .aio-sat[data-i="6"] { --tx: 0;  --ty: -2.3;  --sx: 0;    --sy: -0.95; }
  .aio-sat[data-i="7"] { --tx: 0;  --ty: 2.3;   --sx: 0;    --sy: 0.95; }
  .aio-foot { display: none; }
}
/* Sehr flache Fenster (Handy quer): kein Pin, statischer Ring als Raster */
@media (max-height: 480px) {
  .aio { height: auto; padding: 48px 0; }
  .aio-pin { position: static; height: auto; overflow: visible; padding-top: 0; }
  .aio-title { min-height: 0; }
  .aio-t-b { display: none; }
  .aio-stage { height: auto; max-height: none; flex-direction: column; gap: 22px; margin-top: 10px; }
  .aio-core { transform: none; }
  .aio-sats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 560px; }
  .aio-sat { position: static; transform: none; opacity: 1; white-space: normal; width: auto; }
  .aio-foot { opacity: 1; margin-top: 26px; }
}

/* ============================================================
   FEATURE-SEKTIONEN — SevenRooms-Vollflächen im Wechsel
   ============================================================ */
.feat { padding: clamp(72px, 10vw, 140px) 0; }
.feat--sand { background: var(--sand); }
.feat--sage { background: var(--sage); }
.feat--cream { background: var(--cream); }
.feat--navy { background: var(--navy-deep); color: #fff; }
.feat--navy h2, .feat--navy .checks strong { color: #fff; }
.feat--navy p, .feat--navy .checks li { color: rgba(255, 255, 255, 0.78); }
.feat-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.feat--flip .feat-copy { order: 2; }
.feat--flip .feat-media { order: 1; }
.feat-copy h2 { font-size: clamp(34px, 4.2vw, 60px); }
.feat-copy > p { font-size: clamp(16.5px, 1.25vw, 19px); margin-top: 22px; max-width: 520px; }
.feat-copy .btn { margin-top: 32px; }
.feat-media { position: relative; }
@media (max-width: 860px) {
  .feat-grid { grid-template-columns: 1fr; gap: 36px; }
  .feat--flip .feat-copy { order: 1; }
  .feat--flip .feat-media { order: 2; }
}

/* Anruf-Karte über dem Bild (Feature 1) */
.call-card {
  position: absolute; right: clamp(-12px, -1vw, -20px); bottom: clamp(-18px, -1.5vw, -28px); z-index: 2;
  width: min(74%, 320px);
  background: #fff; border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 24px 60px rgba(22, 41, 63, 0.22);
  font-size: 13px; line-height: 1.4;
}
.call-card-top { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--coral-text); margin-bottom: 8px; }
.call-card-top .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: live 1s ease-in-out infinite; }
.call-card .bubble { background: var(--sand); color: var(--ink); border-radius: 12px 12px 12px 4px; padding: 8px 11px; margin-top: 6px; max-width: 92%; }
.call-card .bubble.guest { background: var(--navy); color: #fff; border-radius: 12px 12px 4px 12px; margin-left: auto; }
.call-card .bubble.done { background: var(--green-soft); color: #2F6B48; font-weight: 700; display: flex; gap: 8px; align-items: center; max-width: 100%; border-radius: 12px; }
.call-card .check { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 860px) {
  .call-card { left: 10px; right: 10px; bottom: 10px; width: auto; }
  .ai-img--phone { aspect-ratio: 4 / 4.9; }
  .ai-img--phone .orb-wrap { left: 50%; top: 31%; width: 54%; }
  .ai-img--team .orb-wrap { width: 54%; }
}

/* Laptop-Rahmen (Feature 2) */
.laptop { width: min(680px, 100%); margin: 0 auto; }
.laptop-screen {
  position: relative; aspect-ratio: 16 / 10;
  background: #FDFBF7;
  border: clamp(7px, 0.9vw, 10px) solid #0F1B2C;
  border-bottom-width: clamp(10px, 1.2vw, 14px);
  border-radius: 16px 16px 4px 4px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}
.laptop-base {
  position: relative; height: 13px; width: 108%; margin: 0 -4%;
  background: linear-gradient(#EAE2D2, #CFC6B4);
  border-radius: 2px 2px 12px 12px;
}
.laptop-base::after {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 104px; height: 5px; border-radius: 0 0 8px 8px; background: #BFB6A2;
}

/* Dashboard-Mockup (Beispieldaten, keine echten Kundendaten) */
.dzo { position: absolute; inset: 0; display: flex; flex-direction: column; font-size: 10px; line-height: 1.3; color: var(--ink); }
.dzo-top { display: flex; align-items: center; gap: 10px; padding: 7px 11px; border-bottom: 1px solid #EDE7DA; flex: none; }
.dzo-brand { font-family: Lora, serif; font-weight: 600; font-size: 11px; color: var(--navy-deep); }
.dzo-dot { display: inline-block; width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--coral); margin-left: 2px; }
.dzo-restaurant { font-size: 8.5px; color: var(--muted); padding-left: 8px; border-left: 1px solid #EDE7DA; }
.dzo-search { margin-left: auto; flex: 1; max-width: 150px; font-size: 8px; color: var(--muted); background: #FBF8F2; border: 1px solid #EDE7DA; border-radius: 999px; padding: 4px 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dzo-bell { position: relative; flex: none; font-size: 10px; line-height: 1; }
.dzo-badge { position: absolute; top: -5px; right: -7px; background: var(--coral); color: #fff; font-size: 6.5px; font-weight: 700; border-radius: 999px; padding: 1px 3.5px; line-height: 1.3; }
.dzo-body { flex: 1; display: flex; min-height: 0; }
.dzo-side { flex: none; width: 78px; border-right: 1px solid #EDE7DA; padding: 9px 8px; display: flex; flex-direction: column; gap: 2px; }
.dzo-group { font-size: 6.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 6px 0 2px; }
.dzo-group:first-child { margin-top: 0; }
.dzo-nav { font-size: 8px; color: var(--body); padding: 4px 6px; border-radius: 5px; }
.dzo-nav.is-active { background: var(--coral-soft); color: var(--coral-text); font-weight: 700; }
.dzo-main { flex: 1; min-width: 0; padding: 9px 11px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.dzo-title { margin: 0; font-family: Lora, serif; font-weight: 600; font-size: 13px; color: var(--navy-deep); }
.dzo-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 7px; flex: none; }
.dzo-revenue { background: var(--navy-deep); color: var(--cream); border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; min-height: 0; }
.dzo-label { display: block; font-size: 6.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; opacity: .7; margin-bottom: 3px; }
.dzo-revenue .dzo-label { color: rgba(250,246,239,.65); }
.dzo-amount { font-family: Lora, serif; font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.dzo-revenue .dz-bars { height: 34px; }
.dzo-revenue .dz-bars i { background: rgba(250,246,239,.22); }
.dzo-revenue .dz-bars i.hi { background: var(--coral); }
.dzo-brief { background: #fff; border: 1px solid #EDE7DA; border-radius: 8px; padding: 8px 10px; }
.dzo-brief p { margin: 0; font-size: 8px; line-height: 1.4; color: var(--body); }
.dzo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; flex: none; }
.dzo-stat { background: #fff; border: 1px solid #EDE7DA; border-radius: 7px; padding: 5px 7px; }
.dzo-stat .k { display: block; font-size: 6px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.dzo-stat .v { font-family: Lora, serif; font-weight: 600; font-size: 12.5px; color: var(--navy-deep); }
.dzo-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; flex: 1; min-height: 0; }
.dzo-panel { min-width: 0; background: #fff; border: 1px solid #EDE7DA; border-radius: 8px; padding: 7px 9px; overflow: hidden; }
.dzo-panel .ph { display: block; font-size: 7px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.dz-bars { flex: 1; min-height: 0; display: flex; align-items: flex-end; gap: 7px; padding-top: 4px; }
.dz-bars i { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--sand); height: calc(var(--h) * 1%); min-height: 4px; }
.dz-bars i.hi { background: var(--coral); }
.dz-row { display: flex; align-items: baseline; gap: 7px; padding: 4.5px 5px; border-bottom: 1px dashed #F0EADD; border-radius: 5px; font-size: 9.5px; }
.dz-row:last-child { border-bottom: none; }
.dz-row .tm { flex: none; width: 26px; font-weight: 700; color: var(--navy-deep); font-variant-numeric: tabular-nums; }
.dz-row .nm { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--body); }
.dz-row .tg { flex: none; font-size: 7.5px; font-weight: 700; color: var(--muted); }
.dz-row.dz-newrow { background: var(--green-soft); }
.dz-row.dz-newrow .tg { color: #2F6B48; }
@media (max-width: 420px) { .dzo-lists { grid-template-columns: 1fr; } .dzo-panel:last-child { display: none; } }

/* Handy (Feature 3) */
.phone { width: min(280px, 64vw); margin: 0 auto; }
.phone-screen {
  position: relative; aspect-ratio: 9 / 18.5;
  background: var(--cream);
  border: 8px solid #0F1B2C; border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(22, 41, 63, 0.2);
  padding: 40px 12px 12px;
  display: flex; flex-direction: column; gap: 9px;
}
.phone-screen::before { content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 74px; height: 18px; border-radius: 999px; background: #0F1B2C; }
.loyal { background: var(--navy-deep); border-radius: 16px; padding: 14px 14px 12px; color: var(--cream); }
.loyal .r { font-family: Lora, serif; font-weight: 600; font-size: 14px; }
.loyal .t { font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9FB3CC; margin-top: 1px; }
.stamps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 12px; }
.stamps i { aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed rgba(250, 246, 239, 0.4); }
.stamps i.f { border: none; background: var(--coral); position: relative; }
.stamps i.f::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; }
.loyal .n { font-size: 9px; color: #BCC9DC; margin-top: 10px; }
.ph-row { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 10px 11px; }
.ph-row .ic { flex: none; width: 26px; height: 26px; border-radius: 9px; background: var(--coral-soft); color: var(--coral-text); display: flex; align-items: center; justify-content: center; }
.ph-row .t1 { font-size: 10.5px; font-weight: 700; color: var(--navy-deep); }
.ph-row .t2 { font-size: 8.5px; color: var(--muted); }

/* Stimmen (Feature 4) */
.voice-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.voice-play {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 20px 8px 8px; cursor: pointer; text-align: left;
  font-family: Karla, sans-serif; font-size: 15px; font-weight: 700; color: var(--ink);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.voice-play:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(22, 41, 63, 0.08); }
.voice-play .ic { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .18s; }
.voice-play .vn { display: block; line-height: 1.1; }
.voice-play .traits { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.voice-play[aria-pressed="true"] { border-color: var(--coral-deep); }
.voice-play[aria-pressed="true"] .ic { background: var(--coral-deep); animation: live 1.2s ease-in-out infinite; }
.voice-note { font-size: 14px; color: var(--muted); margin-top: 16px; }

/* ============================================================
   ZAHLEN
   ============================================================ */
.numbers { padding: clamp(72px, 10vw, 140px) 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.numbers h2 { font-size: clamp(34px, 5vw, 64px); max-width: 760px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(40px, 6vw, 64px); }
.stat { border-top: 2px solid var(--ink); padding-top: 24px; }
.stat .num { font-family: Lora, serif; font-weight: 500; font-size: clamp(64px, 8vw, 128px); line-height: 0.95; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.stat p { font-size: 16px; margin-top: 14px; max-width: 280px; }
.stats-note { font-size: 12.5px; color: var(--muted); margin-top: 26px; }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .stat .num { font-size: clamp(52px, 16vw, 80px); }
}

/* ============================================================
   PREISE — Teaser
   ============================================================ */
.price-teaser { padding: clamp(72px, 10vw, 140px) 0; background: var(--sand); }
.price-teaser-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.price-teaser h2 { font-size: clamp(34px, 4.2vw, 60px); }
.price-teaser p { font-size: clamp(16.5px, 1.25vw, 19px); margin-top: 22px; max-width: 520px; }
.price-teaser .hero-actions { margin-top: 32px; }
.price-tiers { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.price-tiers li {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "name price" "note price"; align-items: center; column-gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 26px;
}
.price-tiers li.is-feat { border-color: var(--coral); box-shadow: 0 18px 44px rgba(22, 41, 63, 0.1); }
.pt-name { grid-area: name; font-weight: 700; color: var(--ink); font-size: 17px; }
.pt-name em { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-text); background: var(--coral-soft); border-radius: 999px; padding: 3px 9px; margin-left: 8px; vertical-align: middle; }
.pt-note { grid-area: note; font-size: 14px; color: var(--muted); }
.pt-price { grid-area: price; font-family: Lora, serif; font-weight: 500; font-size: clamp(26px, 2.4vw, 34px); color: var(--ink); letter-spacing: -0.02em; }
.pt-price::after { content: " / Monat"; font-family: Karla, sans-serif; font-size: 12.5px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
@media (max-width: 860px) { .price-teaser-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   PREISE — kompakte Zeile
   ============================================================ */
.price-band { padding: clamp(48px, 6vw, 80px) 0; background: var(--sand); }
.price-band-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 48px); }
.price-band h2 { font-size: clamp(22px, 2.4vw, 32px); max-width: 640px; }
.price-band .btn { flex: none; }
@media (max-width: 860px) { .price-band-inner { flex-direction: column; align-items: flex-start; } .price-band .btn { width: 100%; } }

/* ============================================================
   CTA — dunkel (SevenRooms „Ready to grow?"), oranger Knopf
   ============================================================ */
.cta-final { text-align: center; padding: clamp(80px, 12vw, 160px) 0; background: var(--ink); color: #fff; }
.cta-final h2 { font-size: clamp(38px, 6vw, 84px); color: #fff; }
.cta-sub { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255, 255, 255, 0.72); margin: 22px auto 0; max-width: 560px; }
.cta-num {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: clamp(30px, 4vw, 48px);
  background: var(--coral);
  border-radius: 16px;
  padding: clamp(20px, 2.8vw, 28px) clamp(38px, 5.4vw, 60px);
  box-shadow: 0 16px 40px rgba(201, 111, 74, 0.35);
  transition: background-color .18s, transform .18s, box-shadow .18s;
}
.cta-num:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(201, 111, 74, 0.45); }
.cta-num-label { font-family: Lora, serif; font-weight: 700; font-size: clamp(22px, 3.2vw, 34px); letter-spacing: -0.01em; line-height: 1.15; color: var(--navy-deep); }
.cta-final .hero-actions { margin-top: 28px; }

/* ============================================================
   FOOTER — dunkel, mehrspaltig (Startseite) / kompakt (Unterseiten)
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); margin-top: clamp(64px, 9vw, 124px); }
body.home .site-footer { margin-top: 0; border-top: 1px solid var(--line-dark); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--line-dark); }
.foot-brand p { color: rgba(255, 255, 255, 0.6); font-size: 15px; margin-top: 16px; max-width: 300px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.foot-col h3 { font-family: Karla, sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.foot-col a:hover { color: #fff; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 20px 36px; align-items: center; justify-content: space-between; padding: 34px 0 24px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14.5px; }
.foot-links a:hover { color: #fff; }
.foot-copy { width: 100%; padding: 22px 0 30px; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Seitenkopf für Unterseiten (Preise, Demo, Rechtliches) ---------- */
.page-head { padding: clamp(56px, 7vw, 96px) 0 0; }
.page-head h1 { font-size: clamp(38px, 5.6vw, 72px); }
.page-head h1 em { font-style: italic; color: var(--coral); }
.page-head p { font-size: 18px; max-width: 560px; margin-top: 20px; }

/* ---------- Artikel (Impressum, Datenschutz) ---------- */
.article { padding: 40px 0 0; }
.article h2 { font-size: 24px; margin: 40px 0 10px; }
.article p, .article li { font-size: 16px; color: var(--body); }
.article ul { margin: 10px 0; padding-left: 20px; }
.article a { color: var(--coral-text); font-weight: 700; }
.article-meta { font-size: 13.5px; color: var(--muted); margin-top: 36px; }

/* ---------- Formulare (Demo & Onboarding) ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 18px 50px rgba(22, 41, 63, 0.06);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 14px; font-weight: 700; color: var(--ink); }
.form-field label .opt { font-weight: 400; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font-family: Karla, sans-serif; font-size: 15.5px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 15px; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--coral-deep); outline-offset: 1px; border-color: transparent;
}
.form-field textarea { resize: vertical; min-height: 84px; }
.field-hint { font-size: 13px; color: var(--muted); margin-top: 6px; }

.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--body); cursor: pointer; }
.consent-row input { margin-top: 3px; accent-color: var(--coral-deep); width: 16px; height: 16px; flex: none; }
.consent-row a { color: var(--coral-text); font-weight: 700; }

.form-status {
  margin-top: 16px;
  background: var(--sand); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px; line-height: 1.5;
}
.form-status.is-ok { background: var(--green-soft); border-color: #CFE3D4; }
.form-status.is-error { background: var(--coral-soft); border-color: #ECD2C2; }
.form-status-title { font-weight: 700; color: var(--ink); margin: 0; }
.form-status.is-ok .form-status-title { color: #2F6B48; }
.form-status.is-error .form-status-title { color: var(--coral-deep); }
.form-status-text { margin: 0; }
.form-status a { color: var(--coral-text); font-weight: 700; }

/* ---------- Onboarding-Fragebogen ---------- */
.onb { padding: 40px 0 0; }
.onb-sr { position: absolute; left: -9999px; }
.onb-progress { height: 6px; background: var(--sand); border-radius: 999px; overflow: hidden; }
.onb-progress-fill { height: 100%; width: 20%; background: var(--coral-deep); border-radius: 999px; transition: width .35s ease; }
.onb-stepcount { font-size: 13px; font-weight: 700; color: var(--muted); margin: 10px 0 22px; }
.onb-form { display: flex; flex-direction: column; gap: 8px; }
.onb-step { border: none; margin: 0; padding: 0; min-inline-size: auto; }
.onb-step legend {
  font-family: Lora, serif; font-size: 24px; font-weight: 500; color: var(--ink);
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; padding: 0;
}
.onb-step-kicker { font-family: Karla, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-text); }
.onb-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .onb-grid { grid-template-columns: 1fr 1fr; } }
.onb-form .form-field { margin-bottom: 18px; }
.onb-grid .form-field { margin-bottom: 0; }
.onb-choice-label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; display: inline-flex; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice > span {
  font-size: 14px; font-weight: 700; color: var(--body);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 16px; transition: background .15s, border-color .15s, color .15s;
}
.choice:hover > span { border-color: var(--coral); }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.choice input:focus-visible + span { outline: 2.5px solid var(--coral-deep); outline-offset: 2px; }
.onb-consent { margin-top: 4px; }
.onb-nav { display: flex; gap: 12px; margin-top: 28px; }
.onb-nav #onb-next, .onb-nav #onb-submit { margin-left: auto; }
.onb.onb-js .onb-step { display: none; }
.onb.onb-js .onb-step.active { display: block; animation: onbIn .35s ease; }
.onb:not(.onb-js) .onb-progress,
.onb:not(.onb-js) .onb-stepcount { display: none; }
.onb-foot { font-size: 14px; color: var(--muted); margin-top: 26px; }
.onb-foot a { color: var(--coral-text); font-weight: 700; }
@keyframes onbIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Scroll-Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
}

@keyframes live { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

@media (prefers-reduced-motion: reduce) {
  .brand-dot, .voice-play[aria-pressed="true"] .ic, .call-card-top .dot { animation: none; }
  html { scroll-behavior: auto; }
  .aio-t, .aio-core::before, .aio-foot { transition: none; }
  .orb, .orb-blob, .orb-ring, .orb-wrap::before { animation: none; }
  .orb-ring { display: none; }
  /* Der Ring steht sofort — site.js setzt bei reduced motion --q/--p auf 1. */
}

/* ---------- Fokus ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 4px;
}

/* ============================================================
   PREISE-SEITE (preise.html) — Tarif-Finder (Higgsfield-Muster: links
   Schritte mit Chips & Reglern, rechts die klebende Empfehlung) +
   Bausteine-Karten + Beispiel-Kombinationen.
   ============================================================ */
.p-lede { font-size: 18px; color: var(--muted); margin-top: 18px; max-width: 620px; }
.p-fine { font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.p-priceline { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.p-priceline span { font-size: 15px; color: var(--ink); font-weight: 700; overflow-wrap: break-word; min-width: 0; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; }
.p-priceline small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; margin-top: 2px; line-height: 1.45; }
.p-priceline strong { flex: none; text-align: right; color: var(--ink); font-family: Lora, serif; font-weight: 500; font-size: 17px; white-space: nowrap; }
.p-cta { text-align: center; margin-top: clamp(56px, 8vw, 96px); padding-top: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.p-cta h2 { font-size: clamp(28px, 4vw, 44px); }
.p-cta p { font-size: 16px; max-width: 520px; margin: 14px auto 0; }

/* --- Tarif-Finder (dunkel) --- */
.tf {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, #112238 55%, var(--ink-deep) 100%);
  color: #fff; padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 104px);
}
.tf::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 88% 6%, rgba(201, 111, 74, 0.28) 0%, rgba(201, 111, 74, 0) 70%),
    radial-gradient(45% 40% at 8% 100%, rgba(58, 96, 146, 0.35) 0%, rgba(58, 96, 146, 0) 70%);
}
.tf-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.tf-head h1 { color: #fff; font-size: clamp(34px, 4.6vw, 62px); }
.tf-head p { color: rgba(255, 255, 255, 0.7); font-size: 17px; margin-top: 16px; max-width: 560px; }
.tf-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: clamp(20px, 3vw, 40px); align-items: start; margin: 0; }
.tf-steps { display: flex; flex-direction: column; gap: 14px; }
.tf-step { display: grid; grid-template-columns: 30px 1fr; gap: 14px; border-radius: var(--radius); padding: clamp(18px, 2.6vw, 28px); border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.06); }
.tf-step:nth-child(1) { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)); border-color: rgba(255, 255, 255, 0.16); }
.tf-step:nth-child(2) { background: linear-gradient(135deg, rgba(201, 111, 74, 0.2), rgba(201, 111, 74, 0.06)); border-color: rgba(201, 111, 74, 0.4); }
.tf-step:nth-child(3) { background: linear-gradient(135deg, rgba(221, 230, 224, 0.12), rgba(221, 230, 224, 0.03)); border-color: rgba(221, 230, 224, 0.18); }
.tf-num { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--ink); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tf-step:nth-child(2) .tf-num { background: var(--coral); color: var(--ink); }
.tf-step:nth-child(3) .tf-num { background: var(--sage); color: var(--ink); }
.tf-step-body { min-width: 0; }
.tf-step h2 { color: #fff; font-family: Karla, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.tf-hint { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.tf-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.tf-chip { position: relative; display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 12px; background: rgba(11, 21, 36, 0.35); border: 1px solid rgba(255, 255, 255, 0.14); cursor: pointer; transition: background .15s, border-color .15s; }
.tf-chip:hover { border-color: rgba(255, 255, 255, 0.35); }
.tf-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tf-chip-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.tf-chip-ic svg { width: 16px; height: 16px; }
.tf-chip-txt { flex: 1; min-width: 0; font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.2; }
.tf-chip-txt small { display: block; font-size: 12px; font-weight: 400; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }
.tf-chip-check { flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid rgba(255, 255, 255, 0.35); position: relative; transition: background .15s, border-color .15s; }
.tf-chip-check::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid var(--navy-deep); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); opacity: 0; }
.tf-chip:has(input:checked) { background: rgba(201, 111, 74, 0.22); border-color: var(--coral); }
.tf-chip:has(input:checked) .tf-chip-ic { background: var(--coral); color: var(--navy-deep); }
.tf-chip:has(input:checked) .tf-chip-check { background: var(--coral); border-color: var(--coral); }
.tf-chip:has(input:checked) .tf-chip-check::after { opacity: 1; }
.tf-chip:has(input:focus-visible) { outline: 2.5px solid var(--coral); outline-offset: 2px; }
.tf-toggle { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: 14.5px; color: rgba(255, 255, 255, 0.85); cursor: pointer; }
.tf-toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tf-switch { flex: none; width: 40px; height: 22px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); position: relative; transition: background .15s; }
.tf-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .15s; }
.tf-toggle:has(input:checked) .tf-switch { background: var(--coral); }
.tf-toggle:has(input:checked) .tf-switch::after { transform: translateX(18px); }
.tf-toggle:has(input:focus-visible) .tf-switch { outline: 2.5px solid var(--coral); outline-offset: 2px; }

.tf-slider { margin-top: 22px; }
.tf-slider-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.tf-slider-head label { font-size: 14.5px; font-weight: 700; color: #fff; }
.tf-slider-head output { font-family: Lora, serif; font-size: 24px; font-weight: 500; color: var(--coral); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.tf-slider input[type="range"] {
  --fill: 50%;
  -webkit-appearance: none; appearance: none; width: 100%; height: 30px; margin: 0; background: transparent; cursor: pointer;
}
.tf-slider input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--coral) var(--fill), rgba(255, 255, 255, 0.16) var(--fill)); }
.tf-slider input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.16); }
.tf-slider input[type="range"]::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--coral); }
.tf-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; margin-top: -10px; border-radius: 50%; background: #fff; border: 3px solid var(--coral); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4); }
.tf-slider input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--coral); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4); }
.tf-slider input[type="range"]:focus-visible { outline: none; }
.tf-slider input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2.5px solid var(--coral); outline-offset: 3px; }
.tf-scale { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.45); margin-top: 2px; }
.tf-scale-min { position: relative; height: 16px; }
.tf-scale-min span { position: absolute; left: var(--at); transform: translateX(-50%); }
.tf-scale-min span:first-child { transform: translateX(-30%); }
.tf-scale-min span:last-child { transform: translateX(-100%); }
@media (max-width: 560px) { .tf-scale-min span:last-child { display: none; } }
.tf-slider .tf-hint { margin-top: 10px; }
.tf-facts { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.tf-facts li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }
.tf-facts li::before { content: "✓"; flex: none; color: var(--coral); font-weight: 700; }

.tf-result { position: sticky; top: 88px; }
.tf-card { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); color: var(--ink); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.5); border-top: 5px solid var(--coral); }
.tf-reco { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-text); background: var(--coral-soft); border-radius: 999px; padding: 5px 12px; }
.tf-name { font-size: clamp(26px, 2.6vw, 34px); margin-top: 14px; }
.tf-name-sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.tf-total { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.tf-amount { font-family: Lora, serif; font-weight: 500; font-size: clamp(40px, 4vw, 54px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.tf-per { font-size: 14px; font-weight: 700; color: var(--muted); line-height: 1.2; }
.tf-per small { font-weight: 400; font-size: 12px; }
.tf-once { font-size: 14.5px; color: var(--body); margin-top: 8px; }
.tf-once strong { color: var(--ink); font-family: Lora, serif; font-size: 18px; font-weight: 500; }
.tf-lines { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px solid var(--line); }
.tf-lines li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.tf-line-n { font-weight: 700; color: var(--ink); min-width: 0; }
.tf-line-n small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 1px; }
.tf-lines strong { flex: none; font-family: Lora, serif; font-weight: 500; font-size: 15.5px; color: var(--ink); white-space: nowrap; }
.tf-lines strong small { font-family: Karla, sans-serif; font-size: 11.5px; font-weight: 700; color: var(--muted); margin-left: 3px; }
.tf-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.tf-card .btn { width: 100%; margin-top: 18px; }
.tf-call { margin-top: 14px; justify-content: center; width: 100%; font-size: 15px; }
.tf-bar { display: none; }
@media (max-width: 980px) {
  .tf-grid { grid-template-columns: 1fr; }
  .tf-result { position: static; }
  /* Der Summen-Balken klebt fest am unteren Rand, solange man im
     Tarif-Finder ist (Klasse .is-on kommt aus preise.js). Zwei Zeilen,
     damit Tarifname und Preis beide vollstaendig lesbar bleiben. */
  .tf-bar {
    /* Nicht ueber bottom positioniert: iOS legt den Layout-Viewport unter die
       Safari-Leiste, dadurch faerbte der orange Balken die Leiste mit ein.
       Ueber die kleine Viewport-Hoehe (svh) sitzt er immer darueber. */
    position: fixed; left: 12px; right: 12px; z-index: 60;
    top: calc(100vh - 14px - var(--cc-h, 0px));
    top: calc(100svh - 14px - var(--cc-h, 0px));
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "name arr" "total arr";
    column-gap: 14px; align-items: center;
    background: var(--coral); color: var(--ink);
    border-radius: 14px; padding: 10px 16px 11px;
    box-shadow: 0 16px 44px rgba(11, 21, 36, 0.5);
    font-size: 14px; font-weight: 700;
    opacity: 0; transform: translateY(calc(-100% + 16px)); pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), top .2s var(--ease);
  }
  .tf-bar.is-on { opacity: 1; transform: translateY(-100%); pointer-events: auto; }
  .tf-bar-name { grid-area: name; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; opacity: .72; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .tf-bar-total { grid-area: total; font-family: Lora, serif; font-weight: 500; font-size: 17px; line-height: 1.25; margin-top: 1px; }
  .tf-bar-arr { grid-area: arr; align-self: center; font-size: 19px; }
  /* Platz, damit der Balken nichts verdeckt */
  .tf { padding-bottom: 120px; }
}
@media (max-width: 560px) {
  .tf-chips { grid-template-columns: 1fr; }
  .tf-step { grid-template-columns: 1fr; }
  .tf-num { display: none; }
}

/* --- Bausteine --- */
.mod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: clamp(32px, 5vw, 56px); }
@media (max-width: 860px) { .mod-grid { grid-template-columns: 1fr; } }
.mod { position: relative; }
.mod-num { position: absolute; top: 22px; right: 24px; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); color: var(--ink); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mod h3 { font-size: 22px; padding-right: 44px; }
.mod-sub { font-size: 14.5px; color: var(--muted); margin: 8px 0 16px; }
.mod .p-priceline:first-of-type { border-top: none; padding-top: 0; }
.mod--dep { background: var(--sand); border-color: transparent; box-shadow: none; }
.dep { display: grid; grid-template-columns: auto auto 1fr; gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(22, 41, 63, 0.1); font-size: 14.5px; }
.dep:first-of-type { border-top: none; }
.dep-from { font-weight: 700; color: var(--ink); }
.dep-from small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.dep-arr { color: var(--coral); font-weight: 700; }
.dep-to { color: var(--body); }
@media (max-width: 520px) { .dep { grid-template-columns: 1fr; gap: 4px; } .dep-arr { display: none; } }

/* --- Beispiel-Kombinationen --- */
.ex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 860px) { .ex-grid { grid-template-columns: 1fr; } }
.ex { text-align: left; display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; cursor: pointer; font-family: Karla, sans-serif; color: var(--ink); transition: transform .18s, box-shadow .18s, border-color .18s; }
.ex:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(22, 41, 63, 0.1); border-color: var(--ink); }
.ex.is-feat { border-color: var(--coral); }
.ex-name { font-weight: 700; font-size: 16px; }
.ex-price { font-family: Lora, serif; font-weight: 500; font-size: clamp(28px, 2.6vw, 36px); letter-spacing: -0.02em; margin-top: 4px; }
.ex-price small { font-family: Karla, sans-serif; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-left: 6px; letter-spacing: 0; }
.ex-sub { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- Handy: radikal vereinfacht ----------
   Auf dem Handy bleibt je Sektion nur das Nötigste: Headline, ein Satz,
   ein Knopf. Listen, Zweit-Buttons, Nebentexte, Stimmen, Dashboard-Laptop
   und Zweit-Orb sind ausgeblendet; Feature 4 komplett. Diese Regeln stehen
   bewusst am Ende der Datei, damit sie alle Basisregeln überschreiben. */
@media (max-width: 860px) {
  /* Hero: Headline, ein Satz, ein Knopf, der Orb mit Anruf-Pill */
  .hero .arrow-link, .hero-note, .hero-media-note { display: none; }
  .hero-copy { padding-bottom: 28px; }
  .hero-media { min-height: 0; padding: 36px 20px 32px; gap: 22px; }
  .orb-wrap { width: clamp(170px, 48vw, 220px); }

  /* Vertrauen: nur die vier Fakten */
  .trust { padding: 32px 0; }
  .trust-lede { display: none; }
  .trust-row { margin-top: 0; gap: 14px; }
  .trust-row strong { font-size: 22px; }
  .trust-row span { font-size: 13px; }

  /* Features: keine Listen, keine Nebentexte, ein Knopf */
  .feat, .numbers, .price-teaser { padding: 52px 0; }
  .feat-grid { gap: 26px; }
  .feat-copy h2 { font-size: clamp(30px, 8.4vw, 38px); }
  .feat-copy > p { font-size: 16px; margin-top: 14px; }
  .feat-copy .btn { margin-top: 22px; }
  .checks, .voice-row, .voice-note { display: none; }
  /* Feature 1: nur die Anruf-Karte auf dunklem Grund, kein Orb
     (die Karte ist Geschwister der Orb-Fläche, deshalb wird .feat-media
     selbst zur dunklen Fläche) */
  .ai-img--phone { display: none; }
  #agent .feat-media {
    padding: 18px; border-radius: var(--radius);
    background:
      radial-gradient(120% 90% at 20% 15%, rgba(201, 111, 74, 0.55), transparent 55%),
      radial-gradient(90% 80% at 85% 90%, rgba(31, 58, 95, 0.75), transparent 60%),
      linear-gradient(160deg, #2B3A4E, #6E5544 60%, #C9986B);
  }
  #agent .call-card { position: static; width: 100%; max-width: 360px; margin: 0 auto; }
  /* Feature 2: Dashboard-Laptop ist auf dem Handy unlesbar → weg */
  .feat--navy .feat-media { display: none; }
  /* Feature 3: Handy-Mockup kleiner */
  .phone { width: min(210px, 56vw); }
  /* Feature 4 (Stimmen) komplett weg — der Orb steht schon im Hero */
  .feat--cream { display: none; }

  /* Zahlen: drei Werte, sonst nichts */
  .numbers h2 { font-size: clamp(30px, 8.4vw, 38px); }
  .stats { gap: 16px; margin-top: 28px; }
  .stat { padding-top: 14px; }
  .stat .num { font-size: clamp(44px, 14vw, 64px); }
  .stat p { font-size: 15px; margin-top: 8px; }
  .stats-note { display: none; }

  /* Preise: Headline, ein Satz, ein Knopf */
  .price-teaser-inner { gap: 0; }
  .price-teaser h2 { font-size: clamp(30px, 8.4vw, 38px); }
  .price-teaser p { font-size: 16px; margin-top: 14px; }
  .price-teaser .hero-actions { margin-top: 22px; }
  .price-teaser .arrow-link, .price-tiers { display: none; }

  /* CTA: Headline, der orange Knopf, „Demo buchen" */
  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: clamp(34px, 9.6vw, 44px); }
  .cta-sub { display: none; }
  .cta-num { margin-top: 26px; padding: 18px 26px; width: 100%; }
  .cta-num-label { font-size: clamp(20px, 5.8vw, 24px); }
  .cta-final .hero-actions { margin-top: 18px; }

  /* Film auf dem Handy: Texte oben, Laptop/Karte unten */
  .film { height: 760svh; }
  .fo-hero { padding-top: 60px; }
  .fo-hero h1 { font-size: clamp(34px, 9.6vw, 44px); }
  .fo-hero .hero-actions .btn { width: 100%; }
  .fo-text { align-items: flex-start; padding-top: 96px; }
  .fo-text h2 { font-size: clamp(30px, 8.8vw, 40px); max-width: none; }
  .fo-right .wrap { align-items: flex-start; }
  .fo-right .wrap > * { text-align: left; max-width: none; }
  .fo-right p { margin-left: 0; }
  .fo-laptop { align-items: flex-end; padding-bottom: 6vh; }
  .fo-laptop .laptop { width: 92vw; margin: 0 auto; transform-origin: 50% 100%; }
  .fo-laptop .call-card { bottom: 4%; width: 88vw; }
  .fo-cta .cta-num { width: 100%; }
  .film-dots { display: none; }

  /* Dashboard im Film: Suchfeld und Glocke sind auf dem Handy nur Beiwerk.
     Der Dashboard-Rumpf liegt ohnehin hinter der Anruf-Karte und ragte nur
     als angeschnittene Wortreste hervor — auf dem Handy bleibt der Kopf. */
  .dzo-search, .dzo-bell { display: none; }
  .dzo-top { gap: 8px; }
  .dzo-restaurant { border-left: 0; padding-left: 0; }
  /* Auf dem Handy zeigt der Laptop nur das fertige Dashboard — die
     Anruf-Karte verdeckte es und liess nur Wortreste stehen.
     Am Desktop bleiben Dashboard und Karte zusammen. */
  .fo-laptop .call-card { display: none; }
  /* Die unteren Listen passen nicht mehr auf den schmalen Bildschirm und
     wuerden angeschnitten — Kennzahlen reichen auf dem Handy. Der Bildschirm
     wird dafuer etwas hoeher, damit die Kennzahlen-Reihe ganz drauf ist. */
  .fo-laptop .dzo-lists { display: none; }
  .fo-laptop .laptop-screen { aspect-ratio: 16 / 11; }

  /* Tarif-Finder: ruhigere Typo, weniger Gedraenge */
  .tf-head p { font-size: 15.5px; margin-top: 12px; }
  .tf-step { padding: 18px 16px; }
  .tf-step h2 { font-size: 16.5px; }
  .tf-hint { font-size: 12.5px; }
  .tf-facts li { font-size: 13.5px; line-height: 1.45; }
  .tf-chip-txt { font-size: 14px; }
  .tf-chip-txt small { font-size: 11.5px; }

  /* Footer: Marke, Kontakt, Rechtliches */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding: 36px 0 22px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand p { display: none; }
  .foot-col:nth-child(2) { display: none; } /* Produkt-Spalte (Anker gibt es oben schon) */
  .foot-col { font-size: 14px; gap: 8px; }
  .foot-copy { padding: 16px 0 24px; font-size: 12.5px; }
}
/* Ohne JS: alles im Ring, Fortschritt = 1 (Default der Custom Properties). */
