/* ===================================================================
   WerbWerk — Design System
   Helles, professionelles Studio-Design. Blau als Leitfarbe.

   WICHTIG — eigene Akzentpalette, NICHT die Google-Farben:
   Terrakotta, Ocker und Petrolgrün statt Googles Rot/Gelb/Grün.
   Die vier Google-Farben als Vierklang zu verwenden, wäre im
   Google-Ads-Kontext markenrechtlich angreifbar. Diese Palette
   liegt farblich klar daneben (Handwerk: Ziegel, Holz, Werkstatt)
   und darf deshalb auch in Balken und Bändern kombiniert werden.
=================================================================== */

:root {
  --blue: #1a73e8;
  --blue-bright: #4a92f5;
  --blue-deep: #1558c0;
  --red: #d9543b;          /* Terrakotta */
  --yellow: #d98c0a;       /* Ocker, dunkel (Text/Icons) */
  --yellow-bright: #f0a92a;/* Ocker, hell (Flächen) */
  --green: #1f8f6e;        /* Petrolgrün */

  --ink: #14161a;
  --ink-soft: #3c4043;
  --body: #5f6368;
  --muted: #8a8f98;
  --line: #e7eaef;
  --line-soft: #eef1f5;

  --bg: #fbfaf6;
  --bg-tint: #f5f7fb;
  --bg-tint-2: #f2f5fa;
  --stripe: linear-gradient(90deg, #1a73e8 0 25%, #d9543b 25% 50%, #f0a92a 50% 75%, #1f8f6e 75% 100%);
  --tape: repeating-linear-gradient(-45deg, #1a73e8 0 22px, #d9543b 22px 44px, #f0a92a 44px 66px, #1f8f6e 66px 88px);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px -4px rgba(20, 30, 60, 0.08);
  --shadow-md: 0 12px 32px -12px rgba(20, 30, 60, 0.16);
  --shadow-lg: 0 30px 70px -20px rgba(20, 30, 60, 0.22);
  --shadow-blue: 0 14px 34px -10px rgba(26, 115, 232, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }
html.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

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

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--blue);
  text-transform: uppercase;
}
.dotcluster { display: inline-flex; gap: 4px; }
.dotcluster i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.dotcluster i:nth-child(1) { background: var(--blue); }
.dotcluster i:nth-child(2) { background: var(--red); }
.dotcluster i:nth-child(3) { background: var(--yellow-bright); }
.dotcluster i:nth-child(4) { background: var(--green); }

.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-label {
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
}
.section-label::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #1a73e8; box-shadow: 11px 0 0 #d9543b, 22px 0 0 #f0a92a, 33px 0 0 #1f8f6e;
  margin-right: 40px; vertical-align: 1px;
}
.section-title {
  font-weight: 600; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; letter-spacing: -0.02em; margin-top: 14px; color: var(--ink);
}
.section-title::after {
  content: ''; display: block; width: 58px; height: 5px; border-radius: 3px;
  margin-top: 20px; background: var(--stripe);
}
.section-head.center .section-title::after { margin-left: auto; margin-right: auto; }
.section-body { font-size: 18px; color: var(--body); margin-top: 16px; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; font-weight: 700; font-size: 15.5px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff; padding: 15px 26px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--blue-bright); }
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-ghost {
  background: #fff; color: var(--ink); padding: 15px 24px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 rgba(20,22,26,0.18);
}
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(20,22,26,0.28); }
.btn-ghost:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(20,22,26,0.2); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(1.8) blur(18px);
  -webkit-backdrop-filter: saturate(1.8) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(20,30,60,0.02), 0 12px 24px -20px rgba(20,30,60,0.15); }
