:root {
  --brand-blue: #0a51a2;
  --brand-cyan: #41a1d5;
  --brand-red: #c81616;
  --brand-green: #16a34a;
  --brand-green-light: #22c55e;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-soft-2: #eff4f8;
  --text: #102139;
  --muted: #4d5e77;
  --line: #d6dee8;
  --radius: 20px;
  --shadow: 0 12px 28px rgba(10, 41, 82, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
  --mobile-gutter: 20px;
  --touch-min: 44px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.02); }
}

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

html {
  overflow-x: clip;
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 33, 57, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.12;
}

.container {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: #0d3a6e;
  border-bottom: none;
  color: #fff;
}

.top-bar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.top-bar-badge {
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.top-bar-tel {
  color: #fff !important;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.2s ease;
}

.top-bar-tel:hover {
  opacity: 0.9;
}

.top-btn {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: var(--brand-green) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  color: #fff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.45);
}

.top-btn-callback {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff !important;
}

.top-btn-callback:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  width: 178px;
  max-width: 46vw;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-blue);
}

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

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--brand-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  padding: 0.8rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-main {
  color: #fff;
  background: var(--brand-blue);
  box-shadow: 0 10px 22px rgba(10, 81, 162, 0.18);
}

.btn-outline {
  color: var(--brand-blue);
  border-color: #c7d6e6;
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--brand-blue);
}

.btn-small {
  font-size: 0.84rem;
  padding: 0.56rem 0.95rem;
}

.btn-big {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Scroll reveal: nur aktiv wenn JS geladen hat (.js-reveal-ready). Ohne JS bleibt alles sichtbar. */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-ready .hero.reveal {
  transform: translateY(20px);
}

.js-reveal-ready .hero.reveal.visible .hero-copy .eyebrow {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.js-reveal-ready .hero.reveal.visible .hero-copy h1 {
  animation: fadeInUp 0.6s var(--ease-out) 0.08s both;
}

.js-reveal-ready .hero.reveal.visible .hero-copy .hero-sub,
.js-reveal-ready .hero.reveal.visible .hero-copy .hero-sub-2,
.js-reveal-ready .hero.reveal.visible .hero-copy .hero-phone-highlight,
.js-reveal-ready .hero.reveal.visible .hero-copy .hero-cta-note {
  animation: fadeInUp 0.6s var(--ease-out) 0.16s both;
}

.js-reveal-ready .hero.reveal.visible .hero-checks li {
  animation: fadeInUp 0.5s var(--ease-out) both;
}

.js-reveal-ready .hero.reveal.visible .hero-checks li:nth-child(1) { animation-delay: 0.24s; }
.js-reveal-ready .hero.reveal.visible .hero-checks li:nth-child(2) { animation-delay: 0.32s; }
.js-reveal-ready .hero.reveal.visible .hero-checks li:nth-child(3) { animation-delay: 0.4s; }
.js-reveal-ready .hero.reveal.visible .hero-checks li:nth-child(4) { animation-delay: 0.48s; }

.js-reveal-ready .hero.reveal.visible .hero-actions {
  animation: fadeInUp 0.6s var(--ease-out) 0.45s both;
}

.hero-card-reveal {
  opacity: 1;
  transform: none;
}

.js-reveal-ready .hero-card-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s var(--ease-out) 0.2s, transform 0.7s var(--ease-out) 0.2s;
}

.js-reveal-ready .hero.visible .hero-card-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger children when parent reveal is visible */
.steps-reveal .step-card,
.service-reveal .service-card,
.gallery-reveal .gallery-item,
.pillars-grid .pillar {
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.25s ease;
}

.js-reveal-ready .steps-reveal .step-card,
.js-reveal-ready .service-reveal .service-card,
.js-reveal-ready .gallery-reveal .gallery-item,
.js-reveal-ready .pillars-grid .pillar {
  opacity: 0;
  transform: translateY(20px);
}

.js-reveal-ready .reveal.visible .pillars-grid .pillar:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .pillars-grid .pillar:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .pillars-grid .pillar:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }

.js-reveal-ready .reveal.visible .steps-grid .step-card:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .steps-grid .step-card:nth-child(2) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .steps-grid .step-card:nth-child(3) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .steps-grid .step-card:nth-child(4) { transition-delay: 0.38s; opacity: 1; transform: translateY(0); }

