/* ============================================================
   Seyran Glanz Gebäudereinigung – style.css
   ============================================================ */

/* ---- 1. CSS-Variablen ---- */
:root {
  --white:       #ffffff;
  --light:       #f5f7fc;
  --light-alt:   #edf0f8;
  --anthracite:  #2c3340;
  --dark-blue:   #0d2444;
  --blue:        #1a3d6e;
  --blue-mid:    #1e4b8a;
  --gold:        #c9a455;
  --gold-dark:   #a8843d;
  --gold-light:  #f0dfa8;
  --gold-soft:   rgba(201,164,85,.15);
  --text:        #2c3340;
  --muted:       #6b7280;
  --border:      #dde2ee;
  --green:       #25d366;

  --sh1: 0 2px 12px rgba(13,36,68,.07);
  --sh2: 0 6px 28px rgba(13,36,68,.13);
  --sh3: 0 12px 48px rgba(13,36,68,.18);

  --r1: 8px;
  --r2: 16px;
  --r3: 24px;

  --t: .3s ease;
  --container: 1180px;
}

/* ---- 2. Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- 3. Utilities ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 88px 0; }
.section-alt    { background: var(--light); }
.section-dark   { background: var(--dark-blue); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }

.badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-dark .badge {
  background: rgba(201,164,85,.2);
  color: var(--gold);
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,.7); }
.accent { color: var(--gold); }

/* ---- 4. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r1);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark-blue);
  box-shadow: 0 4px 16px rgba(201,164,85,.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,85,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark-blue);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--sh2);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn-outline-dark:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-call {
  background: var(--gold);
  color: var(--dark-blue);
  box-shadow: 0 4px 16px rgba(201,164,85,.35);
}
.btn-call:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ---- 5. Header & Navigation ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(13,36,68,.06);
  transition: background var(--t), box-shadow var(--t);
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 3px 20px rgba(13,36,68,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.logo img.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--anthracite);
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r1);
  transition: all var(--t);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-blue);
  background: var(--light-alt);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  padding: 8px 16px !important;
  border: 1.5px solid var(--dark-blue) !important;
  border-radius: var(--r1) !important;
  background: transparent !important;
  transition: all var(--t) !important;
}
.nav-phone:hover {
  background: var(--dark-blue) !important;
  color: var(--white) !important;
  transform: none !important;
}
.nav-phone:hover svg { stroke: var(--white); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: left center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(1px,-1px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(1px,1px); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 990;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  animation: slideDown .28s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--anthracite);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--dark-blue); }
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ---- 6. Hero ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #eef5fd 0%, #f5f9ff 45%, #ffffff 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-orb-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,61,110,.07) 0%, transparent 68%);
  border-radius: 50%;
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg-orb-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201,164,85,.08) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,36,68,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,36,68,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}
.hero-content { color: var(--dark-blue); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,61,110,.08);
  border: 1px solid rgba(26,61,110,.15);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp .6s ease both;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--dark-blue);
  animation: fadeInUp .6s .1s ease both;
}
.hero h1 .accent { color: var(--blue-mid); }
.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.12rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
  animation: fadeInUp .6s .2s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp .6s .3s ease both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeInUp .6s .4s ease both;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero Visual – echtes Foto */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeInUp .6s .2s ease both;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-photo-frame {
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--sh3);
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hero-photo-frame:hover img { transform: scale(1.04); }
.hero-photo-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--r2);
  padding: 16px 20px;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  border: 1px solid var(--border);
}
.hero-photo-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.hero-photo-badge-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}
.hero-photo-badge-label {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.3;
}
.hero-photo-badge2 {
  position: absolute;
  top: 24px;
  right: -14px;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: var(--r2);
  padding: 12px 16px;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
}
.hero-photo-badge2 svg { color: var(--gold); flex-shrink: 0; }

