/* ============================================================
   REINIGUNGSFIRMA — style.css
   Frisches, modernes Design | mintgrün + weiß + anthrazit
   ============================================================ */

/* ---------- RESET & VARIABLEN ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mint:       #00B894;
  --mint-dark:  #009874;
  --mint-light: #E8FAF6;
  --anthrazit:  #1E2A2A;
  --text:       #2D3838;
  --muted:      #6B7B7B;
  --border:     #E2ECEC;
  --white:      #FFFFFF;
  --bg:         #F7FAFA;
  --hero-overlay: rgba(10, 30, 30, 0.52);

  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.13);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAFIE ---------- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--anthrazit);
}
h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}

/* ---------- LAYOUT ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--anthrazit); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: #5DECD4; }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { color: var(--muted); font-size: 17px; max-width: 540px; margin: 12px auto 0; line-height: 1.7; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mint); color: var(--white); box-shadow: 0 4px 16px rgba(0,184,148,0.35); }
.btn-primary:hover { background: var(--mint-dark); box-shadow: 0 8px 24px rgba(0,184,148,0.4); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--anthrazit); color: var(--white); }
.btn-dark:hover { opacity: 0.88; }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { color: var(--mint); }
#navbar.scrolled .nav-logo { color: var(--anthrazit); }
.nav-links-list {
  display: flex; gap: 28px;
}
.nav-links-list a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.nav-links-list a:hover { color: var(--white); }
#navbar.scrolled .nav-links-list a { color: var(--muted); }
#navbar.scrolled .nav-links-list a:hover { color: var(--anthrazit); }
.nav-cta {
  background: var(--mint); color: var(--white);
  padding: 10px 22px; border-radius: 7px;
  font-size: 14px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--mint-dark); transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .nav-burger span { background: var(--anthrazit); }
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--anthrazit); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 24px; font-weight: 700; color: var(--white); }
.nav-mobile a:hover { color: var(--mint); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 28px; color: var(--white); cursor: pointer;
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s;
}
/* Abdunkelungs-Overlay — Stärke per CSS-Variable anpassbar */
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
}
/* Diagonaler Übergang nach unten */
.hero-shape {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 100px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px 0 120px;
  color: var(--white);
}
.hero-content .eyebrow { color: #5DECD4; }
.hero-content h1 { color: var(--white); max-width: 720px; margin-bottom: 20px; line-height: 1.08; }
.hero-content h1 em { font-style: normal; color: #5DECD4; }
.hero-content p { font-size: 18px; max-width: 520px; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Bild-Upload Hinweis (für Entwickler) */
/* 
  Hintergrundbild ändern: .hero-bg { background-image: url('dein-bild.jpg'); }
  Abdunklung stärker: :root { --hero-overlay: rgba(10,30,30,0.7); }
  Abdunklung schwächer: :root { --hero-overlay: rgba(10,30,30,0.3); }
*/

/* Hero Stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 1px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
  max-width: 580px;
}
.hero-stat {
  flex: 1;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num .acc { color: #5DECD4; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* WhatsApp Floating Button */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
#whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
#whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--anthrazit); color: white;
  padding: 6px 12px; border-radius: 6px;
  font-size: 13px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ---------- ÜBER UNS ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--mint); color: white;
  padding: 12px 20px; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow);
}
.about-badge span { display: block; font-size: 26px; font-weight: 800; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--muted); margin-bottom: 24px; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check-item svg { flex-shrink: 0; color: var(--mint); }

/* ---------- LEISTUNGEN ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--mint);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--mint-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- ANGEBOTSRECHNER ---------- */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 820px; margin: 0 auto;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.calc-group { display: flex; flex-direction: column; gap: 8px; }
.calc-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }
.calc-group select,
.calc-group input[type="range"],
.calc-group input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  appearance: none;
}
.calc-group select:focus,
.calc-group input:focus { outline: none; border-color: var(--mint); }
.range-wrap { display: flex; flex-direction: column; gap: 4px; }
.range-display { font-size: 13px; color: var(--mint); font-weight: 600; text-align: right; }
input[type="range"] {
  padding: 0; height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--mint) 0%, var(--mint) 50%, var(--border) 50%);
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 2px 8px rgba(0,184,148,0.4);
}
.calc-result {
  margin-top: 32px;
  background: var(--mint-light);
  border: 1.5px solid var(--mint);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.calc-price { font-family: 'Plus Jakarta Sans', sans-serif; }
.calc-price-label { font-size: 13px; color: var(--mint-dark); font-weight: 600; }
.calc-price-num { font-size: 48px; font-weight: 800; color: var(--anthrazit); line-height: 1; }
.calc-price-unit { font-size: 15px; color: var(--muted); }
.calc-note { font-size: 12px; color: var(--muted); max-width: 260px; line-height: 1.5; }

/* ---------- REGION / GOOGLE MAPS ---------- */
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.region-text h2 { margin-bottom: 16px; }
.region-text p { color: var(--muted); margin-bottom: 24px; }
.region-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.region-tag {
  background: var(--mint-light);
  color: var(--mint-dark);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg); }