.js-reveal-ready .reveal.visible .service-grid .service-card:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .service-grid .service-card:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .service-grid .service-card:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .service-grid .service-card:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }

.js-reveal-ready .reveal.visible .gallery-grid .gallery-item:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }

.faq-reveal .faq-item {
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.js-reveal-ready .faq-reveal .faq-item {
  opacity: 0;
  transform: translateY(12px);
}

.js-reveal-ready .reveal.visible .faq-list .faq-item:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .faq-list .faq-item:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.js-reveal-ready .reveal.visible .faq-list .faq-item:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }

.pillar:hover,
.step-card:hover,
.service-card:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 41, 82, 0.15);
}

.js-reveal-ready .reveal.visible .pillar:hover,
.js-reveal-ready .reveal.visible .step-card:hover,
.js-reveal-ready .reveal.visible .service-card:hover,
.js-reveal-ready .reveal.visible .gallery-item:hover {
  transform: translateY(-4px);
}

.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 60%, #ffffff 100%);
}

.notdienst-strip {
  background: #0d3a6e;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.notdienst-strip-inner {
  max-width: 720px;
  margin: 0 auto;
}

.notdienst-strip-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

.notdienst-strip-text {
  margin: 0.6rem 0 1.25rem;
  opacity: 0.92;
  font-size: 1rem;
}

.btn-strip,
.btn.btn-main.btn-strip {
  display: inline-flex;
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
  background: var(--brand-green) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.45);
}

.brand-section {
  background: #fff;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.brand-logo-panel {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 1rem;
}

.brand-overline {
  margin: 0 0 0.75rem;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-section-logo {
  display: block;
  width: min(100%, 330px);
  height: auto;
}

.brand-copy p {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
  align-items: start;
}

.hero-grid > *,
.brand-grid > *,
.two-col > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Sora", sans-serif;
  color: #13243e;
}

h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.7rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3.7vw, 2.9rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
}

.hero-sub {
  margin: 1.1rem 0 0;
  font-size: clamp(1.08rem, 2.25vw, 1.76rem);
  color: #1b2f4d;
}

.hero-sub-2 {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-phone-highlight {
  margin: 0.55rem 0 0;
  color: var(--brand-blue);
  font-size: 1.22rem;
  font-weight: 800;
}

.hero-cta-note {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-trust-line {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--brand-blue);
  font-weight: 600;
}

.hero-proof-bar {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-proof-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem 0.85rem;
  box-shadow: 0 8px 18px rgba(10, 41, 82, 0.05);
}

.hero-proof-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--brand-blue);
}

.hero-proof-item span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--muted);
}

.hero-quick-call {
  margin-top: 1rem;
  border: 1px solid #d8e6d8;
  border-radius: 18px;
  background: #f8fcf8;
  padding: 0.95rem 1rem;
}

.hero-quick-call-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #0d3a6e;
}

.hero-quick-call p + p {
  margin: 0.42rem 0 0;
  color: #27405f;
  font-size: 0.93rem;
}

.location-token {
  color: var(--brand-blue);
  font-weight: 700;
}

.hero-checks {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.68rem;
}

.hero-checks li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.78rem 0.65rem 2.15rem;
  background: #fff;
  position: relative;
}

.hero-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-52%);
  color: var(--brand-cyan);
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

