/* AR Entruempelung - gemeinsame Stile fuer alle Seiten.
   Ausgelagert aus index.html am 11.08.2026, damit /preise und spaetere
   Unterseiten dieselbe Datei nutzen statt einer eigenen Kopie.
   Bei Aenderungen die ?v= Nummer in ALLEN HTML-Dateien erhoehen. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #F8F9FB;
  color: #0D1117;
  line-height: 1.7;
  overflow-x: hidden
}

:root {
  --navy: #0F1F3D;
  --navy2: #1A3461;
  --gold: #F59E0B;
  --gold2: #D97706;
  --green: #25D366;
  --light: #F8F9FB;
  --white: #fff;
  --muted: #6B7280;
  --text: #1F2937;
  --shadow: 0 4px 24px rgba(15, 31, 61, .10);
  --shadowlg: 0 16px 48px rgba(15, 31, 61, .18);
  --radius: 20px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  height: auto
}

/* HEADER */
header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 10px 0;
  transition: var(--transition)
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo-box {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px
}

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy)
}

.logo-sub {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block
}

.nav {
  display: flex;
  gap: 28px;
  list-style: none
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition)
}

.nav a:hover {
  color: var(--gold)
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit
}

.btn-navy {
  background: var(--navy);
  color: #fff
}

.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .35)
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy)
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 16px
}

.btn-wa {
  background: var(--green);
  /* Navy statt Weiss: Kontrast 8.25 statt 1.98 (WCAG AA) - Gruen bleibt WhatsApp-typisch */
  color: var(--navy)
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px)
}

/* HERO */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0F1F3D 0%, #1A3461 60%, #0F2D52 100%);
  position: relative;
  overflow: hidden;
  color: #fff
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, .12) 0%, transparent 70%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, .3)
}

.hero h1 {
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff
}

.hero h1 span {
  color: var(--gold)
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: var(--transition)
}

.hero-phone:hover {
  background: rgba(255, 255, 255, .15)
}

.hero-phone i {
  color: var(--gold);
  font-size: 20px
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-top: 12px;
}

.htrust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85)
}

.htrust-item i {
  color: var(--gold);
  font-size: 14px
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15, 31, 61, .4)
}

.hero-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block
}




/* TRUST BAR */




/* COUNTERS */
.counters {
  background: var(--navy);
  padding: 56px 0
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.counter-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.counter-item:last-child {
  border-right: none
}

.counter-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.counter-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px
}

/* SERVICES */
.services {
  padding: 88px 0;
  background: var(--light)
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px
}

.section-tag {
  display: inline-block;
  background: rgba(245, 158, 11, .1);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, .2)
}

.section-head h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 12px
}

.section-head p {
  color: var(--muted);
  font-size: 17px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1.5px solid rgba(0, 0, 0, .04);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  transition: height .4s ease
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadowlg);
  border-color: var(--gold)
}

.svc-card:hover::before {
  height: 100%
}

.svc-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, .1);
  color: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px
}

.svc-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px
}

.svc-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px
}

.svc-price {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px
}

.svc-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* 44px Mindesthöhe: sonst ist der Link am Handy kaum zu treffen */
  min-height: 44px;
  transition: var(--transition)
}

.svc-link:hover {
  gap: 10px
}

.svc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
  margin-top: auto
}

/* WERT SECTION */
.wert-section {
  padding: 80px 0;
  background: var(--navy);
  color: #fff
}

.wert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.wert-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, .3)
}

.wert-section h2 {
  font-size: 40px;
  margin-bottom: 20px
}

.wert-section p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  margin-bottom: 28px
}

.wert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.wert-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, .85)
}

.wert-list i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0
}

.wert-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 31, 61, .4)
}

.wert-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block
}


.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: none
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy)
}

.counter-grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

/* INHABER */
.inhaber {
  padding: 88px 0;
  background: var(--light)
}

.inhaber-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 52px 48px;
  box-shadow: var(--shadowlg)
}

.inhaber-card p {
  font-size: 17.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 16px
}

