/* ============================================================
   BSR Sperrmüllabfuhr Berlin – Hauptstylesheet
   Color Scheme: Weiß #FFFFFF | Orange #FF6600
   ============================================================ */

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

:root {
  --orange:       #FF6600;
  --orange-dark:  #E05500;
  --orange-light: #FF8833;
  --orange-pale:  #FFF3EB;
  --white:        #FFFFFF;
  --gray-100:     #F8F9FA;
  --gray-200:     #EBEBEB;
  --gray-500:     #6C757D;
  --gray-700:     #444444;
  --dark:         #1A1A1A;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   .25s ease;
  --font:         'Poppins', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: .85rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--orange);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a { color: var(--white); transition: color var(--transition); }
.topbar a:hover { color: var(--orange-light); }

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-phone {
  font-weight: 700;
  font-size: .95rem;
  color: var(--orange-light) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
  font-family: var(--font);
}

.logo span { color: var(--orange); }
.logo .logo-icon { color: var(--white); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li { position: relative; }

.nav-menu a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .92rem;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a:hover, .nav-menu a.active {
  background: var(--orange-pale);
  color: var(--orange);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border-top: 3px solid var(--orange);
  z-index: 100;
}

.nav-menu li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  padding: 10px 18px;
  border-radius: 0;
  display: block;
  font-size: .88rem;
  border-bottom: 1px solid var(--gray-200);
}

.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--orange-pale); color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--orange-light); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* USP Bar */
.usp-bar {
  background: var(--orange);
  padding: 16px 0;
}

.usp-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
}

.usp-item i {
  font-size: 1.3rem;
  opacity: .9;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,102,0,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

.btn-phone {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  font-size: 1.1rem;
}
.btn-phone:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .label {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header h2 span { color: var(--orange); }

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: visible;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(255,102,0,.4);
}

.service-card-body {
  padding: 36px 24px 24px;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: .92rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.service-card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner-text p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.cta-banner-phone-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.cta-banner-phone-info strong { display: block; font-size: 1.4rem; font-weight: 800; }
.cta-banner-phone-info span { font-size: .82rem; opacity: .85; }

/* ============================================================
   STATS / ZAHLEN
   ============================================================ */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item { color: var(--white); padding: 20px; }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  position: relative;
  border: 1px solid var(--gray-200);
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255,102,0,.3);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .88rem;
  color: var(--gray-500);
}

/* ============================================================
   BEZIRKE GRID
   ============================================================ */
.bezirke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.bezirk-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.bezirk-card:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bezirk-card i {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.bezirk-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bezirk-card span {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  opacity: .25;
  font-family: Georgia, serif;
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: .93rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: .92rem; font-weight: 700; }
.author-info span { font-size: .8rem; color: var(--gray-500); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-info h2 span { color: var(--orange); }

.contact-info p {
  color: var(--gray-500);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail span { font-size: .88rem; color: var(--gray-500); }
.contact-detail a { color: var(--orange); font-weight: 700; }
.contact-detail a:hover { color: var(--orange-dark); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .93rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.captcha-group label { font-weight: 600; margin-bottom: 8px; display: block; }
.captcha-group input[type="number"] {
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.captcha-group input[type="number"]:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,102,0,.1); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.form-check input { width: 18px; height: 18px; accent-color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: .82rem; color: var(--gray-500); }
.form-check a { color: var(--orange); }

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
  display: none;
}

.form-message.success { background: #D4EDDA; color: #155724; display: block; }
.form-message.error   { background: #F8D7DA; color: #721C24; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font);
  font-size: .98rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--orange-pale); }
.faq-item.active .faq-question { background: var(--orange-pale); color: var(--orange); }

.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--orange); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .93rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============================================================
   TRUST / BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.trust-badge i { color: var(--orange); font-size: 1.1rem; }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}

.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb i { font-size: .7rem; }

.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero h1 span { color: var(--orange-light); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
}

/* ============================================================
   CONTENT COLUMNS
   ============================================================ */
.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-columns.reverse > *:first-child { order: 2; }
.content-columns.reverse > *:last-child  { order: 1; }

.content-columns img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.content-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-text h2 span { color: var(--orange); }

.content-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: .97rem;
}