/* Keep legacy card classes for non-breaking */
.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hero-card-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.hero-service-list { display: flex; flex-direction: column; gap: 10px; }
.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 11px 14px;
  transition: all var(--t);
}
.hero-service-item:hover {
  background: rgba(201,164,85,.12);
  border-color: rgba(201,164,85,.3);
}
.hero-service-ico {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.hero-service-name {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.hero-service-check {
  width: 20px;
  height: 20px;
  background: rgba(16,185,129,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  flex-shrink: 0;
}

/* ---- 7. Trust Band ---- */
.trust { padding: 0; background: var(--white); }
.trust-inner {
  margin-top: -52px;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
  border-radius: var(--r3);
  padding: 36px 48px;
  box-shadow: var(--sh3);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.trust-ico {
  width: 50px;
  height: 50px;
  background: rgba(201,164,85,.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.trust-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.35;
}

/* ---- 8. Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  transition: all var(--t);
  box-shadow: var(--sh1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh3);
  border-color: var(--gold-light);
}
.service-card-ico {
  width: 58px;
  height: 58px;
  background: var(--light-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  transition: all var(--t);
}
.service-card:hover .service-card-ico {
  background: linear-gradient(135deg, var(--gold-light), rgba(201,164,85,.25));
  color: var(--gold-dark);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}
.service-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.service-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---- 9. About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-box {
  width: 100%;
  aspect-ratio: 5/4;
  background: linear-gradient(145deg, var(--dark-blue) 0%, var(--blue) 60%, #1e5299 100%);
  border-radius: var(--r3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect width='1' height='56' x='27'/%3E%3Crect width='56' height='1' y='27'/%3E%3C/g%3E%3C/svg%3E");
}
.about-svg-illo {
  position: relative;
  z-index: 1;
  opacity: .75;
}
.about-float-card {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--white);
  border-radius: var(--r2);
  padding: 18px 22px;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
}
.about-float-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}
.about-float-label {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
  max-width: 80px;
}
.about-content { }
.about-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: .97rem;
}
.about-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feat-check {
  width: 22px;
  height: 22px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-dark);
}
.about-feature p {
  font-size: .91rem;
  color: var(--text);
  line-height: 1.55;
}

/* ---- 10. Why Seyran Glanz ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r2);
  padding: 34px 26px;
  text-align: center;
  transition: all var(--t);
}
.why-card:hover {
  background: rgba(201,164,85,.1);
  border-color: rgba(201,164,85,.35);
  transform: translateY(-5px);
}
.why-ico {
  width: 68px;
  height: 68px;
  background: rgba(201,164,85,.15);
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  transition: background var(--t);
}
.why-card:hover .why-ico { background: rgba(201,164,85,.25); }
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

/* ---- 11. Process / Ablauf ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-line {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 22px;
  transition: all var(--t);
  box-shadow: 0 4px 16px rgba(201,164,85,.2);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--dark-blue);
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(201,164,85,.4);
}
.process-step h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- 12. Einsatzgebiete ---- */
.areas-intro { text-align: center; margin-bottom: 16px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--t);
  cursor: default;
}
.area-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 22px rgba(201,164,85,.18);
  transform: translateY(-4px);
}
.area-ico {
  width: 44px;
  height: 44px;
  background: var(--light-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--blue);
  transition: all var(--t);
}
.area-item:hover .area-ico {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.area-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 4px;
}
.area-sub {
  font-size: .74rem;
  color: var(--muted);
}

/* ---- 13. FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq-item.open {
  box-shadow: var(--sh2);
  border-color: var(--gold-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--t);
}
.faq-question:hover { background: var(--light); }
.faq-q-text {
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark-blue);
  flex: 1;
}
.faq-arrow {
  width: 30px;
  height: 30px;
  background: var(--light-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: all var(--t);
}
.faq-item.open .faq-arrow {
  background: var(--gold);
  color: var(--dark-blue);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- 14. Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}
.contact-info-side {}
.contact-info-side h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.25;
  margin-bottom: 10px;
}
.contact-info-side > p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 34px;
  line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-det-ico {
  width: 46px;
  height: 46px;
  background: var(--light-alt);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-det-text {}
.contact-det-label {
  font-size: .74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}
.contact-det-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark-blue);
}
.contact-det-value a { transition: color var(--t); }
.contact-det-value a:hover { color: var(--gold-dark); }
.contact-btns { display: flex; flex-direction: column; gap: 10px; }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  padding: 38px 36px;
  box-shadow: var(--sh2);
}
.contact-form-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r1);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0be; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,61,110,.09);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-notice {
  font-size: .8rem;
  color: var(--muted);
  background: #fffbf0;
  border: 1px solid var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--r1);
  padding: 10px 14px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.form-privacy {
  font-size: .79rem;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.form-privacy input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.form-privacy a { color: var(--blue); text-decoration: underline; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 15px;
  border-radius: var(--r1);
  font-size: .97rem;
  font-weight: 600;
  transition: all var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .01em;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  opacity: .93;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  animation: fadeInUp .4s ease;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-success-ico {
  width: 64px;
  height: 64px;
  background: rgba(16,185,129,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.8rem;
}
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark-blue); }
.form-success p { font-size: .88rem; color: var(--muted); }

/* ---- 15. Footer ---- */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand-text {
  font-size: .87rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .87rem;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .87rem;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .8rem;
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--gold); }

/* ---- 16. Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  box-shadow: var(--sh3);
  padding: 28px 30px;
  z-index: 8000;
  display: none;
  animation: slideUp .4s ease;
}
.cookie-banner.visible { display: block; }
.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-banner-header svg { color: var(--gold); flex-shrink: 0; }
.cookie-banner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
}
.cookie-banner p {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.cookie-banner p a { color: var(--blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns button {
  padding: 9px 20px;
  border-radius: var(--r1);
  font-size: .86rem;
  font-weight: 600;
  transition: all var(--t);
}
.btn-cookie-accept {
  background: var(--dark-blue);
  color: var(--white);
}
.btn-cookie-accept:hover { background: var(--blue); }
.btn-cookie-decline {
  background: var(--light-alt);
  color: var(--muted);
}
.btn-cookie-decline:hover { background: var(--border); color: var(--text); }
.btn-cookie-settings {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-cookie-settings:hover { border-color: var(--blue); background: var(--light); }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal.visible { display: flex; animation: fadeIn .25s ease; }
.cookie-modal-box {
  background: var(--white);
  border-radius: var(--r3);
  padding: 36px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  animation: scaleIn .3s ease;
}
.cookie-modal-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}
.cookie-modal-box > p {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-info h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.cookie-option-info p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--t);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--t);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.toggle input:checked + .toggle-slider { background: var(--blue); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { cursor: not-allowed; opacity: .6; }
.cookie-modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---- 17. WhatsApp Floating Button ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 700;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--t);
  color: var(--white);
}
.wa-float:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: ping 2.2s ease infinite;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--anthracite);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---- Referenzen / Kunden-Logos ---- */
.refs { background: var(--light); padding: 52px 0; }
.refs-header {
  text-align: center;
  margin-bottom: 36px;
}
.refs-header p {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.refs-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.refs-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: all var(--t);
  box-shadow: var(--sh1);
}
.refs-logo-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}
.refs-logo-item img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: .8;
  transition: all var(--t);
}
.refs-logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ---- Bewertungen / Reviews ---- */
.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.reviews-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}
.reviews-stars-lg { display: flex; gap: 4px; }
.reviews-count {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  box-shadow: var(--sh1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2);
  border-color: var(--gold-light);
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.review-text {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '„'; color: var(--gold); font-size: 1.2em; }
.review-text::after  { content: '"'; color: var(--gold); font-size: 1.2em; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-blue);
}
.review-source {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.review-source svg { color: #4285F4; }

/* ---- Inner Page Layout ---- */
.inner-page { padding-top: 70px; }
.inner-hero {
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  padding: 56px 0 48px;
  color: var(--white);
}
.inner-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.inner-hero p { color: rgba(255,255,255,.7); font-size: 1rem; }
.inner-content { padding: 64px 0; }
.inner-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 32px 0 12px;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 24px 0 8px;
}
.inner-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: .95rem;
}
.inner-content ul {
  list-style: disc;
  margin: 0 0 16px 20px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
}
.inner-content ul li { margin-bottom: 4px; }
.inner-content a { color: var(--blue); text-decoration: underline; }
.inner-content strong { color: var(--text); font-weight: 600; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 36px;
  transition: gap var(--t);
}
.back-link:hover { gap: 12px; }