.inhaber-card p:first-of-type {
  font-size: 20px;
  color: #fff
}

.inhaber-sig {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18)
}

.inhaber-sig strong {
  display: block;
  font-size: 18px;
  color: var(--gold)
}

.inhaber-sig span {
  font-size: 14px;
  color: rgba(255, 255, 255, .6)
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8, 14, 28, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6)
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1
}

.galerie-pair-item,
.galerie-extra-item {
  cursor: zoom-in
}

.form-mehr {
  margin-bottom: 20px
}

.form-mehr summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy2);
  padding: 10px 0;
  list-style: none
}

.form-mehr summary::-webkit-details-marker {
  display: none
}

.form-mehr summary::before {
  content: '+ ';
  font-weight: 800
}

.form-mehr[open] summary::before {
  content: '– '
}

@media(max-width:700px) {
  .counter-grid-3 {
    grid-template-columns: 1fr
  }

  .inhaber-card {
    padding: 36px 26px
  }
}

/* Nutzer, die Bewegung reduzieren wollen, bekommen keine Einblend-Animationen */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important
  }
}

/* CTA-BAND */
.cta-band {
  padding: 0 0 88px;
  background: #fff
}

.cta-band-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadowlg)
}

.cta-band-inner h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px
}

.cta-band-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .35);
  box-shadow: none
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff
}

/* FORMULAR-FALLBACK */
.form-fallback {
  margin-top: 18px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 14px;
  padding: 20px 22px
}

.form-fallback strong {
  display: block;
  color: #92400E;
  font-size: 16px;
  margin-bottom: 6px
}

.form-fallback p {
  font-size: 15px;
  color: #78350F;
  line-height: 1.65;
  margin-bottom: 14px
}

.form-fallback a {
  color: var(--navy2);
  text-decoration: underline
}

.form-fallback-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.form-fallback-btns .btn {
  font-size: 15px;
  padding: 12px 18px
}

@media(max-width:820px) {
  .cta-band-inner {
    padding: 32px 24px;
    text-align: center;
    justify-content: center
  }

  .cta-band-btns {
    width: 100%;
    flex-direction: column
  }

  .cta-band-btns .btn {
    justify-content: center
  }
}

/* KOSTENRECHNER */
.calc-section {
  padding: 88px 0;
  background: #fff
}

.calc-container {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  margin-top: 56px;
  align-items: start
}

.calc-form {
  background: var(--light);
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 36px
}

.calc-form .form-group {
  margin-bottom: 22px
}

.calc-form .form-group:last-child {
  margin-bottom: 0
}

.calc-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 9px
}

.calc-form select,
.calc-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #D1D5DB;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500
}

.calc-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadowlg);
  position: sticky;
  top: 96px
}

.res-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, .72)
}

.res-price {
  font-size: 46px;
  font-weight: 900;
  color: var(--gold);
  margin: 10px 0 4px;
  line-height: 1.1
}

.res-price span {
  color: var(--gold2)
}

.calc-result>p {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 20px
}

.res-disclaimer {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #92400E;
  text-align: left
}

/* A11y: sichtbarer Fokus + FAQ als echter Button */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px
}

button.faq-q {
  width: 100%;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  color: inherit
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 10px 0;
  font-weight: 700
}

.skip-link:focus {
  left: 0
}

@media(max-width:900px) {
  .calc-container {
    grid-template-columns: 1fr
  }

  .calc-result {
    position: static
  }
}

/* PROCESS */
.process {
  padding: 88px 0;
  background: var(--light)
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16% + 24px);
  right: calc(16% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0
}

.step {
  text-align: center;
  position: relative;
  z-index: 1
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(15, 31, 61, .25)
}

.step h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px
}

.step p {
  color: var(--muted);
  font-size: 15px
}

/* GALERIE */
.galerie {
  padding: 88px 0;
  background: #fff
}

/* Vorher/Nachher pairs */
.galerie-pairs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px
}

.galerie-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 10px
}

