/* ============================================================
   MISINI SCHROTTABHOLUNG – style.css
   Design: Dark Industrial | Oswald + Inter (lokal)
   Mobile First: Alle Layouts starten als Single-Column
   Akzentfarbe: #cc0000 (Misini-Rot)
   ============================================================ */

/* --- Lokale Fonts --- */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/oswald-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/oswald-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/oswald-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/oswald-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.ttf') format('truetype');
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #0d0d0d;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 2px solid #cc0000;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #aa0000;
  border-color: #aa0000;
  box-shadow: 0 0 20px rgba(204,0,0,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: #cc0000;
  background-color: rgba(204,0,0,0.1);
}

/* --- Section Label --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #cc0000;
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.site-header.scrolled {
  background-color: rgba(10,10,10,0.97);
  border-bottom-color: rgba(204,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-red-line {
  height: 2px;
  background-color: #cc0000;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.site-logo .logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.site-logo .logo-name span { color: #cc0000; }
.site-logo .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #666;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover { color: #cc0000; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.header-call:hover { background-color: #aa0000; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 2px;
  background-color: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: rgba(0,0,0,0.97);
  padding-top: 4.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: #cc0000; }
.mobile-menu .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 1.5rem 2rem 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.93) 0%, rgba(5,5,5,0.75) 55%, rgba(5,5,5,0.35) 100%);
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #0d0d0d, transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 680px;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero h1 .red { color: #cc0000; }
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: #ccc;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.hero-sub strong { color: #fff; }

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  background-color: rgba(255,255,255,0.04);
  color: #fff;
}
.badge.badge-warning {
  border-color: #cc0000;
  background-color: rgba(204,0,0,0.14);
  color: #ff5555;
}
.badge .badge-icon { font-weight: 700; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}
.hero-trust {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #555;
  letter-spacing: 0.04em;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   WEISSWARE WARNING
   ============================================================ */
.weissware {
  background-color: #0a0000;
  border-top: 3px solid #cc0000;
  border-bottom: 3px solid #cc0000;
  padding: 3rem 0;
}
.weissware-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .weissware-inner { grid-template-columns: auto 1fr; }
}
.weissware-img-wrap {
  display: flex;
  justify-content: center;
}
.weissware-img-box {
  border: 2px solid #cc0000;
  padding: 4px;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 0 40px rgba(204,0,0,0.3);
}
.weissware-img-box img { width: 100%; }