/* ---- Branchen ---- */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.branche-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  box-shadow: var(--sh1);
  transition: all var(--t);
}
.branche-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2);
  border-color: var(--gold-light);
}
.branche-ico {
  width: 48px; height: 48px;
  background: var(--gold-soft);
  border-radius: var(--r1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
}
.branche-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 8px; }
.branche-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ---- SEO Textblock ---- */
.seo-text-section { background: var(--light); }
.seo-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.seo-text-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  margin-top: 28px;
}
.seo-text-block h3:first-child { margin-top: 0; }
.seo-text-block p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.seo-text-block ul {
  list-style: disc;
  padding-left: 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ---- Stadtteile ---- */
.stadtteile-section { background: var(--dark-blue); color: var(--white); }
.stadtteile-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.stadtteile-intro p { color: rgba(255,255,255,.7); font-size: .95rem; }
.stadtteile-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.stadtteil-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.stadtteil-col ul { list-style: none; }
.stadtteil-col li {
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stadtteil-col li::before { content: '→'; color: var(--gold); font-size: .75rem; }

/* ---- Qualitäts-Sektion ---- */
.qualitaet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.qualitaet-check-list { list-style: none; }
.qualitaet-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
}
.qualitaet-check-list li:last-child { border-bottom: none; }
.q-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(201,164,85,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-top: 1px;
}
.qualitaet-right-box {
  background: var(--dark-blue);
  border-radius: var(--r2);
  padding: 36px 32px;
  color: var(--white);
}
.qualitaet-right-box h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
.qualitaet-stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.qualitaet-stat-row:last-child { border-bottom: none; }
.q-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 70px;
  line-height: 1;
}
.q-stat-label { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.4; }