.hero-photo-wrap {
  margin: -0.2rem -0.2rem 0.8rem;
  border-radius: 14px;
  overflow: hidden;
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-card-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

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

.hero-tel {
  margin: 0.7rem 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: center;
}

.hero-assurance-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.hero-assurance-list span {
  display: block;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  color: #24405f;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.hero-badge-link {
  display: block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-badge-item {
  display: block;
  line-height: 0;
}

.hero-badge-link:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.hero-badge-img {
  display: block;
  height: auto;
  max-width: 140px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.pillars {
  padding: 0 0 3.8rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.pillar p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.section {
  padding: 4.2rem 0;
}

.section-highlight {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.two-col p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.two-col-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.section-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.two-col-card ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.two-col-card li {
  padding-left: 1rem;
  position: relative;
}

.two-col-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55rem;
  background: var(--brand-cyan);
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.problem-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.8rem;
}

.trust-strip {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft-2);
  padding: 1rem;
}

.trust-strip h3 {
  margin: 0;
}

.trust-strip p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.section-headline {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  text-align: center;
}

.area-intro {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  margin: 0 auto 1rem;
}

.area-tags span {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(10, 41, 82, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.area-tags span:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 4px 12px rgba(65, 161, 213, 0.12);
}

.area-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.step-card span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-blue), var(--brand-cyan));
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.step-card h3 {
  margin-top: 0.72rem;
}

.step-card p {
  margin: 0.52rem 0 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.service-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.72rem;
}

.service-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.gallery {
  background: #fff;
}

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

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.72rem 0.8rem;
  font-weight: 700;
  color: #1e3556;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #13243e;
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 0.95rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  padding: 0 0.95rem 0.9rem;
}

.faq-item.open .faq-answer {
  max-height: min(70vh, 520px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-grid p {
  color: var(--muted);
}

.contact-mail {
  margin-top: 0.72rem;
}

.contact-mail a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.contact-mail a:hover {
  text-decoration: underline;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #cadcee;
  border-radius: 12px;
  background: #fff;
  color: #1c3150;
  padding: 0.75rem 1rem;
  font: inherit;
  min-height: 48px;
  font-size: 16px;
}

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

.contact-form .btn-main {
  min-height: 48px;
  width: 100%;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.form-trust {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.form-trust a {
  color: var(--brand-blue);
  text-decoration: none;
}

.form-trust a:hover {
  text-decoration: underline;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(65, 161, 213, 0.18);
}

.form-status {
  min-height: 1.1em;
  margin: 0.65rem 0 0;
  color: var(--brand-blue);
  font-size: 0.88rem;
}

.form-status-ok {
  color: #0d7a3d;
  font-weight: 600;
}

.form-status-error {
  color: var(--brand-red);
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 1.2rem 0 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.footer-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brand-blue);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--brand-cyan);
}

.mobile-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: none;
  width: auto;
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
  background: linear-gradient(145deg, var(--brand-green), var(--brand-green-light));
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
  z-index: 70;
  animation: none;
}

.mobile-call-label,
.mobile-call-meta {
  display: block;
}

.mobile-call-label {
  font-size: 1rem;
  line-height: 1.2;
}

.mobile-call-meta {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.92;
}

@media (max-width: 1020px) {
  .hero-grid,
  .contact-grid,
  .two-col,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 1.25rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

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

/* ========== Mobile: schöne Ansicht ========== */
@media (max-width: 760px) {
  html {
    -webkit-tap-highlight-color: transparent;
  }

  .top-bar {
    display: none;
  }

  /* Unten: Platz für fixen Anruf-Button; mit Cookie-Banner zusätzlich (Klasse setzt script.js) */
  body {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: #ffffff;
  }

  /* Klasse setzt script.js (Kompatibilität ohne CSS :has) */
  body.has-mobile-cta {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  body.cookie-banner-visible {
    padding-bottom: calc(150px + env(safe-area-inset-bottom));
  }

  body.cookie-banner-visible.has-mobile-cta {
    padding-bottom: calc(230px + env(safe-area-inset-bottom));
  }

  body.nav-open {
    overflow: hidden;
  }

  html.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(15, 35, 62, 0.5);
    pointer-events: none;
  }

  .container {
    width: 100%;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  /* Header: über Backdrop, Menü darüber */
  .header {
    z-index: 80;
    isolation: isolate;
  }

  .header-inner {
    min-height: 68px;
    position: relative;
  }

  .logo {
    width: 144px;
    max-width: 40vw;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 14px;
    border-color: rgba(10, 81, 162, 0.12);
    box-shadow: none;
  }

  .nav-toggle span {
    width: 20px;
    margin: 3px auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    top: max(76px, calc(env(safe-area-inset-top, 0px) + 58px));
    max-height: calc(100vh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    width: auto;
    max-width: none;
    display: grid;
    align-content: start;
    gap: 0.4rem;
    padding: 0.65rem;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(10, 41, 82, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    border-radius: 18px;
    z-index: 90;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.88rem 0.95rem;
    font-size: 0.97rem;
    border-radius: 14px;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    border: 1px solid #edf2f7;
    background: #f9fbfd;
  }

  .site-nav a:hover {
    background: #f2f7fb;
    border-color: #d8e4f0;
  }

  .site-nav .btn {
    margin-top: 0.15rem;
    justify-content: center;
    text-align: center;
  }

  .site-nav::before {
    content: none;
  }

  /* Hero: Text verteilen, ruhiger lesbar */
  .hero {
    padding: 1.6rem 0 2.4rem;
    background: #ffffff;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.1rem;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(10, 41, 82, 0.06);
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    opacity: 0.95;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    line-height: 1.22;
    max-width: none;
    margin-bottom: 0;
  }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 1rem;
    color: #1b2f4d;
  }

  .hero-sub-2 {
    font-size: 0.95rem;
    margin-top: 0.35rem;
    line-height: 1.45;
    color: var(--muted);
  }

  .hero-phone-highlight {
    font-size: 1.05rem;
    margin-top: 1.1rem;
    padding: 0.6rem 0.85rem;
    background: #f4f8fc;
    border-radius: 12px;
    display: inline-block;
    line-height: 1.4;
    border: 1px solid var(--line);
  }

  .hero-cta-note {
    font-size: 0.9rem;
    margin-top: 0.9rem;
    line-height: 1.45;
    color: var(--muted);
  }

  .hero-trust-line {
    font-size: 0.85rem;
    margin-top: 1.25rem;
    line-height: 1.55;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
  }

  .hero-proof-bar {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero-proof-item {
    padding: 0.85rem 0.95rem;
  }

  .hero-proof-item strong {
    font-size: 1rem;
  }

  .hero-proof-item span {
    font-size: 0.88rem;
  }

  .hero-quick-call {
    margin-top: 1.1rem;
    padding: 1rem;
    border-radius: 16px;
  }

  .hero-quick-call-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-checks {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  .hero-checks li {
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
    border-left: 3px solid rgba(22, 163, 74, 0.85);
    box-shadow: none;
  }

  .hero-actions {
    margin-top: 1.75rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    min-height: var(--touch-min);
    padding: 0.92rem 1.25rem;
    font-size: 1rem;
    border-radius: 14px;
  }

  .hero-actions .btn-main {
    background: var(--brand-green);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.18);
  }

  .hero-actions .btn-outline {
    background: #ffffff;
  }

  .hero-card {
    padding: 1.1rem;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(10, 41, 82, 0.06);
    border: 1px solid var(--line);
  }

  .hero-photo-wrap {
    border-radius: 14px;
    margin-bottom: 0.9rem;
  }

  .hero-card-title {
    font-size: 1.1rem;
  }

  .hero-card p {
    font-size: 0.95rem;
  }

  .hero-card .btn {
    min-height: var(--touch-min);
    padding: 0.85rem 1rem;
    border-radius: 14px;
  }

  .hero-tel {
    font-size: 1.35rem;
    margin-top: 0.6rem;
  }

  .hero-assurance-list {
    margin-top: 0.75rem;
  }

  .hero-assurance-list span {
    font-size: 0.88rem;
    padding: 0.72rem 0.8rem;
  }

  .hero-badges {
    margin-top: 0.85rem;
    gap: 0.5rem;
  }

  .hero-badge-img {
    max-width: 120px;
  }

  /* Notdienst-Strip */
  .notdienst-strip {
    padding: 1.75rem var(--mobile-gutter);
    margin: 0;
    border-radius: 18px;
    box-shadow: none;
  }

  .notdienst-strip-title {
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .notdienst-strip-text {
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
  }

  .btn-strip,
  .btn.btn-main.btn-strip {
    width: 100%;
    max-width: 320px;
    min-height: var(--touch-min);
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    border-radius: 14px;
    justify-content: center;
  }

  /* Sections: angenehme Abstände */
  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }

  .brand-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .brand-section-logo {
    width: min(100%, 220px);
  }

  .pillars {
    padding-bottom: 2.5rem;
  }

  .pillar,
  .step-card,
  .service-card,
  .two-col-card {
    padding: 1.1rem;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(10, 41, 82, 0.05);
  }

  .pillar h3,
  .step-card h3,
  .service-card h3 {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    border-radius: 14px;
    overflow: hidden;
  }

  .gallery-item figcaption {
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem;
  }

  /* FAQ: große Touch-Flächen */
  .faq-question {
    padding: 1rem 1rem 1rem 1.1rem;
    min-height: var(--touch-min);
    font-size: 1rem;
    text-align: left;
    border-radius: 14px;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Kontakt / Formular */
  .contact-form label {
    font-size: 0.95rem;
  }

  .contact-intro {
    border: 1px solid rgba(200, 219, 239, 0.9);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(10, 41, 82, 0.05);
    padding: 1.15rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 110px;
  }

  .contact-form .btn-main {
    min-height: var(--touch-min);
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .contact-intro .btn-main {
    min-height: var(--touch-min);
    width: 100%;
    border-radius: 14px;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-grid a {
    margin-bottom: 0.5rem;
    padding: 0.35rem 0;
  }

  /* Fester Anruf-Button (mobil) – über Inhalt, unter Cookie-Banner */
  .mobile-call {
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    transform: none;
    width: auto;
    max-width: 440px;
    padding: 0.85rem 1rem;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    bottom: max(10px, env(safe-area-inset-bottom));
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2);
    text-align: center;
    margin: 0 auto;
    z-index: 100;
  }

  body.cookie-banner-visible .mobile-call {
    bottom: calc(12px + env(safe-area-inset-bottom) + min(42vw, 168px));
  }

  html.nav-open .mobile-call {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  /* Gießen & kurze Varianten ohne innere Spans */
  .mobile-call:not(:has(.mobile-call-label)) {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 800;
    min-height: var(--touch-min);
  }

  .mobile-call-label {
    font-size: 1rem;
  }

  .mobile-call-meta {
    font-size: 0.78rem;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

}

/* Handy: Formular zuerst anzeigen, große Touch-Felder (99 % Nutzer mobil) */
@media (max-width: 768px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
  }
  .contact-form {
    order: 1;
    padding: 1.35rem 1.1rem;
  }
  .contact-intro {
    order: 2;
  }
}

@media (min-width: 761px) {
  .mobile-call {
    display: none;
  }
}

/* Cookie-Banner – immer am sichtbaren unteren Bildschirmrand */
.cookie-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999;
  background: var(--text);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
}

.cookie-banner--hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.cookie-banner-inner {
  width: min(1150px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1 1 280px;
}

.cookie-banner-text a {
  color: var(--brand-cyan);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-banner-actions .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  .cookie-banner-inner {
    width: 100%;
    max-width: none;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
  }
}

/* 404-Seite */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.page-404-content {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.page-404-graphic {
  position: relative;
  margin-bottom: 2rem;
}

.page-404-number {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 15vw, 7rem);
  line-height: 1;
  color: var(--bg-soft-2);
  letter-spacing: -0.02em;
}

.page-404-icon {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  color: var(--brand-blue);
  opacity: 0.9;
}

.page-404-title {
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.page-404-text {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.page-404-phone {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.page-404-phone a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.page-404-phone a:hover {
  text-decoration: underline;
}

/* Weniger Bewegung bei Nutzerpräferenz (kein globales * – FAQ/Accordion bleibt nutzbar) */
@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal,
  .js-reveal-ready .reveal.visible,
  .js-reveal-ready .hero.reveal,
  .js-reveal-ready .hero.visible .hero-copy .eyebrow,
  .js-reveal-ready .hero.visible .hero-copy h1,
  .js-reveal-ready .hero.visible .hero-copy .hero-sub,
  .js-reveal-ready .hero.visible .hero-copy .hero-sub-2,
  .js-reveal-ready .hero.visible .hero-copy .hero-phone-highlight,
  .js-reveal-ready .hero.visible .hero-copy .hero-cta-note,
  .js-reveal-ready .hero.visible .hero-checks li,
  .js-reveal-ready .hero.visible .hero-actions,
  .js-reveal-ready .hero-card-reveal,
  .js-reveal-ready .hero.visible .hero-card-reveal,
  .js-reveal-ready .steps-reveal .step-card,
  .js-reveal-ready .service-reveal .service-card,
  .js-reveal-ready .gallery-reveal .gallery-item,
  .js-reveal-ready .pillars-grid .pillar,
  .js-reveal-ready .faq-reveal .faq-item,
  .js-reveal-ready .reveal.visible .pillar,
  .js-reveal-ready .reveal.visible .step-card,
  .js-reveal-ready .reveal.visible .service-card,
  .js-reveal-ready .reveal.visible .gallery-item,
  .js-reveal-ready .reveal.visible .faq-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .faq-answer {
    transition: none;
  }

  .faq-item.open .faq-answer {
    max-height: none;
  }
}