.galerie-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.galerie-pair-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.galerie-pair-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: var(--transition)
}

.galerie-pair-item:hover img {
  transform: scale(1.03)
}

.galerie-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2
}

.galerie-label.vorher {
  background: rgba(239, 68, 68, .9);
  color: #fff
}

.galerie-label.nachher {
  background: rgba(34, 197, 94, .9);
  color: #fff
}

/* Extra photos row */
.galerie-extra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px
}

.galerie-extra-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.galerie-extra-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: var(--transition)
}

.galerie-extra-item:hover img {
  transform: scale(1.03)
}

@media(max-width:968px) {
  .galerie-pair {
    grid-template-columns: 1fr 1fr
  }
  .galerie-extra {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .galerie-pair {
    grid-template-columns: 1fr
  }
  .galerie-pair-item img {
    height: 220px
  }
  .galerie-extra {
    grid-template-columns: repeat(2, 1fr)
  }
  .galerie-extra-item img {
    height: 150px
  }
}

/* REVIEWS */
.reviews {
  padding: 88px 0;
  background: #fff
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow)
}

.rating-big {
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1
}

.rating-stars {
  color: #F59E0B;
  font-size: 28px;
  letter-spacing: 4px;
  display: block;
  margin: 8px 0
}

.rating-info p {
  color: var(--muted);
  font-size: 14px
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rev-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold)
}

.rev-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 14px
}

.rev-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.rev-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0
}

.rev-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy)
}

.rev-via {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px
}

/* FAQ */
.faq {
  padding: 88px 0;
  background: var(--light)
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #E5E7EB;
  transition: var(--transition)
}

.faq-item.open {
  border-color: var(--gold)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  gap: 16px
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 158, 11, .1);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8
}

.faq-a-inner {
  padding: 0 24px 24px
}

.faq-item.open .faq-a {
  max-height: 700px
}

/* RATGEBER */
.ratgeber {
  padding: 88px 0;
  background: #fff
}

/* CONTACT */
.contact-section {
  padding: 88px 0;
  background: var(--light)
}

.contact-grid {
  display: grid;
  /* gleich breit und gleich hoch: stretch statt start */
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch
}

.contact-info {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 8px
}

.contact-info .sub {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  margin-bottom: 32px
}

.cmethod {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start
}

.cmethod-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.cmethod h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500
}

.cmethod a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition)
}

.cmethod a:hover {
  color: var(--gold)
}

.czone {
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 20px;
  /* auto: schiebt den Block ans untere Ende, damit beide Karten sauber abschließen */
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .7)
}

.czone strong {
  color: var(--gold)
}

.cform-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadowlg)
}

.cform-card h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.form-group {
  margin-bottom: 16px
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: inherit;
  /* 16px ist Pflicht: darunter zoomt iOS Safari beim Fokus automatisch rein */
  font-size: 16px;
  transition: var(--transition);
  background: #FAFAFA;
  color: var(--text)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .08)
}

.form-group textarea {
  min-height: 110px;
  resize: vertical
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 17px
}

.form-notice {
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  margin-top: 12px
}

/* MAP */
.map-section {
  height: 420px;
  overflow: hidden
}

.map-section .map-link {
  display: block;
  position: relative;
  line-height: 0
}

.map-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block
}

.map-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(15, 31, 61, .35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px
}

.map-hint .fas {
  color: var(--gold)
}

.map-section .map-link:hover .map-hint {
  background: var(--navy2)
}

@media(max-width:560px) {
  .map-hint {
    white-space: normal;
    max-width: 88%;
    justify-content: center;
    text-align: center;
    font-size: 13.5px
  }
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  padding: 72px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 10px
}

.footer-col a {
  /* min. 24px hohe Klickfläche (WCAG 2.2, 2.5.8) - 19px waren zu wenig */
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: var(--transition)
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px
}

/* MOBILE CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 12px 16px 28px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .1);
  z-index: 2000
}

.mcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none
}

.mcta-call {
  background: var(--navy);
  color: #fff
}

.mcta-wa {
  background: var(--green);
  /* wie .btn-wa: Navy statt Weiss ergibt Kontrast 8.25 statt 1.98 */
  color: var(--navy)
}

