/* ===== MyCleanPro – Stylesheet (Weiß / Grün / Dunkelgrau) ===== */
:root {
  --primary: #2e8b57;
  --primary-dark: #1f6b41;
  --primary-light: #e3f3ea;
  --primary-soft: #d4ebdc;
  --accent: #2c3e50;
  --accent-light: #ecf0f1;
  --dark: #1c2833;
  --dark-soft: #2c3e50;
  --text: #2c3e50;
  --muted: #5d6d7e;
  --bg: #ffffff;
  --bg-soft: #f7f9fa;
  --border: #e1e6ea;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(28, 40, 51, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 40, 51, 0.15);
  --max: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--primary);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  min-height: 56px;
  box-shadow: 0 4px 14px rgba(46, 139, 87, 0.25);
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(46, 139, 87, 0.35); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 16px 34px;
  box-shadow: none;
}
.btn-ghost:hover { background: var(--primary); color: #fff !important; }
.btn-small { padding: 12px 22px; font-size: 0.95rem; min-height: 44px; box-shadow: none; }
.btn-large { padding: 20px 42px; font-size: 1.1rem; min-height: 60px; }
.btn-full { width: 100%; margin-top: 24px; }
.btn-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 700; color: var(--dark);
}
.logo:hover { text-decoration: none; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
/* Fallback-Logo (Symbol) wenn images/logo.png noch nicht vorhanden */
.logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.25);
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text strong { color: var(--primary); }
.logo-light { color: #fff; }
.logo-light .logo-text strong { color: #6fd3b3; }
.site-footer .logo-img { filter: brightness(1) drop-shadow(0 0 0.5px rgba(255,255,255,0.5)); background: rgba(255,255,255,0.95); padding: 6px 10px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text); font-weight: 500; }
.nav a:hover { color: var(--primary); text-decoration: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.2s; }

/* ===== Hero (mit Hintergrundbild) ===== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 50%, rgba(255,255,255,0.75) 100%),
    url('images/hero-bg.jpg') center / cover no-repeat,
    radial-gradient(900px 600px at 90% -20%, var(--primary-light) 0%, transparent 55%),
    #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 22px;
}
.accent { color: var(--primary); }
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 32px;
}
.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 0.95rem; color: var(--text); font-weight: 500;
}
.trust li { display: inline-flex; align-items: center; gap: 4px; }

.hero-visual { position: relative; height: 460px; }
.card-stack { position: relative; width: 100%; height: 100%; }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  animation: float 6s ease-in-out infinite;
}
.float-icon { font-size: 1.8rem; flex-shrink: 0; }
.float-card small { color: var(--muted); font-size: 0.8rem; }
.card-1 { top: 0; left: 15%; animation-delay: 0s; }
.card-2 { top: 25%; right: 0; animation-delay: 1.5s; }
.card-3 { bottom: 25%; left: 0; animation-delay: 3s; }
.card-4 { bottom: 0; right: 10%; animation-delay: 4.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--dark);
  color: #fff;
  padding: 30px 0;
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #6fd3b3;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item span { font-size: 0.9rem; color: #b8c7d4; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2e3a 100%);
  color: #fff;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head-light { color: #fff; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-light { color: #6fd3b3; }
.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-head-light h2 { color: #fff; }
.section p { color: var(--muted); font-size: 1.05rem; }
.section-head-light p { color: #b8c7d4; }

/* ===== Services Grid (Icons) ===== */
.services-grid-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-tile-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.service-tile h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-tile p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* ===== Zielgruppen ===== */
.audiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.audience {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.audience:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.audience-icon { font-size: 2rem; }
.audience strong { color: var(--dark); font-size: 0.95rem; }

/* ===== Cities ===== */
.cities {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.city-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.city-icon { font-size: 2.2rem; margin-bottom: 12px; }
.city-card h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.city-card p { color: var(--muted); }
.city-card small { color: var(--primary); font-weight: 600; }

/* ===== Galerie ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  color: var(--muted);
  text-align: center;
}
.gallery-placeholder .placeholder-icon { font-size: 2.5rem; margin-bottom: 8px; opacity: 0.5; }
.gallery-placeholder p { font-size: 0.9rem; color: var(--muted); }
.gallery-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--dark);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(28, 40, 51, 0.25);
}
.gallery-label-after {
  background: var(--primary);
}

/* ===== Two-col / About ===== */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-cta { margin-top: 28px; }
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.about-card h3 { color: var(--dark); margin-bottom: 20px; font-size: 1.25rem; }
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.contact-direct {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #fff;
}
.contact-direct h3 { font-size: 1.2rem; margin-bottom: 24px; color: #fff; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: #fff !important;
  margin-bottom: 12px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.contact-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  text-decoration: none;
  transform: translateX(4px);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(46, 139, 87, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-link small {
  display: block;
  color: #b8c7d4;
  font-size: 0.8rem;
  margin-bottom: 2px;
}
.contact-link strong { color: #fff; font-size: 1.05rem; }
.contact-whatsapp .contact-icon { background: rgba(37, 211, 102, 0.2); color: var(--whatsapp); }
.contact-whatsapp .contact-icon svg { width: 22px; height: 22px; }
.contact-hours { margin-top: 16px; color: #b8c7d4; font-size: 0.85rem; }

/* ===== Form ===== */
.form {
  background: #fff;
  color: var(--text);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.9rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.field-help { color: var(--muted); font-size: 0.8rem; margin-top: 6px; }
.field input, .field select, .field textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input[type="file"] { padding: 10px; cursor: pointer; }
.file-list { margin-top: 10px; font-size: 0.9rem; color: var(--muted); }
.file-list .file-item {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 4px 6px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}
.consent { margin-top: 4px; }
.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; cursor: pointer; color: var(--text);
  line-height: 1.5;
}
.checkbox input { margin-top: 4px; flex-shrink: 0; }
.checkbox a { color: var(--primary); font-weight: 600; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-msg { margin-top: 18px; padding: 14px; border-radius: var(--radius-sm); display: none; font-weight: 500; }
.form-msg.success { background: var(--primary-light); color: var(--primary-dark); display: block; }
.form-msg.error { background: #fde8e8; color: #a32525; display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: #b8c7d4;
  padding: 60px 0 20px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2d3e4d;
}
.footer-inner h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.footer-inner a { color: #b8c7d4; }
.footer-inner a:hover { color: #fff; text-decoration: underline; }
.copyright {
  text-align: center; padding-top: 24px;
  font-size: 0.85rem; color: #7e94a5;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: #fff !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===== Static pages ===== */
.static-page {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
.static-page h1 { font-size: 2rem; margin-bottom: 24px; color: var(--dark); }
.static-page h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--dark); }
.static-page p, .static-page li { color: var(--text); margin-bottom: 12px; line-height: 1.7; }
.static-page ul { margin-left: 20px; margin-bottom: 12px; }
.static-page a { color: var(--primary); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .cities { grid-template-columns: 1fr; gap: 14px; }
  .cities .city-card { padding: 24px 20px; }
  .services-grid-icons { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 760px) {
  /* === Container & Sektionen === */
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section h2 { font-size: 1.7rem; line-height: 1.25; }
  .section p { font-size: 1rem; }
  .eyebrow { font-size: 0.8rem; }

  /* === Header / Nav === */
  .site-header { background: rgba(255,255,255,0.98); }
  .header-inner { padding: 12px 20px; }
  .logo-img { height: 38px; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 12px 30px rgba(28, 40, 51, 0.12);
    animation: slideDown 0.2s ease;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .nav a:last-child { border-bottom: none; }
  .nav .btn-small {
    padding: 14px 22px;
    min-height: 50px;
    margin-top: 8px;
    width: 100%;
    font-size: 1rem;
  }
  .nav-toggle { display: block; padding: 10px; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* === Hero === */
  .hero {
    padding: 50px 0 70px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.82) 100%),
      url('images/hero-bg.jpg') center / cover no-repeat,
      #fff;
  }
  .badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .lead {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 26px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 18px 24px;
    min-height: 58px;
    font-size: 1.05rem;
  }
  .trust {
    gap: 10px 18px;
    font-size: 0.88rem;
    flex-direction: column;
  }
  .trust li { font-size: 0.92rem; }
  /* Floating cards verschwinden auf Mobile - das Bild als Background reicht */
  .hero-visual { display: none; }

  /* === Trust-Bar === */
  .trust-bar { padding: 22px 0; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .trust-item strong { font-size: 1.6rem; }
  .trust-item span { font-size: 0.82rem; }

  /* === Services === */
  .services-grid-icons {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-tile {
    padding: 20px 16px;
  }
  .service-tile-icon {
    width: 46px; height: 46px;
    font-size: 1.4rem;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .service-tile h3 { font-size: 1rem; }
  .service-tile p { font-size: 0.88rem; line-height: 1.5; }

  /* === Zielgruppen === */
  .audiences {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .audience {
    padding: 18px 8px;
    border-radius: 12px;
  }
  .audience-icon { font-size: 1.7rem; }
  .audience strong { font-size: 0.82rem; }

  /* === Galerie 2-spaltig auf Mobile === */
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-label {
    font-size: 0.65rem;
    padding: 3px 10px;
    top: 8px; left: 8px;
  }

  /* === About / Stats === */
  .about-card { padding: 24px 20px; }
  .about-card h3 { font-size: 1.1rem; }
  .check-list li { font-size: 0.95rem; padding: 9px 0 9px 30px; }
  .about-cta .btn { width: 100%; }

  /* === Kontakt === */
  .form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-direct {
    padding: 24px 20px;
    margin-bottom: 4px;
  }
  .contact-link {
    padding: 14px;
    margin-bottom: 10px;
  }
  .contact-link strong { font-size: 1rem; }
  .field input, .field select, .field textarea {
    font-size: 16px; /* verhindert iOS-Zoom beim Fokus */
  }
  .form .btn { padding: 18px 24px; min-height: 58px; }

  /* === Footer === */
  .site-footer { padding: 44px 0 18px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
    padding-bottom: 28px;
  }
  .footer-inner h4 { font-size: 0.95rem; margin-bottom: 10px; }
  .footer-cta { margin-top: 10px; }

  /* === WhatsApp Float === */
  .whatsapp-float {
    width: 56px; height: 56px;
    bottom: 18px; right: 18px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 10px 16px; }
  .logo-img { height: 34px; }

  /* Hero noch kompakter */
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: 1.85rem; }
  .lead { font-size: 1rem; }

  /* Trust-Bar: 2x2 mit kleineren Zahlen */
  .trust-bar { padding: 18px 0; }
  .trust-bar-inner { gap: 14px 10px; }
  .trust-item strong { font-size: 1.4rem; }
  .trust-item span { font-size: 0.78rem; }

  /* Services: einspaltig auf sehr kleinen Phones */
  .services-grid-icons { grid-template-columns: 1fr; }
  .service-tile { padding: 22px 18px; }
  .service-tile h3 { font-size: 1.1rem; }
  .service-tile p { font-size: 0.95rem; }

  /* Zielgruppen: 2 Spalten */
  .audiences { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Galerie: kann einspaltig sein für richtige Inspektion */
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery-label { font-size: 0.7rem; padding: 4px 12px; }

  /* Sections kompakter */
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .section h2 { font-size: 1.55rem; }
}
