:root {
  --blue-950: #07172d;
  --blue-900: #0b2344;
  --blue-800: #12345d;
  --orange: #f47b20;
  --orange-dark: #c95f14;
  --ink: #152033;
  --muted: #637083;
  --line: #d9e1ea;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 23, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.75);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--orange);
  color: var(--blue-950);
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.98);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(2, 8, 23, 0.24);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.82rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar .container,
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar .container {
  min-height: 32px;
}

.topbar a {
  color: #e2e8f0;
  text-decoration: none;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbe7f4;
  font-size: 0.9rem;
}

.topbar-rating span {
  color: #f59e0b;
  letter-spacing: 1px;
}

.topbar-rating strong {
  color: #ffffff;
  font-weight: 800;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.nav-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

.brand-logo {
  width: min(205px, 28vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.2);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  border-radius: 0;
  color: #edf3fa;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #ffb171;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--blue-950);
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.24);
}

.btn-primary:hover {
  background: #ff8a32;
  box-shadow: 0 16px 34px rgba(244, 123, 32, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-950);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.14);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #f8fafc;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-dark {
  color: var(--blue-950);
  border-color: var(--line);
  background: var(--white);
}

.btn-text-light {
  min-height: 44px;
  padding-inline: 10px;
  color: #ffffff;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.btn-text-light:hover {
  color: #ffd8bd;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 23, 45, 0.96) 0%, rgba(7, 23, 45, 0.82) 44%, rgba(7, 23, 45, 0.28) 100%),
    image-set(
      url("/assets/hero-gutachter.webp") type("image/webp"),
      url("/assets/hero-gutachter.jpg") type("image/jpeg")
    ) center right / cover no-repeat;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 86px 0;
}

.hero-grid {
  display: block;
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd8bd;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 16px;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: #d9e4f2;
  max-width: 760px;
  font-size: 1.16rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-quick div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 23, 45, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.hero-quick strong,
.hero-quick span {
  display: block;
}

.hero-quick strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.94rem;
}

.hero-quick span {
  color: #d7e3f0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-panel h3 {
  margin: 18px 0 12px;
  font-size: 1.05rem;
}

.mini-steps {
  display: grid;
  gap: 12px;
}

.mini-steps div {
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}

.mini-steps strong {
  display: block;
  color: var(--blue-950);
  font-size: 0.98rem;
}

.mini-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-panel ul,
.check-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.hero-panel li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-grid div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--blue-950);
  font-size: 1rem;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background: var(--blue-950);
  color: var(--white);
}

.section-blue .muted,
.section-blue .section-head p {
  color: #c8d3df;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 650px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(7, 23, 45, 0.06);
}

.spectrum-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.spectrum-card h3 {
  font-size: 1.2rem;
}

.spectrum-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--orange);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: #d95f10;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.advantage-cards {
  align-items: stretch;
}

.advantage-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.advantage-card h3 {
  min-height: 2.25em;
}

.advantage-card p {
  color: var(--muted);
}

.card-highlight {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue-950);
  font-weight: 850;
  line-height: 1.35;
}

.card-highlight::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 950;
}

.section-blue .card {
  background: #10294a;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  background: #ffe2cb;
  margin-bottom: 16px;
}

.service-image-card {
  display: flex;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.38);
  box-shadow: 0 18px 44px rgba(7, 23, 45, 0.12);
}

.service-card-image {
  display: block;
  background: var(--blue-950);
}

.service-card-image img,
.feature-photo img,
.whatsapp-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card-body .icon {
  margin-top: -44px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 28px rgba(7, 23, 45, 0.14);
}

.service-card-body p {
  flex: 1;
}

.feature-photo {
  display: block;
  overflow: hidden;
  align-self: center;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 23, 45, 0.18);
}

.feature-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.independent-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 23, 45, 0.92) 0%, rgba(7, 23, 45, 0.78) 44%, rgba(7, 23, 45, 0.22) 100%),
    image-set(
      url("/assets/hero-gutachter.webp") type("image/webp"),
      url("/assets/hero-gutachter.jpg") type("image/jpeg")
    ) center right / cover no-repeat;
}

.independent-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 23, 45, 0.06), rgba(7, 23, 45, 0.18));
}

.independent-section .container {
  position: relative;
  z-index: 1;
}