.team-info { padding: 20px 16px; }
.team-info h3 { font-size: 16px; margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--mint); font-weight: 500; }

/* ---------- GOOGLE BEWERTUNGEN ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #FFB800; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mint-light); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--muted); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  margin-top: 40px;
  color: var(--text);
  transition: box-shadow var(--transition);
}
.google-badge:hover { box-shadow: var(--shadow); }
.google-badge svg { width: 18px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 16px; font-weight: 600; color: var(--text);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--mint); }
.faq-question.open { color: var(--mint); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--mint-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); font-size: 18px; font-weight: 400;
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--mint); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.news-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg); }
.news-body { padding: 24px 20px; }
.news-tag {
  display: inline-block;
  background: var(--mint-light); color: var(--mint-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; margin-bottom: 10px;
}
.news-body h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--muted); }

/* ---------- KARRIERE ---------- */
.jobs-grid { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 28px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.job-card:hover { border-color: var(--mint); box-shadow: var(--shadow); }
.job-info h3 { font-size: 17px; margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--muted); font-size: 12px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
}
.job-tag.highlight { background: var(--mint-light); border-color: transparent; color: var(--mint-dark); }

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--mint-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); font-size: 20px;
}
.contact-detail-text strong { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: 15px; font-weight: 600; color: var(--text); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--mint); }

/* Kontaktformular */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--mint); }
.form-group textarea { min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--mint); flex-shrink: 0; }
.form-check a { color: var(--mint); text-decoration: underline; }
.form-status {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; display: none;
}
.form-status.success { background: var(--mint-light); color: var(--mint-dark); }
.form-status.error { background: #FFF0F0; color: #C0392B; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--anthrazit);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--mint); color: white; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--mint); }

/* ---------- FADE-IN ANIMATIONEN ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links-list, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .about-grid, .region-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .reviews-grid, .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .calculator { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  #whatsapp-btn { bottom: 20px; right: 20px; }
  .hero-stats { flex-direction: column; max-width: 100%; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   SLIDE-EFFEKTE ERWEITERUNG
   ============================================================ */

/* ---------- SCROLL-ANIMATIONEN ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---------- HERO SLIDESHOW ---------- */
.hero-bg, .hero-bg-next {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s;
}
.hero-bg-next {
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-bg-next.transitioning {
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  z-index: 2;
}
.hero-shape { z-index: 3; }
.hero-content { z-index: 4; }
.hero-stats   { z-index: 4; }

/* Hero Slideshow Dots */
.hero-dots {
  position: absolute;
  bottom: 120px; left: 48px;
  display: flex; gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--mint);
  transform: scale(1.3);
}

/* ---------- KARTEN-SLIDER ---------- */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}
.slider-track:active { cursor: grabbing; }
.slider-track > * {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
}
@media (max-width: 1023px) {
  .slider-track > * { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 639px) {
  .slider-track > * { flex: 0 0 100%; margin-right: 0; }
}

/* Slider Navigation Buttons */
.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.slider-btn:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
  transform: scale(1.08);
}
.slider-dots {
  display: flex; gap: 6px; align-items: center;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: var(--mint);
  transform: scale(1.3);
}

/* Dunkler Hintergrund Slider-Dots */
.section-dark .slider-btn {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
}
.section-dark .slider-btn:hover {
  background: var(--mint);
  border-color: var(--mint);
}
.section-dark .slider-dot { background: rgba(255,255,255,0.25); }
.section-dark .slider-dot.active { background: var(--mint); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .fade-in,
  .slider-track, .hero-bg-next { transition: none !important; }
}
/* ---------- CMS-Ergänzungen ---------- */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 540px; margin: 12px auto 0; line-height: 1.7; }
.nav-logo .cms-logo,
.footer-brand .cms-logo {
  max-height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
#navbar.scrolled .nav-logo .cms-logo { filter: none; }
.footer-brand .cms-logo { max-height: 54px; }
.contact-form .form-status.success,
.contact-form .form-status.error { display: none; }
