/* Timon Rochholz Webdesign — eigene Firmenseite.
   Palette: warmes Papier, Tinte, Ultramarin→Violett als Akzent, Bernstein sparsam.
   Bewegungssystem: EINE Easing-Kurve (--ease), EINE Dauer-Skala (--t-fast/-med/-slow).
   Alle Effekte laufen darüber — kein Effekt-Zoo. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fraunces.woff2") format("woff2");
}

:root {
  --paper: #faf9f5;
  --card: #ffffff;
  --ink: #141b2e;
  --ink-soft: #4d5570;
  --line: #e7e4da;
  --accent: #2447e6;
  --accent-dark: #16309f;
  --violet: #7b4de3;
  --amber: #e9a13b;
  --grad: linear-gradient(100deg, var(--accent), var(--violet));
  --display: "Fraunces", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 20px;
  --shadow: 0 2px 6px rgba(20, 27, 46, 0.05), 0 18px 44px rgba(20, 27, 46, 0.09);
  /* Bewegungssystem */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.22s;
  --t-med: 0.45s;
  --t-slow: 0.8s;
}

@property --spot {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }

::selection { background: rgba(36, 71, 230, 0.18); }

/* Tastatur-Navigation: sichtbarer, konsistenter Focus-Ring (nie entfernen) */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible, .sticky-call:focus-visible, .way:focus-visible, .anfrage-link:focus-visible { border-radius: 999px; }
.kontakt-card :focus-visible, .claim :focus-visible { outline-color: #fff; }
.compare-range:focus-visible { outline: none; }
.compare:has(.compare-range:focus-visible) .handle { box-shadow: 0 4px 16px rgba(20, 27, 46, 0.3), 0 0 0 3px var(--accent); }

/* ---------- Wertigkeits-Layer: feines Papier-Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  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='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---------- Scroll-Progress als feine Gradient-Linie ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 90;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(250, 249, 245, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: inherit; line-height: 1.15; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; }
.brand-sub { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 8px;
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease);
}
.main-nav a:hover { color: var(--ink); }
/* Hover-Delikatesse: Gradient-Unterstreichung wächst von links */
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--t-med) var(--ease);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; flex: none; }
.btn-primary {
  --spot: 0;
  position: relative;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(36, 71, 230, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(36, 71, 230, 0.42); }
/* Lebendiger CTA: Spotlight folgt dem Cursor (nur Maus, nur mit Motion) */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .btn-primary {
    background-image:
      radial-gradient(110px circle at var(--mx, 50%) var(--my, -40%), rgb(255 255 255 / calc(0.3 * var(--spot))), transparent 62%),
      linear-gradient(120deg, var(--accent), var(--accent-dark));
    transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), --spot var(--t-med) var(--ease);
  }
  .btn-primary:hover { --spot: 1; }
}
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--accent-dark); box-shadow: 0 8px 24px rgba(10, 16, 40, 0.35); }
.btn-light:hover { transform: translateY(-2px); }
.btn-small { padding: 10px 18px; font-size: 14.5px; }
.btn-wa .wa-ic { color: #23b33a; }
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-outline-light .wa-ic { color: #4ade80; }
.btn-big { padding: 18px 34px; font-size: 18px; }
.btn-full { width: 100%; }

/* Ring-Puls auf dem Haupt-CTA (Hero + Sticky) */
@media (prefers-reduced-motion: no-preference) {
  .pulse-cta { position: relative; }
  .pulse-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    pointer-events: none;
    animation: ring 3.4s cubic-bezier(0.33, 1, 0.68, 1) 1.6s infinite;
  }
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(36, 71, 230, 0.35); }
  55% { box-shadow: 0 0 0 14px rgba(36, 71, 230, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 71, 230, 0); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 48px) clamp(56px, 9vh, 110px); }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 71, 230, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 71, 230, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 78%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow.g1 { width: 560px; height: 560px; top: -220px; right: -120px; background: rgba(36, 71, 230, 0.14); }