.check-list { margin: 20px 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}

.check-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
}

.price-card:hover, .price-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card.featured { background: var(--orange-pale); }

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 16px 0 6px;
}

.price-amount small { font-size: 1rem; }
.price-note { font-size: .82rem; color: var(--gray-500); margin-bottom: 20px; }

.price-features li {
  font-size: .88rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li i { color: var(--orange); }
.price-card .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; margin-bottom: 20px; line-height: 1.75; }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-phone i { color: var(--orange); }

.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--orange-light); }
.footer-links a i { font-size: .7rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
}

.footer-contact-item i { color: var(--orange); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange-light); }
.footer-bottom-links { display: flex; gap: 20px; }


/* ============================================================
   COOKIE MODAL
   ============================================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.cookie-overlay.show { opacity: 1; pointer-events: all; }

.cookie-box {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px;
  max-width: 820px;
  width: 100%;
  box-shadow: 0 -8px 40px rgba(0,0,0,.2);
  transform: translateY(20px);
  transition: transform .4s ease;
}

.cookie-overlay.show .cookie-box { transform: translateY(0); }

.cookie-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cookie-header i { font-size: 1.8rem; color: var(--orange); }
.cookie-header h3 { font-size: 1.15rem; font-weight: 700; }

.cookie-text { font-size: .88rem; color: var(--gray-500); margin-bottom: 22px; line-height: 1.7; }
.cookie-text a { color: var(--orange); }

.cookie-options { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

.cookie-toggle input { accent-color: var(--orange); width: 18px; height: 18px; }
.cookie-toggle label { font-weight: 600; }
.cookie-toggle .badge { background: var(--gray-200); font-size: .72rem; padding: 2px 8px; border-radius: 20px; color: var(--gray-500); }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.call-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(255,102,0,.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.call-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255,102,0,.55);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 100px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,102,0,.35);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   BEZIRK PAGE SPECIFIC
   ============================================================ */
.bezirk-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.bezirk-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bezirk-map img { width: 100%; height: 300px; object-fit: cover; }

.quick-contact-box {
  background: var(--orange-pale);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 30px;
  text-align: center;
}

.quick-contact-box h3 { font-weight: 700; margin-bottom: 10px; }
.quick-contact-box p { font-size: .9rem; color: var(--gray-700); margin-bottom: 16px; }
.quick-contact-box .phone-big { font-size: 1.8rem; font-weight: 800; color: var(--orange); display: block; margin-bottom: 12px; }

/* ============================================================
   UTIL CLASSES
   ============================================================ */
.bg-light  { background: var(--gray-100); }
.bg-orange { background: var(--orange-pale); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

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

@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-image          { display: none; }
  .content-columns     { grid-template-columns: 1fr; }
  .content-columns.reverse > *:first-child { order: initial; }
  .content-columns.reverse > *:last-child  { order: initial; }
  .contact-wrapper     { grid-template-columns: 1fr; }
  .bezirk-intro        { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions  { justify-content: center; }
  .cta-banner-phone    { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px; border-top: 2px solid var(--orange); z-index: 999; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border-top: none; border-left: 3px solid var(--orange); margin-left: 16px; min-width: auto; display: none; }
  .nav-menu li:hover .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }
  .site-header .nav-wrapper { position: relative; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero        { padding: 60px 0 50px; }
  .section     { padding: 55px 0; }
  .topbar-left { display: none; }
  .usp-grid    { gap: 16px 30px; }
}

@media (max-width: 520px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .cookie-box    { padding: 22px; border-radius: var(--radius-lg); }
  .cookie-actions{ justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .hero h1       { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.5rem; }
  .scroll-top    { right: 88px; }
}
