/* ==========================================================================
   Aufmaßprofi — Anfrage-Landingpage · Design-System
   Markenfarben aus aufmassprofi.com: Rot #E2001A, Anthrazit #262626/#464646,
   Hellgrau #F1F1F1 · Schriften: Raleway (Headlines), Work Sans (Text)
   ========================================================================== */

@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #e2001a;
  --red-700: #b50519;
  --red-100: #ffd6da;
  --red-050: #fff1f2;
  --ink: #1d1d1d;
  --ink-800: #262626;
  --text: #3f3f3f;
  --muted: #707070;
  --gray-300: #c6c6c6;
  --line: #e5e5e5;
  --soft: #f4f4f4;
  --soft-2: #ebebeb;
  --dark: #1b1b1b;
  --dark-2: #262626;
  --dark-3: #343434;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.14);
  --shadow-soft: 0 10px 30px rgba(20, 20, 20, 0.08);
  --container: 1200px;
  --header-h: 78px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.55rem); font-weight: 300; letter-spacing: -0.02em; }
h1 strong, h1 .accent { font-weight: 700; color: var(--red); }
h2 { font-size: clamp(1.8rem, 3.3vw, 2.55rem); }
h2 .accent { color: var(--red); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.05em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--dark); color: #d9d9d9; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #c9c9c9; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--red); margin-bottom: 16px;
}
.kicker::before { content: ""; width: 30px; height: 3px; background: var(--red); border-radius: 2px; }
.section-dark .kicker { color: #ff5c6d; }
.section-dark .kicker::before { background: #ff5c6d; }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.lead { font-size: 1.16rem; color: var(--muted); }
.section-dark .lead { color: #bdbdbd; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-weight: 600; font-size: 1rem; text-decoration: none;
  line-height: 1.2; padding: 15px 28px; border: 0; border-radius: var(--radius-sm);
  cursor: pointer; white-space: nowrap;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(226, 0, 26, 0.28); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.65; cursor: default; transform: none; box-shadow: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { background: var(--soft); color: var(--ink); box-shadow: inset 0 0 0 2px var(--gray-300); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #fff; color: var(--red-700); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2); }
.btn-outline-white { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); box-shadow: inset 0 0 0 2px var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); margin-top: 14px; }
.cta-note svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.97); border-color: var(--line); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06); }
.header-inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.logo { display: block; flex-shrink: 0; line-height: 0; }
.logo img { height: 32px; width: auto; }
.main-nav { display: flex; gap: 30px; margin-left: 24px; }
.main-nav a {
  text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-800); padding: 6px 0; position: relative;
}
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red); transition: right var(--transition); }
.main-nav a:hover::after { right: 0; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; color: var(--ink); white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--red); }
.header-phone:hover { color: var(--red); }

/* --------------------------------------------------------------------------
   Hero (Millimeterpapier-Raster als Markenmotiv)
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + clamp(44px, 7vw, 84px)) 0 clamp(40px, 6vw, 72px);
  background-color: var(--white);
  background-image:
    linear-gradient(to right, rgba(226, 0, 26, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 0, 26, 0.09) 1px, transparent 1px),
    linear-gradient(to right, rgba(226, 0, 26, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 0, 26, 0.045) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -1px -1px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.85) 62%, #fff 100%);
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.hero-copy { padding-top: 12px; }
.hero-copy h1 { margin-bottom: 0.5em; }
.hero-copy .lead { font-size: 1.2rem; max-width: 560px; }
.trust-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; }
.trust-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink-800); }
.trust-list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.trust-list small { display: block; font-weight: 400; color: var(--muted); font-size: 0.92rem; }
.hero-cta { margin-top: 6px; }
.hero-phone { font-weight: 600; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 9px; }
.hero-phone svg { width: 18px; height: 18px; color: var(--red); }
.hero-phone:hover { color: var(--red); }
.hero-phone small { font-weight: 400; color: var(--muted); }

.format-strip {
  margin-top: clamp(32px, 5vw, 52px);
  display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center;
  font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.format-strip span { display: inline-flex; align-items: center; gap: 8px; }
.format-strip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.format-strip .label { color: var(--gray-300); }
.format-strip .label::before { display: none; }

/* --------------------------------------------------------------------------
   Angebots-Konfigurator (Formular-Karte)
   -------------------------------------------------------------------------- */
.quote-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quote-progress { height: 5px; background: var(--soft-2); }
.quote-progress span { display: block; height: 100%; width: 33.3%; background: var(--red); transition: width 0.35s ease; }
.quote-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 24px 28px 6px; }
.quote-head h2 { font-size: 1.32rem; margin: 0 0 2px; letter-spacing: -0.01em; }
.quote-head p { margin: 0; font-size: 0.93rem; color: var(--muted); }
.quote-step-label { flex-shrink: 0; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); background: var(--red-050); padding: 7px 11px; border-radius: 999px; margin-top: 2px; }
.quote-body { padding: 16px 28px 26px; }
.quote-step[hidden] { display: none; }
.quote-step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.quote-step .step-hint { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }

.tile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.tile { position: relative; display: block; cursor: pointer; }
.tile input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tile-box {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; min-height: 66px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.tile-box svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--red); }
.tile-box strong { display: block; font-size: 0.95rem; color: var(--ink); line-height: 1.25; font-weight: 600; }
.tile-box small { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.3; margin-top: 2px; }
.tile:hover .tile-box { border-color: var(--gray-300); transform: translateY(-1px); }
.tile input:checked + .tile-box { border-color: var(--red); background: var(--red-050); box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.12); }
.tile input:focus-visible + .tile-box { outline: 3px solid rgba(226, 0, 26, 0.35); outline-offset: 2px; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.86rem; font-weight: 600; color: var(--ink-800); }
.form-field .optional { font-weight: 400; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.14); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #a5a5a5; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: var(--red); }
.form-field .field-error { display: none; font-size: 0.8rem; color: var(--red); }
.form-field.invalid .field-error { display: block; }

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

.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin-top: 14px; cursor: pointer; }
.form-consent input { margin: 4px 0 0; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--red); }
.form-consent a { color: var(--ink); }
.form-consent.invalid { color: var(--red); }

.summary-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 16px; padding: 0; list-style: none; }
.summary-chips li { font-size: 0.8rem; font-weight: 500; color: var(--ink-800); background: var(--soft); border-radius: 999px; padding: 6px 11px; }
.summary-chips button { font-size: 0.8rem; font-weight: 600; color: var(--red); background: none; border: 0; padding: 6px 4px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

.quote-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 20px; }
.quote-nav .btn { flex: 1; }
.quote-nav .btn-ghost { flex: 0 0 auto; }
.quote-foot { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 0.82rem; color: var(--muted); }
.quote-foot svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

.form-status { display: none; margin-top: 14px; padding: 13px 15px; border-radius: var(--radius-sm); font-size: 0.93rem; line-height: 1.5; }
.form-status.ok { display: block; background: #e8f7ee; color: #12693a; }
.form-status.error { display: block; background: var(--red-050); color: var(--red-700); }

/* --------------------------------------------------------------------------
   Team + Kennzahlen
   -------------------------------------------------------------------------- */
.team-intro { padding-top: clamp(24px, 4vw, 48px); }
.team-split .split-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.stat { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 20px 18px; }
.stat strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.4rem); color: var(--red); line-height: 1; letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 8px; font-size: 0.88rem; color: var(--muted); line-height: 1.35; }

/* --------------------------------------------------------------------------
   Leistungen
   -------------------------------------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 22px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--red-100); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--red-050); color: var(--red); display: grid; place-items: center; margin-bottom: 18px; }
.service-icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service p { font-size: 0.97rem; color: var(--muted); margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 26px; font-size: 0.95rem; color: var(--text); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--red-050) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2001a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.service-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--red); text-decoration: none; font-size: 0.95rem; cursor: pointer; }
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-link:hover svg { transform: translateX(4px); }
.more-services { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.more-services .label { font-size: 0.86rem; font-weight: 600; color: var(--muted); margin-right: 6px; }
.pill { display: inline-block; font-size: 0.85rem; font-weight: 500; color: var(--ink-800); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }

/* --------------------------------------------------------------------------
   Split-Layouts (Technik, Ansprechpartner)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-tag {
  position: absolute; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 10px 14px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.media-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.section-dark .media-tag { background: var(--dark-3); color: #fff; }

.method-list { list-style: none; padding: 0; margin: 22px 0 24px; display: grid; gap: 10px; }
.method-list li { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.method-list .year { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: 0.95rem; letter-spacing: 0.02em; }
.method-list strong { display: block; color: var(--ink); font-size: 0.98rem; }
.method-list small { display: block; color: var(--muted); font-size: 0.86rem; }
.note-box { display: flex; gap: 14px; align-items: flex-start; background: var(--soft); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.95rem; color: var(--text); }
.note-box svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.note-box p { margin: 0; }

/* --------------------------------------------------------------------------
   Ablauf
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: step; position: relative; }
.step-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 24px; }
.step-num { font-family: var(--font-head); font-weight: 300; font-size: 3rem; line-height: 1; color: var(--red); letter-spacing: -0.03em; margin-bottom: 14px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { font-size: 0.96rem; color: var(--muted); margin: 0; }
.step-card .step-meta { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--ink-800); background: var(--soft); padding: 5px 10px; border-radius: 999px; }
.steps-cta { margin-top: clamp(30px, 5vw, 48px); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.steps-cta .or { color: var(--muted); font-size: 0.95rem; }
.steps-cta .or a { color: var(--ink); font-weight: 600; text-decoration: none; }
.steps-cta .or a:hover { color: var(--red); }

/* --------------------------------------------------------------------------
   Warum Aufmaßprofi (dunkel)
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 8px; }
.why { background: var(--dark-2); border: 1px solid #3a3a3a; border-radius: var(--radius-sm); padding: 22px 22px 20px; }
.why svg { width: 26px; height: 26px; color: #ff5c6d; margin-bottom: 12px; }
.why h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why p { font-size: 0.93rem; margin: 0; color: #b9b9b9; }
.section-dark .split-media img { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }

/* --------------------------------------------------------------------------
   Ansprechpartner
   -------------------------------------------------------------------------- */
