/* ============================================================
   MOHS HAUSMEISTER SERVICE – Stylesheet
   Font: Inter (lokal) · Farben: Hellblau #3b82f6, Weiß
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter.woff2') format('woff2');
}

:root {
  --blue:        #3b82f6;
  --blue-dark:   #2563eb;
  --blue-deeper: #1d4ed8;
  --blue-light:  #60a5fa;
  --blue-pale:   #eff6ff;
  --blue-border: #dbeafe;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-900:    #0f172a;
  --accent:      #93c5fd;
  --radius:      12px;
  --radius-pill: 9999px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(59,130,246,0.18);
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.1rem; font-weight: 700; }

.accent       { color: var(--blue-dark); }
.accent-light { color: var(--accent); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 12px;
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

/* ── LUCIDE ICONS ────────────────────────── */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
svg { flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-pale);
  border-color: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ── LOGO MARK ───────────────────────────── */
.logo-mark {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}
.logo-mark span {
  display: block;
  width: 7px;
  border-radius: 2px;
  background: var(--blue-light);
}
.logo-mark span:nth-child(1) { height: 14px; }
.logo-mark span:nth-child(2) { height: 20px; }
.logo-mark span:nth-child(3) { height: 26px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--white);
}
.logo-text small {
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* ── LOGO IMAGE ──────────────────────────── */
.logo-img {
  height: 47px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 42px;
  margin-bottom: 14px;
}

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-pill) !important;
  border: 2px solid var(--blue) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; border-color: var(--blue-dark) !important; }
.nav-cta svg { width: 15px; height: 15px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MOBILE MENU ─────────────────────────── */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(100%); }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gray-900);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open {
  display: flex;
  animation: slideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.mobile-menu.closing {
  animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.mobile-logo {
  height: 100px;
  width: auto;
  opacity: 0.9;
}
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-link {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--blue-light); }
.cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 1rem !important;
}
.cta-mobile svg { width: 18px; height: 18px; }

/* Burger → X */
.burger span { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  gap: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge svg { width: 15px; height: 15px; }

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: #bfdbfe; }

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 80%;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Hero rating badge */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-left: 15px;
  background: none;
  border: none;
  text-decoration: none;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-rating__g {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-rating__label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-rating__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.hero-rating__stars {
  font-size: 0.82rem;
  color: #fbbf24;
  letter-spacing: 1px;
}

/* Hero video */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.12);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}
.hero-video-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* ── WARUM MOHS? ─────────────────────────── */
.warum-mohs {
  padding: 96px 0;
  background: var(--white);
}
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vorteil-card {
  background: var(--blue-pale);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--blue-border);
  transition: all var(--transition);
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  background: var(--white);
}
.vorteil-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-dark);
}
.vorteil-icon svg { width: 26px; height: 26px; }
.vorteil-card h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.vorteil-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── LEISTUNGEN ──────────────────────────── */
.leistungen {
  padding: 96px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  display: flex;
  flex-direction: column;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px #bfdbfe;
}
.service-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

/* Service card image */
.service-img {
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  flex-shrink: 0;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }

/* Card body */
.service-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-card ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.service-card ul li {
  font-size: 0.83rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color var(--transition), gap var(--transition);
}
.service-link svg { width: 15px; height: 15px; }
.service-link:hover { color: var(--blue-dark); gap: 9px; }

/* ── ÜBER UNS ────────────────────────────── */
.ueber-uns {
  padding: 96px 0;
  background: var(--white);
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.ueber-visual { position: relative; }
.uv-card {
  background: linear-gradient(160deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.uv-logo { margin-bottom: 28px; }
.uv-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.uv-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.uv-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 22px;
}
.uv-contact { display: flex; flex-direction: column; gap: 10px; }
.uv-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.uv-contact a:hover { color: var(--white); }
.uv-contact svg { width: 15px; height: 15px; flex-shrink: 0; }

.uv-badge-wrapper {
  position: absolute;
  bottom: -16px; right: -16px;
}
.uv-badge {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.35);
  line-height: 1.5;
}
.ueber-text h2 { margin-bottom: 20px; }
.ueber-text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.ueber-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 28px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.value svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }

/* ── KONTAKT ──────────────────────────────── */
.kontakt {
  padding: 96px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Kontakt-Kacheln */
.kontakt-kacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.kontakt-kachel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition);
  color: var(--white);
}
.kontakt-kachel:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.kachel-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--white);
}
.kachel-icon svg { width: 28px; height: 28px; }
.kachel-icon--blue   { background: rgba(255,255,255,0.2); }
.kachel-icon--green  { background: #25d366; }
.kachel-icon--purple { background: rgba(255,255,255,0.2); }

.kachel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.kachel-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  word-break: break-all;
}
.kachel-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  transition: color var(--transition), gap var(--transition);
}
.kachel-hint svg { width: 14px; height: 14px; }
.kontakt-kachel:hover .kachel-hint {
  color: rgba(255,255,255,0.9);
  gap: 8px;
}

/* ── FLOATING WHATSAPP ───────────────────── */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 240px;
}
.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray-400); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  color: var(--gray-400);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 80px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-visual {
    display: flex;
    width: 100%;
  }
  .hero-video-wrap {
    max-width: 100%;
    height: 300px;
    border-radius: 16px;
  }
  .ueber-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-kacheln { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding: 96px 20px 60px; }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .leistungen, .ueber-uns, .kontakt, .warum-mohs { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ueber-grid { gap: 32px; }
  .uv-badge-wrapper { position: static; margin-top: 16px; }
  .section-header { margin-bottom: 40px; }
  .wa-float { display: flex; }
}

@media (max-width: 480px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .kontakt-kacheln { max-width: 100%; }
}
