/* =========================================================
   G&S Kreative Farbwelt – Design System
   Schriften: selbst gehostet (DSGVO-konform, kein externes CDN)
   – Bricolage Grotesque (Display) + Inter (Text), beide variabel.
   ========================================================= */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterVar";
  src: url("fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Markenfarben */
  --dark: #3c3c3b;
  --ink: #232322;
  --ink-deep: #161615;
  --blue: #2972b9;
  --blue-deep: #1f5f9d;
  --green: #46ac3a;
  --yellow: #eae242;
  --red: #e6302f;

  /* Neutrale Flächen */
  --white: #ffffff;
  --paper: #f6f4ee;
  --paper-2: #efece4;
  --muted: rgba(35, 35, 34, 0.64);
  --muted-soft: rgba(35, 35, 34, 0.46);
  --line: rgba(35, 35, 34, 0.12);
  --line-strong: rgba(35, 35, 34, 0.2);

  /* Tiefe */
  --shadow-sm: 0 2px 10px rgba(35, 35, 34, 0.06);
  --shadow: 0 18px 44px rgba(35, 35, 34, 0.12);
  --shadow-lg: 0 34px 80px rgba(20, 20, 19, 0.22);

  /* Form */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-height: 76px;
  --rainbow: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--red));

  --font-text: "InterVar", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Bricolage Grotesque", "InterVar", ui-sans-serif, system-ui, sans-serif;

  font-family: var(--font-text);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 12px); }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink-deep);
  font-optical-sizing: auto;
}

p { margin: 0; }

::selection { background: rgba(41, 114, 185, 0.18); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout-Helfer ---------- */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-muted { background: var(--paper); }

.lead { color: var(--muted); font-size: 1.12rem; }

.skip-link {
  position: fixed;
  left: 1rem; top: 1rem;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--rainbow);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.82); }

.accent-text { color: var(--blue); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}
.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--rainbow);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; width: 168px; flex-shrink: 0; }
.brand img { width: 100%; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.site-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.32rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rainbow);
  transition: transform 200ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0.4rem;
  transition: color 160ms ease;
}
.header-phone svg { color: var(--blue); }
.header-phone:hover { color: var(--blue-deep); }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-arrow::after {
  content: "";
  width: 0.5rem; height: 0.5rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.button-arrow:hover::after, .button-arrow:focus-visible::after { transform: translateX(3px) rotate(45deg); }

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(41, 114, 185, 0.28);
}
.button-primary:hover, .button-primary:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(41, 114, 185, 0.34);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-strong);
}
.button-secondary:hover, .button-secondary:focus-visible {
  border-color: var(--ink);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}
.button-ghost:hover, .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}