.person-media { position: relative; max-width: 460px; }
.person-media::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border-radius: var(--radius); background: var(--red-050); z-index: 0; }
.person-media img { position: relative; z-index: 1; }
.quote { font-family: var(--font-head); font-weight: 300; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.4; color: var(--ink); margin: 0 0 18px; padding-left: 20px; border-left: 3px solid var(--red); }
.quote cite { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); margin-top: 10px; font-weight: 500; }
.timeline { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.timeline li { font-size: 0.86rem; color: var(--text); background: var(--soft); border-radius: 999px; padding: 7px 13px; }
.timeline li strong { color: var(--red); font-weight: 700; margin-right: 4px; }
.contact-row { display: flex; flex-wrap: wrap; gap: 12px; }
.team-line { margin-top: 24px; font-size: 0.92rem; color: var(--muted); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 22px; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-list details[open] { border-color: var(--red-100); box-shadow: var(--shadow-soft); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--red-050);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2001a' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px; transition: transform var(--transition);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-body { padding: 0 0 20px; color: var(--text); font-size: 0.98rem; }
.faq-list .faq-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Schluss-CTA (Rot)
   -------------------------------------------------------------------------- */
.section-red { background: var(--red); color: #fff; }
.section-red h2 { color: #fff; }
.section-red p { color: rgba(255, 255, 255, 0.86); }
.final-cta { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 40px; align-items: center; }
.final-cta .cta-row { justify-content: flex-end; }
.final-cta .btn-outline-white svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--dark); color: #b3b3b3; padding: 56px 0 28px; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-logo img { height: 30px; width: auto; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #e2e2e2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.84rem; color: #8a8a8a; }

/* --------------------------------------------------------------------------
   Mobile Sticky-Bar (Anruf + Anfrage)
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
.mobile-bar .btn { flex: 1; min-height: 46px; padding: 12px 14px; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Legal-/Danke-Seiten
   -------------------------------------------------------------------------- */
.page-plain { padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px)); }
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 0.7em; }
.legal h2, .legal h3, .legal h4, .legal h5 { margin-top: 1.7em; }
.legal h3 { font-size: 1.35rem; }
.legal h4 { font-size: 1.12rem; }
.legal h5 { font-size: 1rem; }
.legal a { color: var(--red); }
.legal .delta-note { background: var(--soft); border-left: 3px solid var(--red); padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.92rem; color: var(--muted); }
.thanks { max-width: 720px; text-align: center; margin: 0 auto; }
.thanks .icon { width: 84px; height: 84px; border-radius: 50%; background: var(--red-050); color: var(--red); display: grid; place-items: center; margin: 0 auto 24px; }
.thanks .icon svg { width: 40px; height: 40px; }
.thanks .next { text-align: left; margin: 32px auto; display: grid; gap: 12px; max-width: 520px; }
.thanks .next li { display: flex; gap: 12px; align-items: flex-start; }
.thanks .next .n { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700; font-size: 0.85rem; display: grid; place-items: center; }

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--reveal-delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service, .tile-box { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-nav { gap: 20px; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy .lead { max-width: none; }
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .person-media { max-width: 420px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .cta-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --header-h: 66px; }
  body { padding-bottom: 76px; }
  .mobile-bar { display: flex; }
  .logo img { height: 26px; }
  .header-actions { gap: 12px; }
  .header-actions .btn { display: none; }
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-copy .lead { font-size: 1.08rem; }
  .quote-head, .quote-body { padding-left: 18px; padding-right: 18px; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile-box { min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .service-grid, .steps, .why-grid { grid-template-columns: 1fr; }
  .method-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .final-cta .cta-row .btn { width: 100%; }
}
@media (max-width: 420px) {
  .stats { gap: 10px; }
  .stat { padding: 16px 14px 14px; }
  .stat strong { font-size: 1.7rem; }
}