/* ---- Vertragsmodelle ---- */
.modelle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.modell-card {
  border: 2px solid var(--border);
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative;
  transition: all var(--t);
  background: var(--white);
}
.modell-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,164,85,.2);
}
.modell-featured-tag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.modell-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.modell-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 6px; }
.modell-subtitle { font-size: .82rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 16px; }
.modell-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.modell-features { list-style: none; }
.modell-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
  color: var(--text);
  padding: 5px 0;
}
.modell-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }

/* ---- 18. Animations ---- */
@keyframes fadeIn     { from { opacity: 0 } to { opacity: 1 } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(22px) } to { opacity: 1; transform: translateY(0) } }
@keyframes slideUp    { from { opacity: 0; transform: translateX(-50%) translateY(18px) } to { opacity: 1; transform: translateX(-50%) translateY(0) } }
@keyframes slideDown  { from { opacity: 0; transform: translateY(-10px) } to { opacity: 1; transform: translateY(0) } }
@keyframes scaleIn    { from { opacity: 0; transform: scale(.95) } to { opacity: 1; transform: scale(1) } }
@keyframes floatAnim  { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@keyframes orbPulse   { 0%,100% { transform: scale(1); opacity: .8 } 50% { transform: scale(1.06); opacity: 1 } }
@keyframes ping       { 0% { transform: scale(1); opacity: .7 } 100% { transform: scale(1.55); opacity: 0 } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }
.reveal-d5 { transition-delay: .42s; }

/* ---- 19. Media Queries ---- */
@media (max-width: 1100px) {
  .branchen-grid      { grid-template-columns: repeat(2, 1fr); }
  .seo-text-grid      { grid-template-columns: 1fr; gap: 0; }
  .stadtteile-map-grid { grid-template-columns: repeat(2, 1fr); }
  .qualitaet-grid     { grid-template-columns: 1fr; }
  .modelle-grid       { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: repeat(3, 1fr); }
  .trust-inner        { grid-template-columns: repeat(3, 1fr); padding: 30px 32px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav                { display: none; }
  .burger             { display: flex; }
  .hero-grid          { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hero-visual        { order: -1; }
  .hero-photo-wrap    { max-width: 100%; }
  .hero-photo-frame   { aspect-ratio: 16/9; }
  .hero-photo-badge   { display: none; }
  .hero-photo-badge2  { display: none; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; gap: 44px; }
  .about-float-card   { right: 8px; bottom: -12px; }
  .about-visual       { overflow: visible; }
  .process-steps      { grid-template-columns: repeat(2, 1fr); }
  .process-line       { display: none; }
  .areas-grid         { grid-template-columns: repeat(3, 1fr); }
  .contact-grid       { grid-template-columns: 1fr; gap: 36px; }
  .trust-inner        { margin-top: -32px; }
}

@media (max-width: 640px) {
  .container          { padding: 0 16px; }
  .branchen-grid      { grid-template-columns: 1fr; }
  .stadtteile-map-grid { grid-template-columns: 1fr 1fr; }
  .qualitaet-right-box { padding: 24px 20px; }
  .section            { padding: 60px 0; }
  .section-header     { margin-bottom: 40px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .trust-inner        { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
  .why-grid           { grid-template-columns: 1fr; }
  .areas-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .hero-stats         { gap: 20px; flex-wrap: wrap; }
  .hero-btns          { flex-direction: column; }
  .hero-btns .btn     { justify-content: center; width: 100%; }
  .refs-logos         { gap: 16px; }
  .refs-logo-item     { padding: 10px 18px; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .contact-form-box   { padding: 24px 20px; }
  .cookie-banner      { padding: 22px 20px; }
  .wa-float           { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 420px) {
  .services-grid      { grid-template-columns: 1fr; }
  .trust-inner        { grid-template-columns: 1fr; }
  .areas-grid         { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .footer-legal       { flex-direction: column; gap: 8px; }
}