/* FAB WA */
.fab-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--green);
  /* wie .btn-wa: Navy-Symbol auf Grün ist deutlich besser lesbar */
  color: var(--navy);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition)
}

.fab-wa:hover {
  transform: scale(1.1) rotate(5deg)
}

/* ANIMATIONS */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s cubic-bezier(.4, 0, .2, 1)
}

[data-aos].active {
  opacity: 1;
  transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:968px) {
  .hero {
    padding: 110px 0 60px
  }

  .hero-grid,
  .wert-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hero h1 {
    font-size: 36px
  }

  .services-grid,
  .review-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .steps::before {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .counter-grid:not(.counter-grid-3) {
    grid-template-columns: repeat(2, 1fr)
  }

  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .hero-badge {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px
  }

  .nav,
  .header-cta .btn-ghost {
    display: none
  }

  .mobile-cta {
    display: grid
  }

  .fab-wa {
    display: none
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .reviews-summary {
    flex-direction: column;
    text-align: center;
    gap: 16px
  }

  body {
    padding-bottom: 80px
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 30px
  }

  .hero-btns .btn-lg {
    width: 100%;
    justify-content: center
  }

  .hero-phone {
    width: 100%;
    justify-content: center
  }

  .cform-card {
    padding: 24px
  }

  .contact-info {
    padding: 28px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  /* Smaller section padding on phones */
  .services, .wert-section, .process, .galerie,
  .reviews, .faq, .contact-section, .ratgeber {
    padding: 60px 0
  }

  /* FAQ: smaller text on phones */
  .faq-q {
    font-size: 15px;
    padding: 18px 16px
  }

  .faq-a-inner {
    padding: 0 16px 20px;
    font-size: 14px
  }

  /* Ratgeber lists readable on mobile */
  .ratgeber ul {
    line-height: 1.9 !important;
    font-size: 14px
  }

  /* Section head */
  .section-head h2 {
    font-size: 26px
  }
}
/* HAMBURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  /* 44x44 ist die Mindestgröße für sichere Bedienung mit dem Finger */
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-nav {
  display: none;
  position: fixed;
  top: 63px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 998;
  padding: 8px 24px 24px;
  /* Ohne Hoehenbegrenzung lief das Menue unter die fixe .mobile-cta (z-index 2000)
     und die Buttons Anrufen/WhatsApp waren verdeckt. 63px Kopf + 93px Leiste. */
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(15,31,61,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
/* PHONE ICON BUTTON (mobile only) */
.phone-icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition)
}
@media(max-width:768px) {
  .burger { display: flex; }
  .phone-icon-btn { display: flex; }
  .header-cta { display: none; }
  .cmethod a { overflow-wrap: break-word; word-break: break-all; }
  .contact-info { padding: 28px 20px; }
}

/* Auf schmalen Geraeten brach der Firmenname in zwei Zeilen um und machte die
   Kopfzeile doppelt so hoch. Kleinere Schrift plus Umbruchsperre loest das. */
@media(max-width:480px) {
  .logo-name {
    font-size: 17px;
    white-space: nowrap
  }

  /* Logo 220 + 2x Abstand 24 + Burger 40 + Telefon 44 = 352px passten nicht in
     360 - 48 Innenabstand = 312px, daher ragte der Telefon-Button rechts heraus. */
  header .container {
    padding-left: 16px;
    padding-right: 16px
  }

  header .nav-wrap {
    gap: 10px
  }

  .logo {
    min-width: 0
  }

  .logo-sub {
    font-size: 9px;
    letter-spacing: 1px;
    white-space: nowrap
  }

  .logo-box {
    width: 38px;
    height: 38px
  }

  .logo {
    gap: 9px
  }
}

/* ==========================================================================
   UNTERSEITEN (ab /preise) - Kopfbereich, Preistabellen, Listen
   ========================================================================== */

.page-hero {
  padding: 128px 0 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px
}

.breadcrumb a {
  color: rgba(255, 255, 255, .85)
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, .4)
}

.page-hero h1 {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px
}

.page-hero h1 span {
  color: var(--gold)
}

.page-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
  max-width: 720px
}

.page-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 15px;
  color: rgba(255, 255, 255, .75)
}