.warning-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.9rem;
}
.weissware h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.9rem;
}
.weissware h2 .red { color: #cc0000; }
.weissware-text {
  font-size: 0.92rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 480px;
}
.weissware-text strong { color: #fff; }

.no-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.no-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  background-color: rgba(204,0,0,0.09);
  border: 1px solid rgba(204,0,0,0.28);
}
.no-item .x { color: #cc0000; font-weight: 700; font-size: 1rem; }
.no-item span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ddd;
}
.weissware-footnote {
  font-size: 0.78rem;
  color: #444;
  font-style: italic;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background-color: #0d0d0d; padding: 5rem 0; }
.section-header { margin-bottom: 2.75rem; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.section-header p {
  font-size: 0.95rem;
  color: #777;
  max-width: 520px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background-color: #111;
  border: 1px solid #1e1e1e;
  padding: 1.4rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: #cc0000;
  box-shadow: 0 0 18px rgba(204,0,0,0.12);
}
.card.card-highlight {
  background-color: #160000;
  border-color: #cc0000;
}
.card-badge-top {
  position: absolute;
  top: 0; right: 0;
  background-color: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
}
.card-icon { font-size: 1.9rem; margin-bottom: 0.65rem; }
.card-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 0.2rem;
}
.card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.65rem;
}
.card p {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.card-list { display: flex; flex-direction: column; gap: 0.18rem; }
.card-list li {
  font-size: 0.78rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-list li::before {
  content: '✓';
  color: #cc0000;
  font-weight: 700;
  flex-shrink: 0;
}

.section-cta { margin-top: 2.25rem; text-align: center; }

/* ============================================================
   ANKAUF
   ============================================================ */
.ankauf {
  background-color: #0a0a0a;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.metalle-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .metalle-table { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .metalle-table { grid-template-columns: repeat(3, 1fr); } }

.metall-row {
  background-color: #111;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.2s;
}
.metall-row:hover { background-color: #161616; }
.metall-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.metall-detail { font-size: 0.76rem; color: #555; }
.metall-preis {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(204,0,0,0.35);
  background-color: rgba(204,0,0,0.07);
  color: #cc0000;
}
.metall-preis.neutral {
  border-color: #2a2a2a;
  background-color: transparent;
  color: #666;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.1rem 1.3rem;
  background-color: rgba(204,0,0,0.07);
  border: 1px solid rgba(204,0,0,0.25);
  margin-bottom: 1.5rem;
}
.info-box .info-icon { color: #cc0000; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.info-box p { font-size: 0.84rem; color: #999; line-height: 1.6; }

.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.ueber-uns {
  background-color: #0d0d0d;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .ueber-grid { grid-template-columns: 1fr 1fr; } }

.ueber-uns h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 1.1rem;
}
.ueber-uns h2 .red { color: #cc0000; }
.ueber-text { font-size: 0.95rem; color: #999; line-height: 1.8; margin-bottom: 1.4rem; }
.ueber-text strong { color: #fff; }

.quote-block {
  padding: 1rem 1.2rem;
  border-left: 3px solid #cc0000;
  background-color: #111;
}
.quote-block blockquote {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.quote-block cite { font-size: 0.78rem; color: #555; font-style: normal; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  margin-bottom: 1.25rem;
}
.stat-cell {
  background-color: #111;
  padding: 1.2rem;
  text-align: center;
}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #cc0000;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label { font-size: 0.7rem; color: #555; text-transform: uppercase; letter-spacing: 0.1em; }

/* USPs */
.usp-list { display: flex; flex-direction: column; gap: 0.65rem; }
.usp-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background-color: #111;
  border: 1px solid #1a1a1a;
}
.usp-icon { font-size: 1.3rem; flex-shrink: 0; }
.usp-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.18rem;
}
.usp-text { font-size: 0.78rem; color: #666; line-height: 1.5; }

/* ============================================================
   SO FUNKTIONIERT'S
   ============================================================ */
.so-funktionierts {
  background-color: #0a0a0a;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.so-funktionierts .section-header { text-align: center; }
.so-funktionierts .section-label { justify-content: center; }

.schritte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .schritte-grid { grid-template-columns: repeat(3, 1fr); } }

.schritt {
  position: relative;
  padding: 1.75rem 1.4rem;
  background-color: #111;
  border: 1px solid #1a1a1a;
}
.schritt-nr-bg {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: rgba(204,0,0,0.12);
  line-height: 1;
  pointer-events: none;
}
.schritt-num {
  width: 2.4rem;
  height: 2.4rem;
  background-color: #cc0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.9rem;
}
.schritt h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.65rem;
}
.schritt p { font-size: 0.84rem; color: #666; line-height: 1.6; }

/* ============================================================
   EINSATZGEBIET
   ============================================================ */
.einsatzgebiet {
  background-color: #0d0d0d;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.einsatz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .einsatz-grid { grid-template-columns: 1fr 1fr; } }

.einsatzgebiet h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.9rem;
}
.einsatz-text { font-size: 0.95rem; color: #777; line-height: 1.7; margin-bottom: 1.75rem; max-width: 420px; }

.staedte-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.stadt {
  padding: 0.35rem 0.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  background-color: #111;
  border: 1px solid #1e1e1e;
}
.stadt.primary {
  background-color: #cc0000;
  border-color: #cc0000;
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-color: #0a0a0a;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #181818; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.faq-question.open .faq-question-text { color: #cc0000; }
.faq-arrow {
  color: #cc0000;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.1rem;
  padding-right: 2rem;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.88rem; color: #777; line-height: 1.7; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt {
  background-color: #0d0d0d;
  padding: 5rem 0;
  border-top: 1px solid #181818;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: #111;
  border: 1px solid #252525;
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #cc0000;
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #ff4444;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cc0000' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-select option { background-color: #111; color: #fff; }

.form-error-msg {
  font-size: 0.72rem;
  color: #ff4444;
  display: none;
}
.form-error-msg.visible { display: block; }

.form-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }
.form-note { font-size: 0.72rem; color: #3a3a3a; line-height: 1.5; margin-top: 0.75rem; }

/* Direktkontakt */
.kontakt-person {
  padding: 1.3rem;
  background-color: #111;
  border: 1px solid #1a1a1a;
  margin-bottom: 0.75rem;
}
.kontakt-person-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 0.35rem;
}
.kontakt-person-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
}
.kontakt-person-sub { font-size: 0.76rem; color: #555; margin-top: 0.2rem; }

.kontakt-items { display: flex; flex-direction: column; gap: 0.6rem; }
.kontakt-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background-color: #111;
  border: 1px solid #1a1a1a;
  align-items: flex-start;
}
.kontakt-item-icon { color: #cc0000; flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.kontakt-item-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.15rem;
}
.kontakt-item-value { font-size: 0.9rem; color: #fff; }
.kontakt-item-value a { color: #fff; text-decoration: none; transition: color 0.2s; }
.kontakt-item-value a:hover { color: #cc0000; }

.erreichbarkeit {
  padding: 0.9rem 1.1rem;
  background-color: #111;
  border: 1px solid #1a1a1a;
  margin-top: 0.6rem;
}
.erreichbarkeit-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.4rem;
}
.erreichbarkeit p { font-size: 0.84rem; color: #666; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #080808;
  border-top: 2px solid #cc0000;
  padding: 2.25rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-logo-name span { color: #cc0000; }
.footer-logo-addr { font-size: 0.72rem; color: #333; margin-top: 0.2rem; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #cc0000; }
.footer-copy { font-size: 0.7rem; color: #2a2a2a; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.6);
}
.whatsapp-fab svg { width: 20px; height: 20px; fill: #fff; }

/* ============================================================
   MODAL (Impressum / Datenschutz)
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.88);
  z-index: 200;
  overflow-y: auto;
  padding: 2rem 1rem;
}
.modal-overlay.open { display: block; }
.modal-box {
  background-color: #111;
  border: 1px solid #2a2a2a;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: #777;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #cc0000; }
.modal-box h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.modal-content { font-size: 0.86rem; color: #999; line-height: 1.8; }
.modal-content strong { color: #ddd; }
.modal-content p { margin-bottom: 1rem; }

/* ============================================================
   DANKE-SEITE
   ============================================================ */
.danke-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.danke-box {
  max-width: 560px;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #111;
  border: 1px solid #cc0000;
  box-shadow: 0 0 40px rgba(204,0,0,0.15);
}
.danke-icon { font-size: 3rem; color: #cc0000; margin-bottom: 1rem; }
.danke-box h1 { font-size: 2rem; color: #fff; margin-bottom: 0.75rem; }
.danke-box p { font-size: 0.95rem; color: #888; line-height: 1.7; margin-bottom: 1.5rem; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   STICKY WEISSWARE-LEISTE (unten, schließbar)
   ============================================================ */
.sticky-weissware {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #cc0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(204,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.sticky-weissware.hidden {
  transform: translateY(110%);
}
.sticky-weissware-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}
.sticky-weissware-icon::after {
  content: '';
  position: absolute;
  width: 130%;
  height: 2.5px;
  background: #fff;
  transform: rotate(-45deg);
  border-radius: 2px;
}
.sticky-weissware-text {
  flex: 1;
  text-align: center;
}
.sticky-weissware-text strong {
  font-weight: 700;
}
.sticky-weissware-text span {
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.88;
  margin-left: 0.4rem;
}
.sticky-weissware-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  opacity: 0.9;
}
.sticky-weissware-link:hover { opacity: 1; }
.sticky-weissware-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 0.5rem;
  opacity: 0.7;
  flex-shrink: 0;
  font-family: sans-serif;
}
.sticky-weissware-close:hover { opacity: 1; }

/* Auf Mobile: Text kürzer */
@media (max-width: 480px) {
  .sticky-weissware { font-size: 0.78rem; gap: 0.5rem; padding: 0.6rem 0.75rem; }
  .sticky-weissware-text span { display: none; }
}