.hdr-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; position: relative; flex: none;
  background: linear-gradient(135deg,#fff,#f2f5fa);
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
}
.logo-mark .dotcluster { gap: 3px; }
.logo-mark .dotcluster i { width: 6px; height: 6px; }
.logo-mark-brand { background: none; border: none; }
.logo-mark-brand svg { display: block; border-radius: 8px; }
.logo-word { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; letter-spacing: -0.02em; color: var(--ink); }
nav.main-nav { display: flex; align-items: center; }
nav.main-nav a {
  text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500;
  margin-left: 30px; position: relative; padding-bottom: 4px; transition: color 0.15s;
}
nav.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
nav.main-nav a:hover { color: var(--blue); }
nav.main-nav a:hover::after { transform: scaleX(1); }
.hdr-actions { display: flex; align-items: center; gap: 18px; }
.hdr-phone { display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); text-decoration: none; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 80px 0 0 0; background: #fff; z-index: 190;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  padding: 28px 32px; display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { text-decoration: none; color: var(--ink); font-size: 20px; font-weight: 600; font-family: 'Fraunces', serif; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 20px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 150;
  display: none;
}
.sticky-cta .btn { width: 100%; padding: 16px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 74px; overflow: hidden; background: var(--bg); }
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-mesh {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 42% at 82% 8%, rgba(66,133,244,0.22), transparent 68%),
    radial-gradient(30% 34% at 8% 30%, rgba(52,168,83,0.15), transparent 70%),
    radial-gradient(26% 30% at 62% 88%, rgba(234,67,53,0.12), transparent 72%),
    radial-gradient(24% 28% at 30% 78%, rgba(251,188,4,0.14), transparent 70%);
  filter: blur(6px);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(20,22,26,0.05) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(60% 60% at 75% 20%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 12px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
h1.hero-title {
  font-weight: 600; font-size: clamp(38px, 5.2vw, 66px); line-height: 1.04;
  letter-spacing: -0.03em; margin-top: 24px; color: var(--ink);
}
#trade-rotator { display: inline-block; white-space: nowrap; overflow: hidden; text-align: center; }
h1.hero-title .accent {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 2px 18px 8px; border-radius: 14px;
  transform: rotate(-1.5deg);
  box-shadow: 5px 5px 0 rgba(20,22,26,0.14);
  transition: background 0.3s ease, color 0.3s ease;
}
/* Handwerker-Maskottchen rechts unten im Hero */
.hero-buddy { position: absolute; right: 2.5%; bottom: 10px; z-index: 3; width: 124px; }
.buddy-figure { width: 100%; height: auto; }
/* Sprechblase links neben dem Kopf, damit die Spitze waagerecht auf das
   Gesicht in Mundhöhe zeigt — genau wie in den Werbebildern. */
.buddy-bubble {
  position: absolute; top: auto; bottom: calc(100% - 10px); right: 46px;
  width: 216px; min-height: 62px;
  display: flex; align-items: center;
  background: #fff; border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 rgba(20,22,26,0.16);
  padding: 12px 16px; font-size: 13.5px; font-weight: 600; line-height: 1.45; color: var(--ink);
}
/* Spitze nach unten, mittig über dem Kopf (Kopfmitte liegt bei 62,8 px,
   die Spitze mit right:8px bei 62,5 px). */
.buddy-bubble::after {
  content: ''; position: absolute; right: 8px; bottom: -9px;
  width: 15px; height: 15px; background: #fff;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}
@media (max-width: 1320px) { .hero-buddy { display: none; } }

.hero-tools { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-tools .tool { position: absolute; color: var(--ink); opacity: 0.13; }
.hero-tools .t1 { top: 11%; left: 2.5%; width: 56px; transform: rotate(-14deg); }
.hero-tools .t2 { top: 7%; left: 39%; width: 62px; transform: rotate(12deg); }
.hero-tools .t3 { bottom: 12%; left: 41%; width: 58px; transform: rotate(-6deg); }
.hero-tools .t4 { bottom: 27%; left: 1.5%; width: 48px; transform: rotate(8deg); }
.hero-bigword {
  position: absolute; right: -1%; bottom: 3%; z-index: 0;
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(90px, 13vw, 190px); line-height: 1; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(20,22,26,0.08);
  pointer-events: none; user-select: none;
}
.hero-sub { font-size: 19px; color: var(--body); margin-top: 22px; max-width: 500px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.hero-check .ck {
  width: 18px; height: 18px; border-radius: 50%; background: #e6f4ea; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex: none;
}

.hero-right { position: relative; }
.hero-stage { position: relative; padding: 30px; }
.mockup {
  position: relative; background: #fff; border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: 14px 14px 0 rgba(66,133,244,0.16); padding: 22px 22px 24px; z-index: 2;
}
.search-bar { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 11px 17px; color: var(--ink-soft); font-size: 15px; background: var(--bg-tint); }
#ww-cur { display: inline-block; width: 2px; height: 1em; background: var(--blue); vertical-align: middle; margin-left: 2px; animation: blink 1.1s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.sponsored-tag { display: inline-flex; align-items: center; gap: 6px; background: #e8f0fe; color: var(--blue); font-size: 11.5px; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.02em; }
/* feste Höhe reserviert — die Karte springt nicht, wenn die Anzeige ein-/ausblendet */
.ad-result { margin-top: 20px; opacity: 0; min-height: 218px; }
.ad-logo { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px; flex: none; }
.mockup-skeleton { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-soft); opacity: 0.5; }
.sk { height: 11px; background: var(--line-soft); border-radius: 4px; margin-top: 9px; position: relative; overflow: hidden; }
.sk::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent); transform: translateX(-100%); animation: shimmer 2.4s ease-in-out infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .sk::after, #ww-cur { animation: none; } }

.chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 13px 17px;
  box-shadow: 4px 4px 0 rgba(20,22,26,0.12); display: flex; align-items: center; gap: 11px; white-space: nowrap;
  border: 1.5px solid var(--ink);
}
.chip-abs { transform: rotate(-2deg); }
.chip-live { transform: rotate(2deg); }
.chip-mail { transform: rotate(-1deg); }
.chip-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex: none; }
.chip-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.2; }
.chip-sub { font-size: 11.5px; color: var(--body); font-weight: 500; margin-top: 1px; }
.chip-live { top: 6%; right: -6%; }
.chip-live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 0 3px rgba(52,168,83,0.22); }
.chip-live span { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.chip-abs { top: -8%; left: -10%; }
.chip-mail { bottom: -8%; left: 10%; }
.chip-mail span { font-size: 12.5px; font-weight: 700; color: var(--ink); }

/* ---------- Gewerke-Marquee ---------- */
.tape { background: var(--tape); }
.trades-band { background: #fff; border-top: 1px solid var(--line-soft); padding: 26px 0 30px; overflow: hidden; }
.trades-label { display: block; text-align: center; margin-bottom: 16px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.tm-wrap { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tm-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: tm-scroll 30s linear infinite; padding-right: 30px; }
.tm-track:hover { animation-play-state: paused; }
@keyframes tm-scroll { to { transform: translateX(-50%); } }
.tm-item { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 24px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.tm-item.alt { color: transparent; -webkit-text-stroke: 1.4px var(--ink); }
.tm-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; background: #1a73e8; }
.tm-dot:nth-of-type(4n+2) { background: #d9543b; }
.tm-dot:nth-of-type(4n+3) { background: #f0a92a; }
.tm-dot:nth-of-type(4n+0) { background: #1f8f6e; }
@media (prefers-reduced-motion: reduce) {
  .tm-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ---------- Trust bar ---------- */
.trustbar { position: relative; border-bottom: 1px solid var(--line-soft); background: var(--bg-tint); padding: 30px 0 26px; }
.trustbar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: var(--tape); }
.trustbar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* ---------- Services ---------- */
.services {
  padding: 88px 0 96px;
  background:
    radial-gradient(42% 50% at 100% 0%, rgba(52,168,83,0.06), transparent 70%),
    radial-gradient(38% 46% at 0% 100%, rgba(234,67,53,0.05), transparent 70%),
    var(--bg);
}
/* Bento-Anordnung: große Karte links, zwei kleine rechts, breite Karte unten */
.services-grid {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-areas: "a b c" "a d d";
  gap: 20px; margin-top: 54px; counter-reset: svc;
}
.services-grid .service-card:nth-child(1) { grid-area: a; padding: 40px 32px; }
.services-grid .service-card:nth-child(2) { grid-area: b; }
.services-grid .service-card:nth-child(3) { grid-area: c; }
.services-grid .service-card:nth-child(4) {
  grid-area: d; position: relative;
  display: grid; grid-template-columns: auto 1fr; column-gap: 22px; align-items: start;
  grid-template-areas: "num num" "icon title" "icon text";
  padding-right: 180px;
}
.services-grid .service-card:nth-child(4) .service-num { grid-area: num; }
.services-grid .service-card:nth-child(4) .service-icon { grid-area: icon; margin-bottom: 0; }
.services-grid .service-card:nth-child(4) h3 { grid-area: title; }
.services-grid .service-card:nth-child(4) p { grid-area: text; margin-top: 6px; }
.services-grid .service-card:nth-child(1) .service-icon { width: 64px; height: 64px; border-radius: 16px; }
.services-grid .service-card:nth-child(1) .service-icon svg { width: 30px; height: 30px; }
.services-grid .service-card:nth-child(1) h3 { font-size: 25px; }
.services-grid .service-card:nth-child(1) p { font-size: 16px; margin-top: 12px; }
.service-card {
  position: relative; background: #fff; border: 1.5px solid var(--ink); border-radius: var(--radius);
  padding: 32px 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  counter-increment: svc; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.services-grid .service-card:nth-child(1)::before { background: #1a73e8; }
.services-grid .service-card:nth-child(2)::before { background: #d9543b; }
.services-grid .service-card:nth-child(3)::before { background: #f0a92a; }
.services-grid .service-card:nth-child(4)::before { background: #1f8f6e; }
.services-grid .service-card:nth-child(1) { background: linear-gradient(180deg, #f4f8fe 0%, #fff 34%); }
.services-grid .service-card:nth-child(2) { background: linear-gradient(180deg, #fdf3f0 0%, #fff 34%); }
.services-grid .service-card:nth-child(3) { background: linear-gradient(180deg, #fefaef 0%, #fff 34%); }
.services-grid .service-card:nth-child(4) { background: linear-gradient(180deg, #eff8f4 0%, #fff 34%); }
.service-card:hover { transform: translate(-3px, -3px); }
.services-grid .service-card:nth-child(1):hover { box-shadow: 7px 7px 0 rgba(66,133,244,0.45); }
.services-grid .service-card:nth-child(2):hover { box-shadow: 7px 7px 0 rgba(234,67,53,0.4); }
.services-grid .service-card:nth-child(3):hover { box-shadow: 7px 7px 0 rgba(251,188,4,0.5); }
.services-grid .service-card:nth-child(4):hover { box-shadow: 7px 7px 0 rgba(52,168,83,0.4); }
.service-num { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600; color: var(--muted); }
.service-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 16px 0 20px; }
.service-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19.5px; color: var(--ink); line-height: 1.25; }
.service-card p { font-size: 15px; color: var(--body); margin-top: 10px; line-height: 1.6; }

/* ---------- Steps ---------- */
/* ===== ÜBER MICH ===== */
.about { padding: 80px 0; border-top: 1px solid var(--line-soft); background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 52px; align-items: center; }
.about-photo { position: relative; }
.about-photo-ph {
  aspect-ratio: 4/5; border-radius: var(--radius); background: var(--bg-tint);
  border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.about-photo-ph span { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.02em; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: var(--radius); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.about-stamp {
  position: absolute; left: -14px; bottom: -16px; background: var(--blue); color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); transform: rotate(-3deg);
}
.about-text .section-body { margin-top: 14px; }
.about-sign {
  margin: 26px 0 0; font-family: Fraunces, Georgia, serif; font-style: italic;
  font-weight: 600; font-size: 24px; color: var(--blue);
}
.about-sign span { display: block; font-family: Inter, sans-serif; font-style: normal;
  font-weight: 600; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; margin-top: 3px; }
@media (max-width: 820px) {
  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 240px; margin: 0 auto; }
}

.steps {
  padding: 88px 0 150px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(rgba(66,133,244,0.07) 1.5px, transparent 1.5px),
    radial-gradient(46% 60% at 96% 4%, rgba(251,188,4,0.09), transparent 70%),
    radial-gradient(40% 54% at 2% 96%, rgba(66,133,244,0.08), transparent 70%),
    var(--bg-tint);
  background-size: 26px 26px, auto, auto, auto;
}
.steps-head { max-width: 660px; }
.steps .container { position: relative; }
.steps-illu {
  position: absolute; top: 4px; right: 40px; width: 225px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.illu-tag { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.card-illu { position: absolute; right: 24px; bottom: 18px; width: 128px; }
.card1-illu { display: block; width: 100%; max-width: 250px; margin: 24px auto 0; }
.card-illu-sm { position: absolute; right: 16px; bottom: 12px; width: 84px; }
.services-grid .service-card:nth-child(2), .services-grid .service-card:nth-child(3) { padding-bottom: 96px; }
.van-wrap { position: relative; margin: 26px 0 0 auto; width: 200px; }
.contact-van { display: block; width: 100%; }
.van-dust { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform, opacity; }
.faq-illu { width: 92px; margin: 0 auto 18px; display: block; }
/* Zickzack-Timeline: Karten wechseln die Seite entlang einer gestrichelten Mittellinie */
.steps-grid { display: block; position: relative; max-width: 880px; margin: 60px auto 0; }
.steps-grid::before {
  content: ''; position: absolute; top: 14px; bottom: 14px; left: 50%;
  border-left: 2.5px dashed #c9cfd8;
}
.step {
  position: relative; width: calc(50% - 46px);
  background: #fff; border: 1.5px solid var(--ink); border-radius: 16px;
  padding: 24px 24px 26px; box-shadow: 5px 5px 0 rgba(20,22,26,0.08);
}
.step:nth-child(odd) { margin-right: auto; transform: rotate(-0.8deg); }
.step:nth-child(even) { margin-left: auto; transform: rotate(0.8deg); }
.step + .step { margin-top: -16px; }
.step-num-row { display: block; }
.step-line { display: none; }
.step-num {
  position: absolute; top: 22px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2.5px solid;
  display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 19px;
  box-shadow: 3px 3px 0 rgba(20,22,26,0.1);
}
.step:nth-child(odd) .step-num { right: -71px; }
.step:nth-child(even) .step-num { left: -71px; }
.steps-grid .step:nth-child(1) .step-num { background: #eef4fe; }
.steps-grid .step:nth-child(2) .step-num { background: #fdeeec; }
.steps-grid .step:nth-child(3) .step-num { background: #fef7e4; }
.steps-grid .step:nth-child(4) .step-num { background: #eaf7ef; }
.step h3 { font-size: 19px; margin-top: 0; color: var(--ink); }
.step p { font-size: 15px; color: var(--body); margin-top: 9px; line-height: 1.6; }

/* ---------- Personal ---------- */
.personal {
  position: relative; overflow: hidden;
  padding: 110px 0; border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(46% 58% at 100% 100%, rgba(251,188,4,0.12), transparent 70%),
    radial-gradient(40% 52% at 0% 0%, rgba(66,133,244,0.08), transparent 70%),
    #fffdf7;
}
.personal-doodle { position: absolute; right: -30px; bottom: -36px; width: 240px; color: var(--ink); opacity: 0.05; transform: rotate(-12deg); pointer-events: none; }
.personal-inner { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 60px; align-items: center; }
.personal-card p { font-size: 17.5px; color: var(--ink-soft); line-height: 1.75; margin-top: 20px; }
.personal-sign { font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; font-size: 25px; margin-top: 28px; color: var(--ink); }
.personal-sign::before { content: '— '; color: var(--blue); }
.p-point { display: flex; gap: 16px; background: #fff; border: 1.5px solid var(--ink); border-radius: 16px; padding: 22px; align-items: flex-start; box-shadow: 4px 4px 0 rgba(20,22,26,0.1); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.p-point:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(20,22,26,0.16); }
.p-point + .p-point { margin-top: 14px; }
.p-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; }
.p-point h3 { font-family: 'Fraunces', serif; font-size: 17.5px; font-weight: 600; color: var(--ink); }
.p-point p { font-size: 14.5px; color: var(--body); margin-top: 6px; line-height: 1.6; }

/* ---------- Stats: dunkles Zahlen-Band ---------- */
.stats { position: relative; padding: 180px 0 88px; background: var(--ink); color: #fff; }

/* Straße auf der rechten Seite, genau am Übergang Schwarz/Weiß (oberer Rand von .stats,
   auf Höhe des Transporters), zieht bis zum rechten Bildschirmrand. Startet erst rechts
   von der Kontaktkarte (die ist max. 1080px breit und zentriert). */
.van-road {
  position: absolute; left: calc(50% + 540px); right: 0; top: 0; height: 34px;
  z-index: 0; pointer-events: none;
}
.van-road::before {
  content: ''; position: absolute; inset: 0; background: #2b2f35; border-bottom: 2px solid #3d434b;
}
.van-road::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, #e8e8e8 0 22px, transparent 22px 44px);
  opacity: 0.4;
}
.van-road-lamp { position: absolute; bottom: 34px; z-index: 1; overflow: visible; }
.van-road-lamp svg { display: block; width: 26px; height: 46px; overflow: visible; }
@media (max-width: 900px) { .van-road { display: none; } }
.stats-head { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.stats-head .section-label { color: #8ab4f8; }
.stats-head .section-title { color: #fff; }
.stats-head .section-body { color: #b8bcc2; font-size: 16.5px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 4px 28px; border-left: 1.5px dashed rgba(255,255,255,0.16); }
.stat:first-child { border-left: none; }
.stat-value { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(38px, 3.6vw, 56px); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; color: #b8bcc2; margin-top: 12px; line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--bg-tint); padding: 70px 0 76px; overflow: hidden; border-top: 1px solid var(--line-soft); display: none; }
.reviews-heading { max-width: var(--container); margin: 0 auto 30px; padding: 0 32px; text-align: center; }
.reviews-heading h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 27px; letter-spacing: -0.01em; color: var(--ink); }
.reviews-heading p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.reviews-track-wrap { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%); }
.reviews-track { display: flex; gap: 18px; width: max-content; animation: reviews-scroll 55s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { flex: 0 0 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.review-card .rc-stars { color: var(--yellow-bright); font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card .rc-text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.review-card .rc-name { font-size: 13px; font-weight: 700; color: var(--ink); }

/* ---------- Contact: schwebt zwischen Ablauf und Zahlen-Band ---------- */
.contact { padding: 0; background: transparent; }
.contact-inner {
  max-width: 1080px; margin: -58px auto -92px; position: relative; overflow: visible; z-index: 5;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-xl); padding: 72px 56px; color: #fff;
  display: grid; grid-template-columns: 1fr 0.92fr; gap: 50px; align-items: start;
  box-shadow: 0 50px 90px -30px rgba(26,115,232,0.5);
}
.contact-inner::before {
  /* rundet die eigene Kontur optisch wieder ab, da overflow jetzt "visible" ist (der Transporter braucht Auslauf nach rechts) */
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl); z-index: -1;
}
.contact-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; border-radius: var(--radius-xl); overflow: hidden; }
.contact-inner .tape-top { position: absolute; top: 0; left: 0; right: 0; height: 8px; z-index: 1; border-radius: var(--radius-xl) var(--radius-xl) 0 0; overflow: hidden; }
.contact-left { position: relative; z-index: 2; }
.contact-badge { display: inline-block; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 6px 15px; font-size: 13px; font-weight: 600; }
.contact-left h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 33px; line-height: 1.15; letter-spacing: -0.01em; margin-top: 18px; }
.contact-left > p { font-size: 16px; color: #d9e6fb; margin-top: 16px; line-height: 1.65; }
.contact-checks { display: flex; flex-direction: column; gap: 11px; margin-top: 24px; }
.contact-check { display: flex; align-items: flex-start; gap: 12px; }
.contact-check-icon { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }
.contact-check span { font-size: 15px; color: #d9e6fb; line-height: 1.5; }
.contact-note { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.contact-note a { color: #cfe0fc; font-weight: 700; text-decoration: none; }

/* Klemmbrett-Look: Papierton, dunkle Kante, harter Schatten, Metallklammer oben */
.form-box {
  position: relative; z-index: 1; background: #fffdf8;
  border: 2px solid var(--ink); border-radius: 18px;
  padding: 36px 26px 26px;
  box-shadow: 9px 9px 0 rgba(13, 29, 58, 0.3);
  display: flex; flex-direction: column; gap: 13px; color: var(--ink);
}
.form-clip {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 88px; z-index: 3; filter: drop-shadow(0 2px 2px rgba(20,22,26,0.3));
}
.kundentyp-box { margin-bottom: 16px; padding-bottom: 15px; border-bottom: 1.5px dashed var(--line); }
.kundentyp-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.kundentyp-toggle { display: flex; gap: 8px; flex-wrap: wrap; }
.kundentyp-btn {
  flex: 1; min-width: 120px; border: 2px solid var(--ink); background: #fff; border-radius: 10px;
  padding: 10px 12px; font-size: 13.5px; font-weight: 700; color: var(--ink); cursor: pointer;
  font-family: inherit; box-shadow: 4px 4px 0 rgba(20,22,26,0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.15s;
}
.kundentyp-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(20,22,26,0.28); }
.kundentyp-btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(20,22,26,0.2); }
.kundentyp-btn.active {
  background: var(--blue); border-color: var(--ink); color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.kundentyp-btn.active:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--blue-bright); }
.kundentyp-btn.active:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.form-head { display: flex; align-items: flex-start; gap: 13px; padding-bottom: 15px; border-bottom: 1.5px dashed var(--line); }
.form-head-icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; box-shadow: 3px 3px 0 rgba(20,22,26,0.15); }
.form-head-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
.form-head-sub { font-size: 12.5px; color: var(--body); margin-top: 4px; line-height: 1.5; }
.inp { border: 1.5px solid #cdd3db; background: #fff; border-radius: 10px; padding: 13px 15px; font-size: 15px; font-family: inherit; outline: none; color: var(--ink); width: 100%; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.inp:focus { border-color: var(--blue); box-shadow: 3px 3px 0 rgba(26,115,232,0.25); transform: translate(-1px, -1px); }
textarea.inp { resize: vertical; line-height: 1.5; }
select.inp { background: #fff; cursor: pointer; appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none"><path d="M6 9l6 6 6-6" stroke="%239aa0a6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat; background-position: right 15px center; }
.inp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-submit {
  background: var(--blue); color: #fff; border: 2px solid var(--ink); border-radius: 11px;
  padding: 15px; font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink); margin-top: 4px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.15s;
}
.btn-submit:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-submit:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-submit:disabled { background: #9aa0a6; cursor: not-allowed; transform: none; box-shadow: none; border-color: #9aa0a6; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }

.progress-wrap { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.progress-row { display: flex; justify-content: space-between; align-items: center; }
.progress-label { font-size: 12px; font-weight: 800; font-family: 'Archivo', sans-serif; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; }
.progress-hint { font-size: 12px; color: var(--muted); }
.progress-track { height: 9px; background: rgba(20,22,26,0.07); border: 1px solid rgba(20,22,26,0.16); border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--stripe); transition: width 0.4s ease; }

.success-box { text-align: center; padding: 26px 8px; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: #e6f4ea; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 28px; color: var(--green); }
.success-box h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--ink); margin-top: 16px; }
.customer-num { display: inline-block; margin-top: 10px; background: #f0f4ff; border: 1.5px solid #c5d3f5; border-radius: 8px; padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; }
.success-box p { font-size: 15.5px; color: var(--body); margin-top: 8px; }

.step2-header { display: flex; align-items: center; gap: 10px; }
.btn-back { background: none; border: 1.5px solid var(--line); border-radius: 9px; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--body); cursor: pointer; display: flex; align-items: center; gap: 4px; font-family: inherit; }
.step2-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: var(--ink); }
.step2-sub { font-size: 13px; color: var(--muted); }
.img-hint { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.5; }
.img-hint strong { font-weight: 700; color: var(--ink-soft); }

.img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.img-slot { border: 1.5px dashed #c5cae9; border-radius: 10px; background: #f8f9ff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; position: relative; min-height: 100px; overflow: hidden; transition: border-color 0.18s ease, background 0.18s ease; }
.img-slot:hover { border-color: var(--blue); background: #f0f5ff; }
.img-slot input[type=file] { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.img-slot .slot-icon { font-size: 24px; }
.img-slot .slot-label { font-size: 11px; color: var(--muted); font-weight: 600; }
.slot-logo .slot-label { font-size: 12px; font-weight: 700; color: var(--ink-soft); text-align: center; line-height: 1.3; }
.logo-preview { max-height: 56px; max-width: 100px; object-fit: contain; border-radius: 6px; }
.logo-ok { font-size: 10px; color: var(--green); font-weight: 600; }

.budget-box { border: 1.5px solid #cdd3db; border-radius: 12px; padding: 14px 14px 12px; background: #fff; }
.budget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.budget-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; }
.budget-range { font-size: 12px; color: var(--muted); font-weight: 500; }
.budget-input-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.budget-num-wrap { position: relative; flex: 1; }
#ww-num { width: 100%; border: 2px solid var(--blue); border-radius: 9px; padding: 9px 36px 9px 12px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--blue); outline: none; appearance: textfield; }
#ww-num::-webkit-inner-spin-button, #ww-num::-webkit-outer-spin-button { -webkit-appearance: none; }
.budget-eur { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; color: var(--blue); pointer-events: none; }
.budget-tag { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.slider-track { position: relative; height: 6px; background: #e4e8ed; border-radius: 3px; cursor: pointer; margin: 2px 0 4px; user-select: none; touch-action: none; }
.slider-fill { position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); border-radius: 3px; pointer-events: none; }
.slider-thumb { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; background: var(--blue); border-radius: 50%; cursor: grab; box-shadow: 0 2px 6px rgba(26,115,232,0.5); border: 2px solid #fff; touch-action: none; }
.slider-thumb:active { cursor: grabbing; }
.clicks-info { margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); background: #e8f0fe; border-radius: 7px; padding: 7px 10px; }
.tip-wrap { position: relative; display: inline-flex; align-items: center; margin-left: 4px; }
.tip-btn { width: 14px; height: 14px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 9px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; cursor: help; flex-shrink: 0; border: none; font-family: inherit; }
.tooltip { position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); width: 220px; background: var(--ink); color: #fff; border-radius: 10px; padding: 12px 14px; font-size: 12.5px; font-weight: 400; line-height: 1.55; box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 100; display: none; }
.tooltip::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: var(--ink); rotate: 45deg; }
.tip-wrap:hover .tooltip { display: block; }
.tooltip strong { color: #8ab4f8; }
.sitelinks-toggle-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; background: var(--bg-tint); border: none; padding: 12px 14px; font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; font-family: inherit; }
.sitelinks-wrap { border: 1.5px solid #cdd3db; border-radius: 10px; overflow: hidden; }
.sitelinks-panel { display: none; flex-direction: column; gap: 10px; padding: 0 14px 14px; }
.form-error { background: #fce8e6; border: 1px solid #f5c6c2; border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: #c62828; }

/* ---------- Price bar ---------- */
.price-bar { background: var(--bg-tint); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 24px 28px; }
.price-bar-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.price-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.price-ck { width: 22px; height: 22px; border-radius: 50%; background: #e8f0fe; display: flex; align-items: center; justify-content: center; color: var(--blue); font-weight: 800; font-size: 13px; flex: none; }
.price-bar-inner .price-item:nth-child(3) .price-ck { background: #fdeeec; color: #d33426; }
.price-bar-inner .price-item:nth-child(5) .price-ck { background: #fef7e4; color: #b06000; }
.price-bar-inner .price-item:nth-child(7) .price-ck { background: #eaf7ef; color: #188038; }
.price-sep { width: 1px; height: 22px; background: var(--line); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); padding: 92px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-tint); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.faq-item:hover { border-color: #cddcf6; }
.faq-item.open { background: #fff; box-shadow: var(--shadow-sm); border-left: 4px solid var(--blue); }
.faq-list .faq-item:nth-child(4n+2).open { border-left-color: var(--red); }
.faq-list .faq-item:nth-child(4n+3).open { border-left-color: var(--yellow-bright); }
.faq-list .faq-item:nth-child(4n+4).open { border-left-color: var(--green); }
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: 'Fraunces', serif; font-weight: 600; font-size: 17.5px; color: var(--ink); }
.faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: #eef2f8; color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform 0.25s var(--ease); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease); }
.faq-answer p { padding: 0 24px 24px; font-size: 15.5px; color: var(--body); line-height: 1.65; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: #e8f0fe; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ---------- Footer ---------- */
footer { position: relative; background: var(--ink); color: #b8bcc2; padding: 60px 0 36px; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--tape); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: inline-flex; align-items: center; gap: 9px; }
.footer-logo .logo-mark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.footer-logo-word { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; color: #fff; letter-spacing: -0.02em; }
.footer-desc { font-size: 14.5px; color: #9aa0a6; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-col-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; font-size: 14.5px; }
.footer-links a { color: #b8bcc2; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-links span { color: #b8bcc2; }
.footer-bottom { max-width: var(--container); margin: 36px auto 0; padding: 22px 32px 0; border-top: 1px solid #2a2d32; font-size: 13px; color: #7c8087; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-inner { padding: 0 32px; max-width: var(--container); margin: 0 auto; }

/* ---------- Scroll reveal fallback (GSAP handles active state via JS) ---------- */
.rv { will-change: transform, opacity; }

/* ---------- Cookie banner ---------- */
#cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 999; max-width: 460px; margin: 0 auto; display: none; }
.cookie-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.cookie-stripe { height: 5px; background: var(--stripe); }
.cookie-body { padding: 22px 24px 20px; }
.cookie-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cookie-icon { width: 34px; height: 34px; border-radius: 10px; background: #e8f0fe; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.cookie-title { font-size: 15px; font-weight: 800; color: var(--ink); font-family: 'Fraunces', serif; }
.cookie-text { font-size: 13.5px; line-height: 1.65; color: var(--body); }
.cookie-text a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cookie-actions { display: flex; gap: 10px; margin-top: 18px; }
.cookie-actions button { flex: 1; font-size: 13.5px; font-weight: 700; padding: 11px 16px; border-radius: 10px; cursor: pointer; font-family: inherit; border: none; }
#cookie-decline { background: var(--bg-tint); border: 1px solid var(--line); color: var(--ink-soft); }
#cookie-accept { background: var(--blue); color: #fff; box-shadow: 0 6px 16px -4px rgba(26,115,232,0.5); }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 1160px) {
  .steps-illu { display: none; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .services-grid .service-card:nth-child(4) { padding-right: 26px; }
  .card-illu { display: none; }
  /* Text zuerst, Animation darunter – auf schmalen Bildschirmen soll die Botschaft
     sofort lesbar sein, nicht erst nach dem Scrollen an der Animation vorbei. */
  .hero-right { order: 1; max-width: 480px; margin: 0 auto; width: 100%; }
  .contact-inner { grid-template-columns: 1fr; padding: 52px 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "a b" "a c" "d d"; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .stat:nth-child(3) { border-left: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

/* ===================================================================
   TYPO-OVERRIDE — Plakat-Look: Archivo 800/900 für alle Headlines,
   Fraunces bleibt nur für die persönliche Unterschrift
=================================================================== */
h1.hero-title, .section-title, .stat-value, .contact-left h2, .logo-word, .footer-logo-word,
.service-card h3, .step h3, .p-point h3, .faq-btn, .success-box h3, .step2-title,
.reviews-heading h2, .chip-title, .step-num, .cookie-title, .service-num {
  font-family: 'Archivo', system-ui, sans-serif;
}
h1.hero-title { font-weight: 900; font-size: clamp(40px, 5.6vw, 72px); letter-spacing: -0.03em; line-height: 1.03; }
.section-title { font-weight: 900; letter-spacing: -0.025em; }
.contact-left h2 { font-weight: 800; letter-spacing: -0.015em; }
.stat-value { font-weight: 900; }
.logo-word, .footer-logo-word { font-weight: 900; letter-spacing: -0.04em; }
.service-card h3, .step h3, .p-point h3, .step2-title, .success-box h3 { font-weight: 800; letter-spacing: -0.01em; }
.faq-btn { font-weight: 700; font-size: 17px; }
.step-num { font-weight: 900; }
.service-num { font-weight: 800; color: var(--muted); }
.personal-sign { font-family: 'Fraunces', serif; }

@media (max-width: 760px) {
  .container, .hero-inner, .footer-inner, .reviews-heading { padding-left: 22px; padding-right: 22px; }
  nav.main-nav, .hdr-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hdr-inner { padding: 0 20px; height: 68px; }
  .hero { padding: 118px 0 70px; }
  .hero-stage { padding: 4px; display: flex; flex-direction: column; gap: 12px; }
  .chip { padding: 10px 13px; position: static; width: max-content; max-width: 100%; }
  .chip-title { font-size: 13px; }
  .chip-abs { order: 0; }
  .chip-live { order: 1; }
  .mockup { order: 2; }
  .chip-mail { order: 3; margin: 0 auto; }
  .services, .faq { padding: 68px 0; }
  .steps { padding: 68px 0 120px; }
  .stats { padding: 150px 0 68px; }
  .contact { padding: 0; }
  .contact-inner { margin: -44px auto -70px; }
  .services-grid { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d"; }
  .services-grid .service-card:nth-child(1) { padding: 32px 26px; }
  .steps-grid::before { left: 21px; }
  .step, .step:nth-child(odd), .step:nth-child(even) {
    width: calc(100% - 58px); margin-left: 58px; margin-right: 0; transform: none;
  }
  .step + .step { margin-top: 18px; }
  .step:nth-child(odd) .step-num, .step:nth-child(even) .step-num { left: -58px; right: auto; width: 42px; height: 42px; font-size: 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .stat { padding: 0 16px; }
  .stat:nth-child(3) { border-left: none; }
  .inp-row { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { padding: 22px 20px 0; }
  .trustbar-inner { gap: 20px 26px; }
  .sticky-cta { display: block; }
  .contact-inner { border-radius: 22px; }
  .hero-bigword { display: none; }
  .hero-tools .t2, .hero-tools .t3 { display: none; }
  .hero-tools .t1 { top: 4%; left: 4%; width: 42px; }
  .hero-tools .t4 { bottom: 4%; right: 4%; left: auto; width: 40px; }
  .ad-result { min-height: 248px; }
  .tm-item { font-size: 17px; }
  .tm-track { gap: 20px; padding-right: 20px; }
  h1.hero-title .accent { padding: 1px 12px 5px; border-radius: 10px; }
  .mockup { box-shadow: 9px 9px 0 rgba(66,133,244,0.16); }
}
