/* Timon Rochholz Webdesign — eigene Firmenseite.
   Palette: warmes Papier, Tinte, Ultramarin→Violett als Akzent, Bernstein sparsam. */

@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);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
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); }

/* ---------- 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: 22px; margin-left: auto; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ink); }

/* ---------- 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 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; flex: none; }
.btn-primary {
  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); }
.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%; }

/* ---------- 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); }

.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: 24px; }
.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;
}

/* ---------- 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; }
.compare {
  position: relative;
  height: clamp(330px, 38vw, 420px);
  overflow: hidden;
  touch-action: none;
}
.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; }
.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 */
.pane-after { background: linear-gradient(150deg, #182456 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);
}
.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);
}
.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;
}
.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 0.25s; }
.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; }
.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 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
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; }

/* ---------- 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 0.25s, box-shadow 0.25s;
}
.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; }
.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 0.3s, box-shadow 0.3s; }
.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 0.3s, background 0.3s;
}
.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 0.25s, box-shadow 0.25s;
}
.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;
}
.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; }
.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; }

.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-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.care-card {
  background: #f2f1ea;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.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; }
.extras { margin-top: 26px; text-align: center; color: var(--ink-soft); font-size: 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 0.25s;
}
.faq-list details[open] { box-shadow: var(--shadow); }
.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;
}
.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 0.25s, background 0.25s, border-color 0.25s; }
.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);
}
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; }

/* ---------- 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; }

/* ---------- 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);
}
.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; }
.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; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: 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 { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .price-card.featured { order: -1; }
  .care-row { 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; }
}