.button-block { width: 100%; }
.header-cta { min-height: 44px; padding-inline: 1.25rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: image-set(url("images/hero.webp") type("image/webp"), url("images/hero.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: 80% center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 26, 25, 0.95) 0%, rgba(26, 26, 25, 0.8) 34%, rgba(26, 26, 25, 0.45) 62%, rgba(26, 26, 25, 0.15) 100%),
    linear-gradient(0deg, rgba(26, 26, 25, 0.55), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 72vh, 660px);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.hero-copy { max-width: 620px; }

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
}

.hero-lead {
  margin-top: 1.4rem;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.hero-trust li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(70, 172, 58, 0.18);
}

/* =========================================================
   USP-STRIP
   ========================================================= */
.usp {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  background: var(--ink);
  color: var(--white);
}
.usp-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 700;
}
.usp-item strong { display: block; font-size: 1.02rem; }
.usp-item p { margin: 0.15rem 0 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.66); }

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head { max-width: 760px; margin-bottom: 2.8rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head .lead { margin-top: 1rem; }
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.inline-link { color: var(--blue-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--blue); }

/* =========================================================
   LEISTUNGEN
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}
.service-card[data-accent="blue"]::before   { background: var(--blue); }
.service-card[data-accent="green"]::before  { background: var(--green); }
.service-card[data-accent="yellow"]::before { background: var(--yellow); }
.service-card[data-accent="red"]::before     { background: var(--red); }
.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.service-card:hover::before, .service-card:focus-within::before { transform: scaleX(1); }

.service-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
}
.service-card h3 { margin: 1.4rem 0 0; font-size: 1.3rem; }
.service-card p { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.98rem; }

.service-card-dark { background: var(--ink); color: var(--white); border-color: transparent; }
.service-card-dark h3 { color: #fff; }
.service-card-dark .service-number { color: rgba(255, 255, 255, 0.5); }
.service-card-dark p { color: rgba(255, 255, 255, 0.72); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
}
.card-link::after {
  content: "";
  width: 0.42rem; height: 0.42rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.card-link:hover::after { transform: translateX(3px) rotate(45deg); }

/* =========================================================
   ABLAUF / STEPS
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.7rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
}
.step h3 { font-size: 1.18rem; }
.step p { margin-top: 0.5rem; color: var(--muted); font-size: 0.96rem; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.4rem; right: -0.75rem;
  width: 1.1rem; height: 2px;
  background: var(--line-strong);
}

/* =========================================================
   REFERENZEN / GALERIE
   ========================================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
.filter-button {
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.filter-button:hover, .filter-button:focus-visible { border-color: var(--ink); color: var(--ink); }
.filter-button.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative;
  min-height: 270px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--white);
  background: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.gallery-item.is-hidden { display: none; }
.gallery-item:hover, .gallery-item:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }

.gallery-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 240ms ease;
}
.gallery-item:hover .gallery-img,
.gallery-item:focus-visible .gallery-img { transform: scale(1.05); filter: saturate(1.05); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.gallery-label { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; z-index: 2; }
.gallery-label strong { display: block; font-size: 1.25rem; font-weight: 800; }
.gallery-label small { display: block; margin-top: 0.15rem; color: rgba(255, 255, 255, 0.78); font-weight: 600; }

/* =========================================================
   ÜBER UNS (dunkel)
   ========================================================= */
.section-dark { background: var(--ink); color: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.about-copy > p { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.76); font-size: 1.08rem; }
.checklist { margin: 1.6rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.8rem; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.88);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15rem;
  width: 1.3rem; height: 1.3rem;
  border-radius: 999px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center / 100% no-repeat,
        linear-gradient(#000, #000);
  -webkit-mask-composite: source-in;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { padding: 1.8rem 1.5rem; background: #353534; }
.stat strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { display: block; margin-top: 0.3rem; color: rgba(255, 255, 255, 0.66); font-size: 0.92rem; font-weight: 600; }

/* =========================================================
   BEWERTUNGEN
   ========================================================= */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.review-panel {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.review-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 100% 0, rgba(41, 114, 185, 0.4), transparent 60%),
    radial-gradient(60% 70% at 0 100%, rgba(230, 48, 47, 0.26), transparent 60%);
}
.review-panel > * { position: relative; z-index: 1; }
.stars { display: flex; gap: 0.35rem; margin-bottom: 1.3rem; }
.stars span {
  width: 24px; height: 24px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}
.review-quote { margin: 0; font-size: 1.32rem; font-weight: 700; line-height: 1.35; }
.review-hint { margin: 0.8rem 0 0; font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }
.review-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.8rem 0 0;
}
.review-panel dl div { padding-top: 0.9rem; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.review-panel dt { color: rgba(255, 255, 255, 0.6); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.review-panel dd { margin: 0.3rem 0 0; font-weight: 700; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-height) + 1.5rem); }
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item p { padding: 0 1.3rem 1.3rem; color: var(--muted); }

/* =========================================================
   ANFRAGE
   ========================================================= */
.section-cta {
  background:
    radial-gradient(80% 120% at 0 0, rgba(41, 114, 185, 0.06), transparent 55%),
    radial-gradient(80% 120% at 100% 100%, rgba(230, 48, 47, 0.05), transparent 55%),
    var(--white);
}
.request-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.request-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.request-copy > p { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }
.request-contacts { display: grid; gap: 0.7rem; margin-top: 1.8rem; }
.request-contact {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 700;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.request-contact span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-soft);
  min-width: 56px;
}
.request-contact:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--blue-deep); }

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label:not(.chip) {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-form input:not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fbfbf8;
  outline: none;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(41, 114, 185, 0.14);
}
.contact-form input:not([type="radio"]).is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 48, 47, 0.12);
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  line-height: 1.45;
}
.consent input { width: 20px; height: 20px; min-height: 0; flex-shrink: 0; accent-color: var(--blue); }
.consent a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }

.form-status { margin: 0; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status.is-error { color: var(--red); }
.form-status.is-success { color: var(--green); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.contact-card h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 0.2rem; }
.contact-card address {
  margin: 1.2rem 0 1.6rem;
  font-style: normal;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-card-dark {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}
.contact-card-dark h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.8rem; }
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  font-size: 1.05rem;
  transition: padding-left 160ms ease, color 160ms ease;
}
.contact-line:last-child { border-bottom: 0; }
.contact-line span {
  min-width: 58px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}
