/* ===================================
   BADRANS AUTOMOBILE - PREMIUM STYLE
   Helles, cleanes Design für Autohaus
   =================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-off-white: #f7f7f5;
  --color-light-gray: #ececec;
  --color-text: #1f1f1f;
  --color-anthracite: #2d2d2d;
  --color-metallic: #8d8d8d;
  --color-accent: #2d2d2d;
  --color-success: #27ae60;
  --color-whatsapp: #25D366;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Layout */
  --container-max: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section */
.section {
  padding: var(--spacing-xl) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-metallic);
  margin-bottom: var(--spacing-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-metallic);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-anthracite);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-anthracite);
}

.btn-outline:hover {
  background-color: var(--color-anthracite);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-anthracite);
  box-shadow: var(--shadow-md);
}

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

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Fade-in Animation */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   NAVIGATION
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--spacing-md);
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo:hover {
  opacity: 0.8;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-anthracite);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-btn {
  padding: 0.625rem 1.5rem;
  background-color: var(--color-anthracite);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn:hover {
  background-color: var(--color-text);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  padding: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition);
}

.mobile-link:hover {
  background-color: var(--color-off-white);
}

.mobile-cta {
  padding: 0.875rem;
  background-color: var(--color-anthracite);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.75) 0%, rgba(45, 45, 45, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
}

.hero-location {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.hero-buttons .btn-primary {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-white);
}

.hero-buttons .btn-primary:hover {
  background-color: var(--color-off-white);
  color: var(--color-text);
  border-color: var(--color-off-white);
}

.hero-buttons .btn-outline {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-white);
}

.hero-buttons .btn-outline:hover {
  background-color: var(--color-off-white);
  color: var(--color-text);
  border-color: var(--color-off-white);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
  background-color: var(--color-off-white);
  padding: var(--spacing-lg) 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-anthracite);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-metallic);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   3 SCHRITTE
   =================================== */
.ankauf-section {
  background-color: var(--color-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f5 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  background: var(--color-white);
  box-shadow: 0 10px 40px rgba(39, 174, 96, 0.15);
  transform: translateY(-8px);
  border-color: rgba(39, 174, 96, 0.2);
}

/* Unterschiedliche Farben für jeden Schritt */
.step-card:nth-child(1) .step-icon {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.step-card:nth-child(2) .step-icon {
  background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
}

.step-card:nth-child(3) .step-icon {
  background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
}

.step-card:nth-child(1):hover {
  box-shadow: 0 10px 40px rgba(39, 174, 96, 0.2);
}

.step-card:nth-child(2):hover {
  box-shadow: 0 10px 40px rgba(52, 152, 219, 0.2);
}

.step-card:nth-child(3):hover {
  box-shadow: 0 10px 40px rgba(231, 76, 60, 0.2);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(39, 174, 96, 0.08);
  line-height: 1;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(39, 174, 96, 0.15);
  transform: scale(1.1);
}

.step-card:nth-child(2) .step-number {
  color: rgba(52, 152, 219, 0.08);
}

.step-card:nth-child(2):hover .step-number {
  color: rgba(52, 152, 219, 0.15);
}

.step-card:nth-child(3) .step-number {
  color: rgba(231, 76, 60, 0.08);
}

.step-card:nth-child(3):hover .step-number {
  color: rgba(231, 76, 60, 0.15);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-anthracite);
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #27ae60;
}

.step-card:nth-child(2):hover .step-title {
  color: #3498db;
}

.step-card:nth-child(3):hover .step-title {
  color: #e74c3c;
}

.step-description {
  color: var(--color-metallic);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===================================
   FORMULAR
   =================================== */
.form-section {
  background-color: var(--color-off-white);
}

.ankauf-form {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-anthracite);
  box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.form-group input[type="file"] {
  padding: 0.5rem;
  border: 2px dashed var(--color-light-gray);
  cursor: pointer;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--color-metallic);
}

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #d4edda;
  border: 2px solid var(--color-success);
  border-radius: var(--radius-md);
  color: #155724;
  margin-top: var(--spacing-md);
}

.form-success.active {
  display: flex;
}

/* ===================================
   WARUM BADRANS
   =================================== */
.why-section {
  background-color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.why-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f5 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #27ae60 0%, #2ecc71 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card:hover {
  background: var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  border-color: rgba(39, 174, 96, 0.15);
}

/* Verschiedene Farben für jede Karte */
.why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: var(--color-white);
}

.why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
  color: var(--color-white);
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #9b59b6 0%, #bb8fce 100%);
  color: var(--color-white);
}