.page-hero-meta i {
  color: var(--gold);
  margin-right: 7px
}

/* --- Preistabelle --------------------------------------------------------- */
.preis-section {
  padding: 80px 0;
  background: #fff
}

.preis-section.alt {
  background: var(--light)
}

/* Auf kleinen Bildschirmen scrollt die Tabelle in ihrem eigenen Rahmen,
   damit die Seite selbst nie seitlich wandert. */
.tabelle-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 20px
}

.preis-tabelle {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px
}

.preis-tabelle caption {
  text-align: left;
  padding: 22px 24px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy)
}

.preis-tabelle th,
.preis-tabelle td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #EEF0F4
}

.preis-tabelle thead th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-bottom: 0
}

.preis-tabelle thead th:first-child {
  border-top-left-radius: var(--radius)
}

.preis-tabelle thead th:last-child {
  border-top-right-radius: var(--radius)
}

.preis-tabelle tbody tr:last-child th,
.preis-tabelle tbody tr:last-child td {
  border-bottom: 0
}

.preis-tabelle tbody tr:hover {
  background: #FAFBFD
}

.preis-tabelle tbody th {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px
}

.preis-tabelle tbody th small {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px
}

.preis-tabelle td {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap
}

.preis-tabelle td.hervor {
  color: var(--navy);
  background: #FFFBEB
}

.preis-hinweis {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 15px;
  color: #78350F;
  line-height: 1.65
}

.preis-hinweis i {
  color: #B45309;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0
}

.preis-hinweis strong {
  color: #78350F
}

/* --- Zwei Spalten: enthalten / nicht enthalten ----------------------------- */
.inkl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.inkl-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow)
}

.inkl-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.inkl-card ul {
  list-style: none
}

.inkl-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6
}

.inkl-card li i {
  margin-top: 4px;
  flex-shrink: 0
}

.inkl-ja h3 i,
.inkl-ja li i {
  color: #059669
}

.inkl-nein h3 i,
.inkl-nein li i {
  color: #DC2626
}

/* --- Einflussfaktoren auf den Preis ---------------------------------------- */
.faktor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px
}

.faktor-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold)
}

.faktor-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px
}

.faktor-card h3 i {
  color: var(--gold)
}

.faktor-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65
}

.faktor-card .wirkung {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: #FFFBEB;
  border-radius: 999px;
  padding: 5px 13px
}

@media(max-width:820px) {
  .inkl-grid {
    grid-template-columns: 1fr
  }

  .page-hero {
    padding: 108px 0 44px
  }
}

/* ==========================================================================
   EINSATZGEBIET - Ortslisten nach Entfernung
   ========================================================================== */

.zone {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 34px;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
  border-left: 4px solid var(--gold)
}

.zone.zone-kern {
  border-left-color: #059669
}

.zone.zone-fern {
  border-left-color: var(--muted)
}

.zone-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px
}

.zone-kopf h3 {
  font-size: 20px;
  color: var(--navy)
}

.zone-entfernung {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap
}

.zone>p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px
}

/* Mehrspaltige Ortsliste: viele kurze Namen sollen nicht als endlose
   Einspalter untereinander stehen. */
.ort-liste {
  list-style: none;
  columns: 4;
  column-gap: 26px
}

.ort-liste li {
  font-size: 15px;
  color: var(--text);
  padding: 4px 0;
  break-inside: avoid
}

.ort-liste li strong {
  color: var(--navy)
}

@media(max-width:900px) {
  .ort-liste {
    columns: 3
  }
}

@media(max-width:640px) {
  .ort-liste {
    columns: 2
  }

  .zone {
    padding: 24px 20px
  }
}