.independent-panel {
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 23, 45, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.independent-panel h2 {
  color: var(--white);
}

.independent-panel p {
  color: #dbe7f4;
}

.independent-panel .check-list li {
  color: #eef5fc;
}

.independent-panel .check-list li::before {
  background: var(--orange);
}

.muted {
  color: var(--muted);
}

.service-card a,
.city-link {
  font-weight: 800;
  color: var(--blue-800);
  text-decoration: none;
}

.service-card a:hover,
.city-link:hover {
  color: var(--orange-dark);
}

.review-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.review-track {
  display: grid;
  grid-auto-columns: calc((100% - 44px) / 3);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  scroll-snap-align: start;
}

.review-card p {
  flex: 1;
}

.review-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-950);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(7, 23, 45, 0.08);
}

.review-arrow:hover,
.review-arrow:focus {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.stars {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 54px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--blue-950);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.image-placeholder {
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 23, 45, 0.1), rgba(7, 23, 45, 0.18)),
    url("/assets/crash-schaden-vor-ort-web.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.26);
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: "Crash-Schaden Vor-Ort-Service";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(7, 23, 45, 0.78);
  color: var(--white);
  font-size: 0.9rem;
}

.city-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.city-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 620;
  object-fit: cover;
}

.city-figure figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.city-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-800);
  font-weight: 800;
}

.page-hero.city-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(7, 23, 45, 0.96) 0%, rgba(7, 23, 45, 0.86) 48%, rgba(7, 23, 45, 0.42) 100%),
    image-set(
      url("/assets/hero-gutachter.webp") type("image/webp"),
      url("/assets/hero-gutachter.jpg") type("image/jpeg")
    ) center right / cover no-repeat;
}

.city-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 44px;
  align-items: end;
}

.city-hero .lead,
.city-intro p,
.faq-contact-grid p {
  max-width: 780px;
}

.city-hero-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.26);
  backdrop-filter: blur(10px);
}

.city-hero-card strong {
  color: var(--white);
  font-size: 1.15rem;
}

.city-hero-card span {
  position: relative;
  padding-left: 22px;
  color: #dbe7f4;
}

.city-hero-card span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 950;
}

.city-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.city-intro-reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.city-photo {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(7, 23, 45, 0.14);
}

.city-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.city-service-grid {
  align-items: stretch;
}

.city-service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.city-service-card p {
  color: var(--muted);
}

.city-service-card a {
  margin-top: auto;
  color: var(--blue-800);
  font-weight: 850;
  text-decoration: none;
}

.city-service-card a:hover {
  color: var(--orange-dark);
}

.city-mini-cta {
  padding: 26px 0;
  background: var(--blue-950);
  color: var(--white);
}

.city-mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.city-mini-cta strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.city-mini-cta .cta-row {
  margin-top: 0;
}

.local-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.local-link-list a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.local-link-list a:hover {
  border-color: rgba(244, 123, 32, 0.4);
  color: var(--orange-dark);
}

.local-insight {
  padding: 0;
}

.local-insight summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--blue-950);
  font-weight: 900;
}

.local-insight p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: start;
}

.contact-card-sticky {
  position: sticky;
  top: 140px;
}

.city-grid {
  columns: 3;
  column-gap: 24px;
}

.city-grid a {
  display: block;
  break-inside: avoid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-800);
  text-decoration: none;
  font-weight: 750;
}

.section-blue .city-grid a {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.section-blue .city-grid a:hover {
  color: #ffd7b8;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq .faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.faq .faq-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
}

.faq .faq-links a:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

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

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

label {
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.14);
  outline: none;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: #fff7f1;
  border-radius: 8px;
}

.advantage-notice {
  margin-top: 22px;
}

.whatsapp-section {
  background: linear-gradient(135deg, #f4f7fa 0%, #ffffff 52%, #eef7f2 100%);
}

.whatsapp-layout {
  display: grid;
  gap: 30px;
}

.whatsapp-layout > div:first-child {
  max-width: 760px;
}

.phone-mockup {
  display: grid;
  gap: 18px;
  place-items: center;
}

.whatsapp-photo-card {
  display: block;
  overflow: hidden;
  width: min(1040px, 100%);
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 23, 45, 0.13);
}

.whatsapp-image-only {
  justify-self: stretch;
}