.why-card:nth-child(4) .why-icon {
  background: linear-gradient(135deg, #f39c12 0%, #f8c471 100%);
  color: var(--color-white);
}

.why-card:nth-child(5) .why-icon {
  background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
  color: var(--color-white);
}

.why-card:nth-child(6) .why-icon {
  background: linear-gradient(135deg, #1abc9c 0%, #48c9b0 100%);
  color: var(--color-white);
}

/* Hover-Effekte mit passenden Schatten */
.why-card:nth-child(1):hover {
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.why-card:nth-child(2):hover {
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.why-card:nth-child(3):hover {
  box-shadow: 0 8px 30px rgba(155, 89, 182, 0.2);
}

.why-card:nth-child(4):hover {
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.2);
}

.why-card:nth-child(5):hover {
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}

.why-card:nth-child(6):hover {
  box-shadow: 0 8px 30px rgba(26, 188, 156, 0.2);
}

/* Linker Rand-Farbverlauf für jede Karte */
.why-card:nth-child(2)::before {
  background: linear-gradient(180deg, #3498db 0%, #5dade2 100%);
}

.why-card:nth-child(3)::before {
  background: linear-gradient(180deg, #9b59b6 0%, #bb8fce 100%);
}

.why-card:nth-child(4)::before {
  background: linear-gradient(180deg, #f39c12 0%, #f8c471 100%);
}

.why-card:nth-child(5)::before {
  background: linear-gradient(180deg, #e74c3c 0%, #ec7063 100%);
}

.why-card:nth-child(6)::before {
  background: linear-gradient(180deg, #1abc9c 0%, #48c9b0 100%);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.why-card:nth-child(2):hover .why-icon {
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.why-card:nth-child(3):hover .why-icon {
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.why-card:nth-child(4):hover .why-icon {
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
}

.why-card:nth-child(5):hover .why-icon {
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.why-card:nth-child(6):hover .why-icon {
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.4);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-anthracite);
  transition: color 0.3s ease;
}

.why-card:hover .why-title {
  color: #27ae60;
}

.why-card:nth-child(2):hover .why-title {
  color: #3498db;
}

.why-card:nth-child(3):hover .why-title {
  color: #9b59b6;
}

.why-card:nth-child(4):hover .why-title {
  color: #f39c12;
}

.why-card:nth-child(5):hover .why-title {
  color: #e74c3c;
}

.why-card:nth-child(6):hover .why-title {
  color: #1abc9c;
}

.why-description {
  color: var(--color-metallic);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===================================
   MARKEN
   =================================== */
.brands-section {
  background-color: var(--color-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.brand-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f5 100%);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--color-light-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.brand-card:hover {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-color: #27ae60;
  box-shadow: 0 5px 20px rgba(39, 174, 96, 0.25);
  transform: translateY(-5px) scale(1.02);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin: 0;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.brand-card:hover .brand-name {
  color: var(--color-white);
  transform: scale(1.05);
}

.brands-note {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 5px 20px rgba(39, 174, 96, 0.2);
}

.brands-note p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.brands-note strong {
  font-weight: 700;
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
  background-color: var(--color-off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-light-gray);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-success);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--color-off-white);
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-anthracite);
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-success);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--spacing-lg) var(--spacing-md);
}

.faq-answer p {
  color: var(--color-metallic);
  line-height: 1.8;
  margin: 0;
}

.faq-answer strong {
  color: var(--color-anthracite);
  font-weight: 600;
}

.faq-cta {
  background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
  color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.faq-cta p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.faq-cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-cta-buttons .btn svg {
  width: 20px;
  height: 20px;
}

/* ===================================
   BEWERTUNGEN
   =================================== */
.reviews-section {
  background-color: var(--color-white);
}

.google-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
}

.score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-anthracite);
}

.stars {
  font-size: 1.5rem;
  color: #FBBC05;
}

.platform {
  font-size: 0.875rem;
  color: var(--color-metallic);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.review-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-anthracite);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.review-info {
  flex-grow: 1;
}

.review-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.875rem;
}

.google-logo {
  flex-shrink: 0;
}

.review-text {
  color: var(--color-metallic);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
  font-style: italic;
}

.review-date {
  font-size: 0.875rem;
  color: var(--color-metallic);
}

.reviews-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   BESTAND CTA
   =================================== */
.bestand-cta {
  background-color: var(--color-anthracite);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.bestand-content {
  max-width: 700px;
  margin: 0 auto;
}

.bestand-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

.bestand-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.bestand-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.bestand-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.bestand-badge {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   ÜBER UNS
   =================================== */
.about-section {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: auto;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background-color: var(--color-anthracite);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 10;
}

.about-content {
  padding: var(--spacing-md);
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-metallic);
  margin-bottom: var(--spacing-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: 0;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 30px;
  height: 30px;
  background-color: var(--color-success);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.value-text h4 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.value-text p {
  font-size: 0.875rem;
  color: var(--color-metallic);
}

/* ===================================
   KONTAKT
   =================================== */
.contact-section {
  background-color: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: var(--spacing-md);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-anthracite);
  flex-shrink: 0;
}

.whatsapp-icon {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}

.contact-item h4 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--color-anthracite);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item p {
  color: var(--color-metallic);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background-color: var(--color-anthracite);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-white);
  color: var(--color-anthracite);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ===================================
   WhatsApp FAB
   =================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  }
}

/* ===================================
   LEGAL PAGES MODAL
   =================================== */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.legal-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.legal-modal-close:hover {
  background-color: var(--color-anthracite);
  border-color: var(--color-anthracite);
  color: var(--color-white);
  transform: rotate(90deg);
}

.legal-modal-close svg {
  stroke: currentColor;
}

#legalIframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--color-metallic);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-anthracite);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Container & Spacing */
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  /* Header */
  .header {
    padding: 1rem 0;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  /* Hero */
  .hero {
    min-height: 70vh;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-location {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Stats Bar */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Grids */
  .steps-grid,
  .why-grid,
  .reviews-grid,
  .value-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .ankauf-form {
    padding: var(--spacing-md);
  }
  
  .btn-large {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
  
  /* About */
  .about-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
  }
  
  /* Container */
  .container {
    padding: 0 1rem;
  }
  
  /* Hero */
  .hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-location {
    font-size: 0.75rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  /* Logo */
  .logo img {
    max-height: 35px;
  }
  
  .logo-text {
    font-size: 0.8rem;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  /* Stats */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Cards */
  .step-card,
  .why-card,
  .review-card {
    padding: 1.5rem;
  }
  
  .step-icon,
  .why-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-icon svg,
  .why-icon svg {
    width: 28px;
    height: 28px;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Forms */
  .ankauf-form {
    padding: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  /* Footer */
  .footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
  }
  
  .footer-column h3 {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    padding: 1rem;
  }
  
  .cookie-text p {
    font-size: 0.85rem;
  }
  
  .cookie-buttons .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}