.contact-line:hover { color: var(--yellow); padding-left: 0.3rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #232322; color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer-brand img { width: 188px; margin-bottom: 1.1rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); max-width: 320px; font-size: 0.96rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.5); margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255, 255, 255, 0.78); font-size: 0.96rem; transition: color 160ms ease; }
.footer-col a:hover { color: var(--yellow); }

.footer-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  flex-wrap: wrap;
}
.footer-bar p { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color 160ms ease; }
.footer-legal a:hover { color: var(--yellow); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, background 160ms ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0.9rem; right: 0.9rem;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}
.lightbox-close::before, .lightbox-close::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--ink);
}
.lightbox-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.lightbox-img { display: block; width: 100%; max-height: 68vh; object-fit: contain; background: #1a1a19; }
.lightbox-copy { padding: 1.6rem; background: var(--white); }
.lightbox-copy h3 { font-size: 1.6rem; }
.lightbox-copy p:not(.eyebrow) { margin-top: 0.6rem; color: var(--muted); }

/* =========================================================
   REVEAL-ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
.legal-content p { color: var(--muted); margin-bottom: 0.8rem; }
.legal-content a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-nav { margin-left: auto; }

/* =========================================================
   AGENTUR-FEINSCHLIFF
   ========================================================= */

/* Grain-Textur für dunkle Flächen */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Eyebrow-Index */
.eyebrow-num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow-light .eyebrow-num { color: var(--yellow); }

/* Hero-Typo etwas mutiger mit Display-Font */
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.04em; }

/* Hero Scroll-Hinweis */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 50%;
  background: var(--yellow);
  animation: scrollCue 1.9s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(-100%); }
  65%, 100% { transform: translateY(200%); }
}