.whatsapp-photo-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.phone-frame {
  width: min(360px, 100%);
  border: 10px solid var(--blue-950);
  border-radius: 34px;
  background: #e7f4ec;
  box-shadow: 0 26px 70px rgba(7, 23, 45, 0.22);
  overflow: hidden;
}

.phone-top {
  width: 110px;
  height: 18px;
  margin: 10px auto 0;
  border-radius: 0 0 14px 14px;
  background: var(--blue-950);
}

.chat-screen {
  display: grid;
  gap: 12px;
  min-height: 470px;
  padding: 22px 16px 24px;
  align-content: end;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(45deg, rgba(18, 52, 93, 0.08) 0 2px, transparent 2px 12px);
}

.chat-row,
.chat-photo {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 14px;
  font-weight: 750;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: 0 5px 16px rgba(7, 23, 45, 0.08);
}

.chat-row span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.72;
}

.chat-row.incoming {
  justify-self: start;
  background: var(--white);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.chat-row.outgoing,
.chat-photo {
  justify-self: end;
  background: #d9fdd3;
  color: #15341f;
  border-bottom-right-radius: 4px;
}

.chat-photo {
  width: 72%;
}

.chat-photo span {
  display: block;
  height: 92px;
  margin-bottom: 9px;
  border-radius: 8px;
  background: url("/assets/whatsapp-schadenfoto-small.jpg") center / cover no-repeat;
}

.chat-photo strong {
  display: block;
  font-size: 0.92rem;
}

.breadcrumbs {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumbs a {
  color: var(--blue-800);
  text-decoration: none;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  padding: 72px 0;
}

.page-hero .lead {
  max-width: 780px;
}

.site-footer {
  color: #dce6f2;
  background: var(--blue-950);
  padding: 56px 0 28px;
}

.mobile-quick-actions {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: min(280px, 100%);
  height: auto;
  margin-top: 16px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.site-footer a {
  color: #dce6f2;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #aebdce;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .nav-row {
    gap: 16px;
  }

  .brand-logo {
    width: min(188px, 25vw);
    max-height: 54px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 6px 0;
  }

  .topbar-contact {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    place-items: center;
  }

  .nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .header-actions .btn {
    min-height: 48px;
    padding: 10px 12px;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f172a;
    box-shadow: 0 20px 44px rgba(2, 8, 23, 0.34);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav .btn {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 48px 0;
    background:
      linear-gradient(180deg, rgba(7, 23, 45, 0.96), rgba(7, 23, 45, 0.84)),
      image-set(
        url("/assets/hero-gutachter.webp") type("image/webp"),
        url("/assets/hero-gutachter.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .hero-quick {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .city-hero-grid,
  .city-intro,
  .city-intro-reverse,
  .faq-contact-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.city-hero {
    background:
      linear-gradient(180deg, rgba(7, 23, 45, 0.96), rgba(7, 23, 45, 0.82)),
      image-set(
        url("/assets/hero-gutachter.webp") type("image/webp"),
        url("/assets/hero-gutachter.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .city-hero-card,
  .city-service-card {
    min-height: 0;
  }

  .city-mini-cta-inner {
    display: grid;
  }

  .city-mini-cta .cta-row {
    width: 100%;
  }

  .contact-card-sticky {
    position: static;
  }

  .trust-strip {
    margin-top: 0;
    padding: 14px 0 0;
    background: var(--soft);
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .section-head {
    display: block;
  }

  .city-grid {
    columns: 1;
  }

  .review-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .review-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .review-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .section {
    padding: 58px 0;
  }

  .independent-section {
    background:
      linear-gradient(180deg, rgba(7, 23, 45, 0.94), rgba(7, 23, 45, 0.78)),
      image-set(
        url("/assets/hero-gutachter.webp") type("image/webp"),
        url("/assets/hero-gutachter.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .independent-panel {
    padding: 26px;
    background: rgba(7, 23, 45, 0.78);
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-quick {
    grid-template-columns: 1fr;
  }

  .hero-quick div {
    min-height: 0;
  }

  .brand-logo {
    width: min(158px, 50vw);
    max-height: 48px;
  }

  .mobile-quick-actions {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(7, 23, 45, 0.96);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  }

  .mobile-quick-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-quick-actions a:first-child {
    background: var(--orange);
    color: var(--blue-950);
  }

  .mobile-quick-actions svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
