﻿:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #f4f8ff;
  color: #0b2239;
  --bg: #ffffff;
  --surface: #eef6ff;
  --surface-strong: #d9eaff;
  --text: #0b2239;
  --muted: #52677d;
  --primary: #145ea8;
  --primary-strong: #0a3d73;
  --primary-soft: #d9eaff;
  --accent: #28a6d6;
  --line: rgba(20, 94, 168, 0.16);
  --border: rgba(20, 94, 168, 0.14);
  --shadow: 0 26px 70px rgba(20, 94, 168, 0.13);
  --shadow-soft: 0 16px 42px rgba(20, 94, 168, 0.09);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background:
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 34%, #ffffff 100%);
}

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

.page-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 28px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 12px 14px;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0a3d73 0%, #1976c9 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  color: #145ea8;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin: 0;
}

h1 {
  font-size: 1.3rem;
}

.site-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 94, 168, 0.14);
  background: #fff;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
}

.nav-toggle:checked + .nav-toggle-button + .site-nav,
.nav-toggle:checked + .nav-toggle-button + .site-nav a {
  display: block;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(20, 94, 168, 0.08);
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: none;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #145ea8 0%, #1976c9 100%);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(20, 94, 168, 0.18);
}

.button-outline {
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
  border: 1.5px solid rgba(20, 94, 168, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.button-secondary {
  color: var(--primary);
  background: #ffffff;
  border: 1.5px solid rgba(20, 94, 168, 0.14);
  box-shadow: 0 12px 30px rgba(20, 94, 168, 0.08);
}

.button.button-secondary:hover {
  background: #f5f9ff;
}

.button.button-primary:hover {
  box-shadow: 0 24px 50px rgba(20, 94, 168, 0.26);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  border: 1px solid rgba(20, 94, 168, 0.1);
  border-radius: 14px;
  background: rgba(248, 251, 254, 0.88);
  box-shadow: 0 14px 36px rgba(20, 94, 168, 0.08);
  backdrop-filter: blur(18px);
}

.map-section {
  padding-top: 70px;
}

.map-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.map-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.map-frame {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(20, 94, 168, 0.12);
  border-radius: var(--radius);
  box-shadow: none;
}

.hero-image-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-content: start;
  min-width: 0;
}

.hero-image {
  width: 100%;
  height: clamp(118px, 10vw, 154px);
  aspect-ratio: auto;
  border-radius: 12px;
  border: 1px solid rgba(20, 94, 168, 0.1);
  box-shadow: 0 18px 42px rgba(20, 94, 168, 0.1);
  object-fit: cover;
  background: var(--surface-strong);
}

.hero-image:first-child {
  grid-column: auto;
  aspect-ratio: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  background: white;
  border: 1px solid rgba(20, 94, 168, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  background: var(--surface-strong);
}

.gallery-card h3,
.gallery-card h4 {
  margin: 20px 22px 10px;
  font-size: 1.15rem;
}

.gallery-card p {
  margin: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.stats-section {
  padding-top: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(20, 94, 168, 0.1);
  box-shadow: 0 18px 40px rgba(20, 94, 168, 0.06);
  text-align: center;
}

.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.faq-section {
  padding-top: 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid details {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.faq-grid summary {
  position: relative;
  padding-right: 34px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  text-align: center;
  line-height: 26px;
  font-weight: 800;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-links {
  padding-top: 24px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-link {
  display: block;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(20, 94, 168, 0.12);
  background: white;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(20, 94, 168, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(20, 94, 168, 0.1);
}

.visuals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.visual-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.visual-card-3d {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(20, 94, 168, 0.1);
  box-shadow: 0 32px 70px rgba(20, 94, 168, 0.12);
}

.visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card h4 {
  margin: 0;
  font-size: 1.05rem;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .hero-image-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .visuals-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid,
  .faq-grid,
  .links-grid,
  .authority-grid,
  .proof-grid,
  .service-area-grid,
  .process-grid,
  .contact-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    grid-template-columns: 1fr;
  }
  .hero-main {
    display: contents;
  }
  .hero-copy {
    order: 1;
  }
  .hero-card {
    order: 2;
  }
  .hero-image-grid {
    order: 3;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: min(92%, 360px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 60px rgba(20, 94, 168, 0.16);
    flex-direction: column;
    gap: 14px;
    z-index: 10;
  }
  .nav-toggle-button {
    display: inline-flex;
  }
  .nav-toggle:checked + .nav-toggle-button + .site-nav {
    display: flex;
  }
  .site-header {
    align-items: center;
  }
  .map-panel {
    grid-template-columns: 1fr;
  }
  .cost-panel {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid nav {
    justify-content: flex-start;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(28px, 3vw, 42px);
  align-items: start;
  margin: 34px 0 28px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(20, 94, 168, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(20, 94, 168, 0.11);
}

.hero::before {
  content: none;
}

.hero-main,
.hero-copy,
.hero-card,
.cards-grid,
.gallery-grid,
.visuals-grid,
.process-grid,
.contact-grid,
.links-grid,
.stats-grid,
.faq-grid {
  min-width: 0;
}

.hero-main {
  display: grid;
  align-content: start;
  gap: 26px;
}

.hero-small {
  align-items: center;
}

.hero-small::after {
  content: "";
  display: block;
  min-height: 360px;
  border-radius: 32px;
  border: 1px solid rgba(20, 94, 168, 0.12);
  background:
    linear-gradient(180deg, rgba(20, 94, 168, 0.02), rgba(20, 94, 168, 0.2)),
    url("images/hero-autoabholung-ratingen.jpg") center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(20, 94, 168, 0.12);
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.55rem);
  line-height: 1.04;
  margin: 16px 0 20px;
  max-width: 720px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  letter-spacing: 0;
}

.hero-copy p {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-panel {
  display: contents;
}

.hero-card {
  width: 100%;
  align-self: start;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(20, 94, 168, 0.1);
}

.card-title {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 94, 168, 0.12);
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(20, 94, 168, 0.13);
  border-radius: 10px;
  background: #fbfdff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(20, 94, 168, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 94, 168, 0.1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5em;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: #126b3a;
}

.form-status[data-state="error"] {
  color: #a13333;
}

.hero-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.hero-checks li:last-child {
  grid-column: 1 / -1;
}

.hero-checks li {
  position: relative;
  min-height: 58px;
  padding: 10px 12px 10px 36px;
  border: 1px solid rgba(20, 94, 168, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 10px 30px rgba(20, 94, 168, 0.05);
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--primary);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 52px;
}

.trust-item {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  box-shadow: 0 12px 30px rgba(20, 94, 168, 0.06);
}

.section {
  padding: 70px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-header h2,
.section-header h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  margin-top: 14px;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.card h4 {
  margin-bottom: 14px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.authority-card {
  position: relative;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 26px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.authority-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.authority-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 94, 168, 0.24);
  box-shadow: 0 24px 60px rgba(20, 94, 168, 0.12);
}

.authority-card h3,
.proof-card h3,
.process-step h3,
.gallery-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.authority-card p,
.proof-card p,
.process-step p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.authority-card a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.authority-card a::after {
  content: " →";
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.proof-card-strong {
  background:
    linear-gradient(135deg, rgba(10, 61, 115, 0.98) 0%, rgba(20, 94, 168, 0.96) 100%);
  color: #fff;
}

.proof-card-strong h3,
.proof-card-strong p {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(20, 94, 168, 0.06);
}

.process-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 800;
  margin-bottom: 18px;
}

.cost-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #0a3d73 0%, #145ea8 62%, #2f94c8 100%);
  box-shadow: 0 28px 70px rgba(20, 94, 168, 0.18);
}

.cost-panel h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.12;
  margin: 12px 0 16px;
  color: #fff;
}

.cost-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.cost-panel .eyebrow {
  color: #d6ecff;
}

.cost-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cost-list span {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-area-card {
  display: grid;
  gap: 8px;
  min-height: 220px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(20, 94, 168, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 34, 66, 0.1), rgba(8, 34, 66, 0.78)),
    url("images/service-fahrzeugabholung.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(20, 94, 168, 0.16);
}

.service-area-card span {
  color: #d6ecff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-area-card strong {
  font-size: 1.25rem;
}

.area-note {
  margin: 20px 0 0;
  color: var(--muted);
}

.proof-section,
.service-area-section,
.faq-section {
  margin-inline: -5vw;
  padding-inline: 5vw;
  border-block: 1px solid rgba(20, 94, 168, 0.08);
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.82), rgba(255, 255, 255, 0.94));
}

.gallery-section {
  padding-top: 78px;
}

.local-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.local-copy p {
  color: var(--muted);
  max-width: 640px;
}

.local-panel {
  min-height: 320px;
  border-radius: 32px;
  border: 1px solid rgba(20, 94, 168, 0.12);
  background:
    linear-gradient(180deg, rgba(20, 94, 168, 0.02), rgba(20, 94, 168, 0.2)),
    url("images/service-fahrzeugverwertung.jpg") center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(20, 94, 168, 0.1);
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.legal-page {
  padding: 54px 0 28px;
}

.impressum {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.impressum h1 {
  margin: 12px 0 30px;
  color: var(--text);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 1.05;
}

.impressum h2,
.impressum h3 {
  margin: 30px 0 12px;
  color: var(--primary-strong);
  font-size: 1.2rem;
  line-height: 1.3;
}

.impressum p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.85;
  overflow-wrap: break-word;
}

.impressum a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.privacy-policy ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.privacy-policy li + li {
  margin-top: 6px;
}

.privacy-policy strong {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 94, 168, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(15, 35, 55, 0.18);
  backdrop-filter: blur(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.cookie-banner strong {
  display: block;
  color: var(--primary-strong);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.cookie-actions button {
  min-width: 78px;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(20, 94, 168, 0.22);
}

.site-footer {
  padding: 42px 0 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(20, 94, 168, 0.12);
  padding-top: 24px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-grid a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-main {
    display: contents;
  }
  .hero-copy {
    order: 1;
  }
  .hero-card {
    order: 2;
  }
  .hero-image-grid {
    order: 3;
  }
  .hero-panel,
  .map-panel {
    grid-template-columns: 1fr;
  }
  .hero-card {
    padding: 24px;
    border-radius: var(--radius);
  }
  .hero-image-grid,
  .gallery-grid,
  .visuals-grid,
  .stats-grid,
  .faq-grid,
  .links-grid,
  .authority-grid,
  .proof-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip, .cards-grid, .process-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .hero-checks li:last-child {
    grid-column: auto;
  }
  .local-highlight {
    grid-template-columns: 1fr;
  }
  .hero-small::after {
    min-height: 280px;
  }
}

@media (max-width: 650px) {
  .page-shell {
    padding: 18px;
    max-width: 100vw;
    overflow: hidden;
  }
  .site-header {
    top: 8px;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-radius: 14px;
  }
  .site-nav {
    left: 0;
    right: 0;
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: 1.82rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .hero-copy,
  .hero-main,
  .hero-card,
  .hero-image-grid,
  .hero-image,
  .hero-actions,
  .hero-checks {
    width: 100%;
    max-width: 100%;
  }
  .hero {
    gap: 24px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero::before {
    inset: 0 -18px 10px;
  }
  .hero-copy p,
  .hero-checks li {
    overflow-wrap: anywhere;
  }
  .button {
    min-width: 0;
    white-space: normal;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
    padding: 0.95rem 1rem;
  }
  .hero-image-grid .hero-image:nth-child(n+2) {
    display: none;
  }
  .section {
    padding: 54px 0;
  }
  .section-header {
    margin-bottom: 26px;
  }
  .section-header h2,
  .section-header h3 {
    font-size: 1.78rem;
  }
  .proof-section,
  .service-area-section,
  .faq-section {
    margin-inline: -18px;
    padding-inline: 18px;
  }
  .trust-strip {
    margin-bottom: 36px;
  }
  .hero-small::after,
  .local-panel {
    min-height: 220px;
  }
  .authority-card,
  .proof-card,
  .cost-panel,
  .service-area-card {
    border-radius: var(--radius);
    padding: 22px;
  }
  .legal-page {
    padding: 30px 0 18px;
  }
  .impressum {
    padding: 26px 22px;
  }
  .impressum h1 {
    font-size: 2rem;
  }
  .impressum h2,
  .impressum h3 {
    font-size: 1.08rem;
  }
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-actions {
    justify-content: space-between;
  }
  .cookie-actions button {
    min-width: 96px;
  }
  .cost-list {
    grid-template-columns: 1fr;
  }
}