/* Marquee-Lauftext */
.marquee {
  overflow: hidden;
  background: var(--ink-deep);
  background-image: var(--grain);
  background-blend-mode: overlay;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-group span {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 0 1.4rem;
  white-space: nowrap;
}
.marquee-group span:nth-of-type(even) {
  color: rgba(255, 255, 255, 0.4);
}
.marquee-group i {
  width: 11px; height: 11px;
  border-radius: 999px;
  flex-shrink: 0;
}
.marquee-group i:nth-of-type(4n + 1) { background: var(--blue); }
.marquee-group i:nth-of-type(4n + 2) { background: var(--green); }
.marquee-group i:nth-of-type(4n + 3) { background: var(--yellow); }
.marquee-group i:nth-of-type(4n + 4) { background: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Grain auf dunklen Sektionen */
.section-dark { position: relative; isolation: isolate; }
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Stat-Zähler ohne Breitensprung */
.stat strong { font-variant-numeric: tabular-nums; }

/* Galerie-Hover-Hinweis */
.gallery-item::before {
  content: "Ansehen";
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 3;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.gallery-item:hover::before,
.gallery-item:focus-visible::before { opacity: 1; transform: translateY(0); }

/* Footer-CTA */
.footer-cta {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}
.footer-cta-text h2 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.0;
}
.footer-cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Gestaffelte Reveals */
.reveal { transition-delay: calc(var(--reveal-i, 0) * 65ms); }
[data-stagger] > *:nth-child(2) { --reveal-i: 1; }
[data-stagger] > *:nth-child(3) { --reveal-i: 2; }
[data-stagger] > *:nth-child(4) { --reveal-i: 3; }
[data-stagger] > *:nth-child(5) { --reveal-i: 4; }
[data-stagger] > *:nth-child(6) { --reveal-i: 5; }
[data-stagger] > *:nth-child(7) { --reveal-i: 6; }
[data-stagger] > *:nth-child(8) { --reveal-i: 7; }

/* Custom Scrollbar (Desktop) */
@media (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
  ::-webkit-scrollbar { width: 12px; }
  ::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; border: 3px solid var(--white); }
  ::-webkit-scrollbar-thumb:hover { background: var(--muted-soft); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .review-layout, .request-grid, .faq-layout, .section-head.split { grid-template-columns: 1fr; }
  .faq-layout .section-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .site-nav, .header-phone { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }

  .site-nav.is-open {
    display: grid;
    position: fixed;
    inset: calc(var(--header-height) + 4px) 0 auto;
    margin: 0;
    padding: 1rem 24px 1.6rem;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open a { padding: 0.85rem 0.9rem; font-size: 1.05rem; }
  .site-nav.is-open a::after { display: none; }

  .hero-media { background-position: 72% center; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(26, 26, 25, 0.94) 0%, rgba(26, 26, 25, 0.78) 55%, rgba(26, 26, 25, 0.6) 100%),
      linear-gradient(0deg, rgba(26, 26, 25, 0.5), transparent 46%);
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { width: min(100% - 28px, 1240px); }
  .brand { width: 150px; }
  .hero-inner { min-height: clamp(420px, 80vh, 560px); }
  .hero-scroll { display: none; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .service-grid, .gallery-grid, .steps, .usp-grid, .about-stats, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
  .review-panel dl { grid-template-columns: 1fr; gap: 0; }
  .review-panel dl div { padding-block: 0.7rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; transition-delay: 0ms; }
  .marquee-track { animation: none; transform: none; }
  .hero-scroll-line::after { animation: none; }
}

/* =========================================================
   VERTRAUENS-STREIFEN
   ========================================================= */
.trust-section {
  padding: 1.25rem 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* =========================================================
   ÜBER UNS – FOTO-PLACEHOLDER & ZITAT
   ========================================================= */
.about-img-wrap { margin-bottom: 1.5rem; }
.about-img-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 150px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.86rem;
  text-align: center;
}
.about-author-tag {
  display: inline-flex;
  flex-direction: column;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}
.about-author-tag strong { font-size: 0.9rem; color: #fff; }
.about-author-tag span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.48); margin-top: 0.1rem; }

.about-quote {
  margin: 1.8rem 0 0;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.04rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}
.about-quote cite {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.79rem;
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 4.8rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, background 160ms ease;
}
.wa-float.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-float:hover { background: #1ebe59; transform: translateY(-2px); }

/* =========================================================
   STICKY MOBILE CTA-LEISTE
   ========================================================= */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  height: 64px;
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.22);
}
.smb-call,
.smb-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 160ms ease, color 160ms ease;
}
.smb-call {
  width: 36%;
  color: rgba(255, 255, 255, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.smb-call:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.smb-inquiry {
  width: 64%;
  background: var(--blue);
  color: #fff;
}
.smb-inquiry:hover { background: var(--blue-deep); }

@media (max-width: 860px) {
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .wa-float { right: 1rem; bottom: 9rem; }
  .to-top { right: 1rem; bottom: 5rem; }
}

/* =========================================================
   ABLAUF: 5 SCHRITTE – RESPONSIVE ANPASSUNG
   ========================================================= */
@media (max-width: 1040px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   TYPOGRAFIE & WHITESPACE – FEINSCHLIFF
   ========================================================= */
.section-head { margin-bottom: 3.2rem; }
.hero-inner { min-height: clamp(520px, 82vh, 740px); }
.about-copy > p { line-height: 1.78; }
.checklist { gap: 0.9rem; }
.step { padding: 1.8rem 1.4rem; }

/* =========================================================
   KUNDENSTIMMEN / BEWERTUNGEN
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-stars { display: flex; gap: 3px; color: #f59e0b; }
.review-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author > div { display: flex; flex-direction: column; gap: 0.1rem; }
.review-author strong { font-size: 0.88rem; color: var(--ink); }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.reviews-cta-text { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; margin: 0; }

/* =========================================================
   LEISTUNGS-CHIPS IM FORMULAR
   ========================================================= */
.service-picker {
  border: none;
  margin: 0;
  padding: 0;
}
.service-picker-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.required-hint { color: var(--blue); }
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  cursor: pointer;
  user-select: none;
}
.chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1;
}
.chip:hover span {
  border-color: var(--blue);
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 6%, var(--white));
}
.chip input[type="radio"]:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}
.chip input[type="radio"]:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.service-chips.is-invalid .chip span {
  border-color: var(--red, #e53e3e);
}

/* =========================================================
   DATEI-UPLOAD IM FORMULAR
   ========================================================= */
.file-label { display: flex; flex-direction: column; gap: 0.4rem; }
.file-hint { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.file-drop-zone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--bg-subtle, color-mix(in srgb, var(--blue) 4%, var(--paper)));
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.file-drop-zone:focus-within,
.file-drop-zone.drag-over {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--blue) 6%, var(--paper));
}
.file-drop-zone svg { flex-shrink: 0; color: var(--blue); }
.file-drop-zone strong { color: var(--blue); }
.file-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.file-preview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.file-preview li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text);
}