.hero-glow.g2 { width: 460px; height: 460px; bottom: -260px; left: -140px; background: rgba(233, 161, 59, 0.13); }
/* Scroll-Inszenierung: die Hero-Glows treiben beim Scrollen leicht mit (nur
   Browser mit Scroll-Timelines, reines Compositing, kein JS) */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-glow.g1 { animation: drift1 linear both; animation-timeline: scroll(); animation-range: 0 120vh; }
    .hero-glow.g2 { animation: drift2 linear both; animation-timeline: scroll(); animation-range: 0 120vh; }
  }
}
@keyframes drift1 { to { transform: translateY(150px) scale(1.1); } }
@keyframes drift2 { to { transform: translateY(-110px) scale(1.05); } }

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2eb872; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 184, 114, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(46, 184, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 184, 114, 0); }
}

h1 {
  font-family: var(--display);
  font-weight: 620;
  font-variation-settings: "opsz" 100;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.sub strong { color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.cta-note { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-row li::before {
  content: "";
  width: 15px; height: 15px; flex: none;
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
}

/* Typo-Entrance: Hero baut sich Wort für Wort auf (nur mit Motion, reines CSS) */
.hw { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .hw, .hb {
    animation: rise 0.85s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 75ms);
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(0.55em); }
  to { opacity: 1; transform: none; }
}

/* ---------- Browser-Mockup (geteilt: Hero + Arbeitsprobe) ---------- */
.browser {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #f2f0ea;
  border-bottom: 1px solid var(--line);
}
.tl { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.tl.r { background: #f56d62; } .tl.y { background: #f5bd4f; } .tl.g { background: #53c22b; }
.urlbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.urlbar .lock { width: 11px; height: 11px; color: #2eb872; }

/* Vorher/Nachher */
.mock-wrap { position: relative; }
/* Hover-Delikatesse: das Browser-Mockup neigt sich minimal zur Maus (JS setzt transform) */
.mock-wrap .browser { transition: transform 0.4s var(--ease); will-change: transform; }
.compare {
  position: relative;
  height: clamp(330px, 38vw, 420px);
  overflow: hidden;
  /* pan-y statt none: vertikales Scrollen über dem Mockup bleibt möglich,
     horizontale Zieh-Gesten gehören weiter dem Regler */
  touch-action: pan-y;
}
.pane { position: absolute; inset: 0; }

/* Vorher: Google-Suche ohne Treffer */
.pane-before { background: #f4f3ee; padding: 22px 24px; }
/* Inhalte links verankern (wie eine echte Google-Ergebnisspalte), damit die
   Ruheposition des Reglers nichts Wichtiges anschneidet */
.pane-before :where(.g-search, .g-result, .g-missing) { max-width: 72%; }
.g-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(20, 27, 46, 0.05);
  margin-bottom: 20px;
}
.g-ic { width: 15px; height: 15px; color: #9aa0b5; flex: none; }
/* Lebendes Mockup: blinkender Schreib-Cursor in der Suchleiste */
.caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  background: var(--ink-soft);
  vertical-align: text-bottom;
  opacity: 0;
}
.caret.on { opacity: 1; animation: blink 1.1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
.g-result { padding: 12px 4px; }
.g-line { display: block; height: 9px; border-radius: 5px; background: #dedbd1; margin-bottom: 8px; }
.g-line.w50 { width: 50%; } .g-line.w60 { width: 60%; } .g-line.w70 { width: 70%; }
.g-line.w75 { width: 75%; } .g-line.w85 { width: 85%; } .g-line.w90 { width: 90%; }
.g-missing {
  margin-top: 14px;
  border: 1.5px dashed #c8c4b8;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255, 255, 255, 0.55);
}
.g-missing strong { font-size: 15.5px; color: #6a7188; }
.g-missing span { font-size: 13.5px; color: #9aa0b5; }
.g-missing em { font-size: 12.5px; font-style: normal; color: #c26a5a; font-weight: 600; }

/* Nachher: fertige Mini-Webseite — Atmosphäre wie eine echte Demo, nicht nur Struktur */
.pane-after {
  background:
    radial-gradient(ellipse 75% 65% at 88% 8%, rgba(123, 77, 227, 0.42), transparent 62%),
    radial-gradient(ellipse 65% 55% at 22% 100%, rgba(233, 161, 59, 0.34), transparent 64%),
    radial-gradient(ellipse 40% 35% at 60% 45%, rgba(142, 164, 255, 0.16), transparent 70%),
    linear-gradient(150deg, #131b3d 0%, #1c2f8f 55%, #34349b 100%);
}
/* Rechts verankert: bei der Ruheposition (24 %) ist die Mini-Webseite komplett sichtbar */
.m-site { position: absolute; inset: 0 0 0 auto; width: 76%; padding: 16px 22px; display: flex; flex-direction: column; }
.m-nav { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; }
.m-logo { font-family: var(--display); font-weight: 600; color: #fff; font-size: 14.5px; margin-right: auto; }
.m-nav i { width: 34px; height: 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.28); }
.m-hero { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.m-chip {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 600; color: #b8f5d4;
  border: 1px solid rgba(184, 245, 212, 0.4);
  border-radius: 999px; padding: 3px 10px;
}
.m-h1 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1; color: #fff; letter-spacing: -0.01em; }
.m-btn {
  align-self: flex-start;
  font-size: 12.5px; font-weight: 700; color: #221b0a;
  background: linear-gradient(120deg, #f2b755, var(--amber));
  border-radius: 999px; padding: 8px 18px;
  box-shadow: 0 6px 18px rgba(233, 161, 59, 0.4);
}
/* Die Mini-Webseite lebt: sanfter Glow-Puls auf ihrem Anruf-Knopf */
@media (prefers-reduced-motion: no-preference) {
  .m-btn { animation: mpulse 2.8s var(--ease) 1.2s infinite; }
}
@keyframes mpulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(233, 161, 59, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(233, 161, 59, 0.7); }
}
.m-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding-top: 14px; }
.m-cards i {
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

/* Regler-Mechanik */
.pane-after { clip-path: inset(0 0 0 var(--pos)); }
.divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2.5px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 27, 46, 0.15), 0 0 24px rgba(20, 27, 46, 0.3);
  transform: translateX(-50%);
}
.handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(20, 27, 46, 0.3);
}
/* Einladung zum Anfassen: Handle pulst kurz, wenn die Anspiel-Animation fertig ist */
@media (prefers-reduced-motion: no-preference) {
  .handle.invite { animation: invite 1.4s var(--ease) 2; }
}
@keyframes invite {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.16); box-shadow: 0 4px 24px rgba(36, 71, 230, 0.55); }
}
.handle svg { width: 22px; height: 22px; color: var(--accent-dark); }
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
  touch-action: pan-y;
}
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 100%; }
.tag {
  position: absolute;
  top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
  pointer-events: none;
}
.tag-before { left: 12px; background: rgba(255, 255, 255, 0.9); color: #6a7188; box-shadow: 0 2px 8px rgba(20,27,46,0.12); transition: opacity var(--t-fast) var(--ease); }
.tag-before.tag-hidden { opacity: 0; }
.tag-after { right: 12px; background: rgba(24, 36, 86, 0.75); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.mock-hint { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Kernbotschaft ---------- */
.claim {
  position: relative;
  background: linear-gradient(150deg, #131b3d, #182456 60%, #1c2668);
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vh, 104px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}
.claim::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 15% 10%, rgba(123, 77, 227, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 80% at 88% 90%, rgba(233, 161, 59, 0.16), transparent 60%);
}
.claim-line {
  position: relative;
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 27ch;
  margin: 0 auto 18px;
}
.claim .grad { background: linear-gradient(100deg, #8ea4ff, #c9a1ff); -webkit-background-clip: text; background-clip: text; }
/* Typo-Moment: Gradient-Sweep über dem Schlüsselwort, sobald der Claim einscrollt */
.claim-line .grad { background-size: 220% 100%; background-position: 0 0; }
@media (prefers-reduced-motion: no-preference) {
  .claim-line.in .grad { animation: sweep 1.6s var(--ease) 0.25s backwards; }
}
@keyframes sweep { from { background-position: 130% 0; } }
.claim-sign { position: relative; font-size: 14.5px; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.04em; }

/* ---------- Sektionen allgemein ---------- */
.section { padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 48px); max-width: 1180px; margin: 0 auto; }
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
/* Feinschliff: Gradient-Strich vor dem Kicker zeichnet sich beim Einscrollen */
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .kicker.reveal::before { transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.8s var(--ease) 0.25s; }
  .kicker.reveal.in::before { transform: scaleX(1); }
}
h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  max-width: 24ch;
}
.section-intro { color: var(--ink-soft); font-size: 17px; max-width: 62ch; margin-bottom: 40px; }

/* Licht-Reflex: Karten reflektieren die Maus (nur Maus-Geräte) */
@media (pointer: fine) {
  .glow-card { position: relative; }
  .glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(36, 71, 230, 0.085), transparent 65%);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
    pointer-events: none;
  }
  .glow-card:hover::after { opacity: 1; }
}

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: 0 1px 3px rgba(20, 27, 46, 0.04);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  margin-bottom: 14px;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); font-size: 15.5px; }
/* Roter Faden: gestrichelte Verbinder zwischen den drei Schritten (nur Desktop) */
@media (min-width: 1021px) {
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 62px;
    right: -23px;
    width: 24px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px);
  }
}
.steps-cta { margin-top: 30px; text-align: center; font-size: 16px; color: var(--ink-soft); }
.steps-cta a { font-weight: 700; text-decoration: none; }
.steps-cta a:hover { text-decoration: underline; }

/* ---------- Arbeitsprobe ---------- */
.probe { text-align: left; }
.work { display: block; text-decoration: none; max-width: 940px; margin: 0 auto; position: relative; }
.work-browser { position: relative; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.work:hover .work-browser { transform: translateY(-5px); box-shadow: 0 6px 14px rgba(20, 27, 46, 0.08), 0 30px 70px rgba(20, 27, 46, 0.18); }
.work-browser img { width: 100%; height: auto; }
.work-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(19, 27, 61, 0);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.work:hover .work-overlay { opacity: 1; background: rgba(19, 27, 61, 0.35); }
.probe-note { text-align: center; color: var(--ink-soft); font-size: 13.5px; margin-top: 16px; }

/* ---------- Preise ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 1px 3px rgba(20, 27, 46, 0.04);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 6px 16px rgba(36, 71, 230, 0.1), 0 24px 60px rgba(36, 71, 230, 0.14);
}
.flag {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-num {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(36px, 3vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1;
}
/* Zähl-Moment: Zahl läuft beim Einscrollen hoch, JS reserviert die Endbreite */
.cnt { font-variant-numeric: tabular-nums; }
.featured .price-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-per { color: var(--ink-soft); font-size: 14px; }
.price-note { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin: 14px 0 10px; }
.incl { list-style: none; margin-bottom: 24px; }
.incl li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.incl li:last-child { border-bottom: none; }
/* Leistungsliste kaskadiert beim Einscrollen (Stagger-Preset: 8px, ~45ms je Zeile) */
@media (prefers-reduced-motion: no-preference) {
  .price-card.reveal:not(.in) .incl li { opacity: 0; }
  .price-card.reveal.in .incl li { animation: liIn 0.5s var(--ease) both; animation-delay: calc(0.3s + var(--li, 0) * 45ms); }
  .incl li:nth-child(1) { --li: 0; } .incl li:nth-child(2) { --li: 1; }
  .incl li:nth-child(3) { --li: 2; } .incl li:nth-child(4) { --li: 3; }
  .incl li:nth-child(5) { --li: 4; } .incl li:nth-child(6) { --li: 5; }
  .incl li:nth-child(7) { --li: 6; } .incl li:nth-child(8) { --li: 7; }
  .incl li:nth-child(9) { --li: 8; }
}
@keyframes liIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
/* Einmaliger Licht-Sweep über die Basic-Karte, wenn sie einscrollt */
@media (prefers-reduced-motion: no-preference) {
  .price-card.featured.reveal.in::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.5) 50%, transparent 68%);
    background-size: 240% 100%;
    animation: sheen 1.3s var(--ease) 0.55s 1 both;
    pointer-events: none;
    mix-blend-mode: soft-light;
  }
}
@keyframes sheen {
  from { background-position: 130% 0; }
  to { background-position: -50% 0; }
}
.incl li span { display: flex; align-items: baseline; gap: 9px; }
.incl li span::before {
  content: "";
  width: 14px; height: 14px; flex: none;
  transform: translateY(2px);
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
}
.incl em { font-style: normal; font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; }
.price-grid.two { grid-template-columns: 1fr 1fr; }
.incl.plus li span::before {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6V5z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6V5z" fill="black"/></svg>') center / contain no-repeat;
}
.price-assure { text-align: center; margin-top: 12px; font-size: 13.5px; color: var(--ink-soft); }
.price-card .anfrage-link { margin-top: 8px; }
.price-more {
  margin-top: -8px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.anfrage-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.anfrage-link:hover { color: var(--accent); text-decoration: underline; }

.care-note {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.care-sub { color: var(--ink-soft); font-size: 15px; max-width: 62ch; margin: -6px 0 6px; }
.care-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.care-row.three { grid-template-columns: repeat(3, 1fr); align-items: stretch; margin-top: 12px; }
.care-card {
  background: #f2f1ea;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.care-card.featured {
  position: relative;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(36, 71, 230, 0.1), 0 24px 60px rgba(36, 71, 230, 0.14);
}
.care-card.featured .care-price { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.care-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.care-price { font-family: var(--display); font-weight: 650; font-size: 22px; color: var(--accent-dark); }
.care-card p { color: var(--ink-soft); font-size: 14.5px; }
.care-card .care-extra {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.care-card .care-extra::before {
  content: "";
  width: 13px; height: 13px; flex: none;
  transform: translateY(1.5px);
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
}
.extras { margin-top: 26px; text-align: center; color: var(--ink-soft); font-size: 14px; }
.extras.ust { margin-top: 10px; font-size: 13px; }
.extras.ratgeber { margin-top: 14px; }

/* ---------- Über mich ---------- */
.ueber { max-width: 1080px; }
.ueber-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.portrait-wrap { position: relative; }
.portrait-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--grad);
  opacity: 0.14;
  z-index: -1;
}
.portrait-wrap figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(20, 27, 46, 0.15);
}
.ueber-copy p { color: var(--ink-soft); margin-bottom: 16px; max-width: 54ch; }
.ueber-copy .btn { margin-top: 8px; }
.person-points { list-style: none; margin: 4px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.person-points li { display: flex; align-items: baseline; gap: 10px; font-size: 15px; color: var(--ink); font-weight: 500; }
.person-points li::before {
  content: "";
  width: 15px; height: 15px; flex: none;
  transform: translateY(2px);
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z" fill="black"/></svg>') center / contain no-repeat;
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq-list { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.faq-list details[open] { box-shadow: var(--shadow); border-color: rgba(36, 71, 230, 0.35); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 650;
  font-size: 16.5px;
  transition: color var(--t-fast) var(--ease);
}
.faq-list summary:hover { color: var(--accent-dark); }
.faq-list summary::-webkit-details-marker { display: none; }
.chev { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: transform var(--t-med) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.chev::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: translate(-50%, -65%) rotate(45deg);
}
.faq-list summary:hover .chev { border-color: var(--accent); }
details[open] .chev { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); }
details[open] .chev::before { border-color: #fff; }
.faq-list details p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15.5px; max-width: 68ch; }
/* Micro-Feedback: Antwort gleitet weich ein */
@media (prefers-reduced-motion: no-preference) {
  .faq-list details[open] > p { animation: faqIn var(--t-med) var(--ease); }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Kontakt ---------- */
.kontakt { padding-bottom: clamp(90px, 12vh, 140px); }
.kontakt-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #131b3d, #182456 55%, #1c2f8f);
  color: #fff;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  box-shadow: 0 30px 80px rgba(19, 27, 61, 0.35);
}
.kontakt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 90% 10%, rgba(123, 77, 227, 0.3), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 95%, rgba(233, 161, 59, 0.18), transparent 60%);
  pointer-events: none;
}
.kontakt-copy { position: relative; }
.kontakt-card h2 { color: #fff; margin-bottom: 14px; }
.kontakt-card .grad { background: linear-gradient(100deg, #8ea4ff, #c9a1ff); -webkit-background-clip: text; background-clip: text; }
.kontakt-copy > p { color: rgba(255, 255, 255, 0.78); max-width: 46ch; margin-bottom: 26px; }
.kontakt-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.kontakt-sub { margin-top: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.kontakt-adr {
  position: relative;
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 24px;
}
.kontakt-adr strong { color: #fff; font-family: var(--display); font-weight: 600; font-size: 17px; }
.kontakt-adr a { color: #fff; text-decoration: none; font-weight: 600; }
.kontakt-adr a:hover { text-decoration: underline; }

/* ---------- Anfrage-Overlay ---------- */
.anfrage {
  border: 0;
  border-radius: 24px;
  padding: 30px 28px 26px;
  width: min(440px, calc(100vw - 36px));
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(19, 27, 61, 0.35);
}
.anfrage::backdrop {
  background: rgba(19, 27, 61, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: no-preference) {
  .anfrage[open] { animation: dlgIn 0.5s var(--ease); }
  .anfrage[open]::backdrop { animation: dlgFade 0.4s ease; }
}
@keyframes dlgIn { from { opacity: 0; transform: translateY(18px) scale(0.96); } }
@keyframes dlgFade { from { opacity: 0; } }
.anfrage-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-med) var(--ease);
}
.anfrage-close .ic { width: 15px; height: 15px; }
.anfrage-close:hover { color: var(--ink); border-color: var(--ink-soft); transform: rotate(90deg); }
.anfrage-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.anfrage-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.anfrage-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.anfrage-ways { display: flex; flex-direction: column; gap: 10px; }
.way {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.way:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 8px 22px rgba(36, 71, 230, 0.12); }
.way .ic { width: 20px; height: 20px; flex: none; }
.way .wa-ic { color: #23b33a; }
.way > span { display: flex; flex-direction: column; line-height: 1.35; }
.way strong { font-size: 15.5px; }
.way em { font-style: normal; font-size: 13px; color: var(--ink-soft); font-weight: 400; }
.way-tel { background: linear-gradient(120deg, var(--accent), var(--accent-dark)); border-color: transparent; color: #fff; }
.way-tel em { color: rgba(255, 255, 255, 0.78); }
.way-tel:hover { border-color: transparent; box-shadow: 0 10px 26px rgba(36, 71, 230, 0.35); }

/* ---------- Sticky-Call (mobil) ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(36, 71, 230, 0.45);
  transition: transform var(--t-med) var(--ease);
}
.sticky-call.off { transform: translateY(calc(100% + 26px)); }
.sticky-call .ic { width: 19px; height: 19px; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 48px) 30px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }

/* Unterseiten (Impressum/Datenschutz) */
.legal { max-width: 760px; margin: 0 auto; padding: 56px clamp(20px, 4vw, 48px) 90px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 28px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; max-width: none; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.back-link { display: inline-block; margin-top: 34px; font-weight: 600; text-decoration: none; }

/* ---------- Scroll-Choreografie: Reveals mit Richtung, Tiefe und Stagger ---------- */
.reveal { opacity: 0; }
.reveal.in {
  opacity: 1;
  animation: rv var(--t-slow) var(--ease) backwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes rv {
  from { opacity: 0; transform: translate(var(--rx, 0px), var(--ry, 26px)) scale(var(--rs, 1)); }
}
.reveal[data-rv="left"] { --rx: -36px; --ry: 0px; }
.reveal[data-rv="right"] { --rx: 36px; --ry: 0px; }
.reveal[data-rv="pop"] { --ry: 22px; --rs: 0.965; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hw, .hb { opacity: 1; transform: none; }
  .sticky-call.off { transform: none; }
  .caret { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .mock-wrap { max-width: 640px; margin: 0 auto; width: 100%; }
  .steps { grid-template-columns: 1fr; max-width: 560px; }
  .price-grid, .price-grid.two { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .price-card.featured { order: -1; }
  .care-row, .care-row.three { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .ueber-grid { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 380px; }
  .kontakt-card { grid-template-columns: 1fr; }
  .kontakt-adr { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 22px; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .site-header .btn { margin-left: auto; }
  .hero { padding-top: 40px; }
  .compare { height: 330px; }
  .sticky-call { display: inline-flex; }
  body { padding-bottom: 76px; }
  .steps, .price-grid, .care-row { gap: 16px; }
  .trust-row { flex-direction: column; gap: 10px; align-items: flex-start; }
}
@media (max-width: 420px) {
  h1 { font-size: 34px; }
  .btn { font-size: 15px; padding: 13px 20px; }
  .cta-row .btn { width: 100%; }
  .compare { height: 300px; }
}
