/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
  /* Colors - High White Theme with Dark Green & Dark Blue Accents */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-light: #f1f3f5;
  
  --text-primary: #121c25;
  --text-secondary: #495057;
  --text-light: #ffffff;
  
  --accent-green: #0a4f3b;      /* Dark Green */
  --accent-green-light: #12795c;
  --accent-blue: #0b2545;       /* Dark Blue */
  --accent-blue-light: #133c6e;
  
  --gradient-main: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  --gradient-hover: linear-gradient(135deg, var(--accent-green-light), var(--accent-blue-light));
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 25px 50px -12px rgba(11, 37, 69, 0.15);
  --shadow-glow: 0 0 20px rgba(10, 79, 59, 0.2);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Layout */
  --container-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--text-light);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gradient-hover);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(10, 79, 59, 0.3);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--accent-blue);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-green);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-blue);
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-green);
  padding-left: 1rem;
}

.hero-bullets {
  margin-bottom: 2.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--accent-blue);
}

.hero-bullets i {
  color: var(--accent-green);
  font-size: 1.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: var(--gradient-main);
  opacity: 0.05;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: bgPulse 15s ease-in-out infinite alternate;
  z-index: 0;
}

/* ==========================================================================
   Cards & Grids (Leistungen, Spezial, Modelle)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 79, 59, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(10, 79, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--gradient-main);
  color: var(--text-light);
}

/* ==========================================================================
   Section 3 & 4: Split Content (Autoverkauf & Defekte Autos)
   ========================================================================== */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse .split-text {
  order: 2;
}

.split-reverse .split-image {
  order: 1;
}


.feature-list {
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.feature-text h4 {
  margin-bottom: 0.25rem;
  color: var(--accent-blue);
}

.feature-text p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Section 7: Vergleich (Comparison)
   ========================================================================== */
.comparison-table-wrapper {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-blue);
  background: var(--bg-secondary);
}

.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table .pro {
  color: #10b981;
  font-size: 1.25rem;
}

.comparison-table .con {
  color: #ef4444;
  font-size: 1.25rem;
}

.table-highlight {
  background: rgba(10, 79, 59, 0.02);
  position: relative;
}

.table-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-green);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* ==========================================================================
   Section 9: Ablauf (Process)
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: dashed 2px rgba(11, 37, 69, 0.2);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-primary);
  border: 4px solid var(--accent-green);
  color: var(--accent-blue);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step:hover .step-number {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

/* ==========================================================================
   Section 10: Formular / CTA
   ========================================================================== */
.contact-section {
  position: relative;
  background: var(--accent-blue);
  color: white;
}

.contact-section h2, .contact-section h3, .contact-section p {
  color: white;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2312795c' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
  z-index: 2;
  color: var(--text-primary);
}

.contact-info {
  background: var(--gradient-main);
  padding: 4rem 3rem;
  color: white;
}

.contact-info h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-details {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-item-text h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.125rem;
}

/* Form Styles */
.contact-form {
  padding: 4rem 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--bg-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-secondary);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-green);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 79, 59, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* ==========================================================================
   Section 11: SEO Text Area
   ========================================================================== */
.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2, .seo-content h3 {
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.seo-content h2 {
  font-size: 2.25rem;
}

.seo-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.seo-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.seo-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.seo-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 1.5rem;
  line-height: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--accent-blue);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--accent-green);
}

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

.footer-col h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
/* Live Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1); 
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b9365;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.status-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes bgPulse {
  0% { transform: scale(1); opacity: 0.05; }
  100% { transform: scale(1.1); opacity: 0.1; }
}

@media (max-width: 991px) {
  .hero-grid, .split-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle, .hero-bullets li {
    justify-content: center;
  }
  
  .hero-bullets li {
    justify-content: center;
  }
  
  .hero-image {
    /* Optimierung Leistung 100: Bild auf dem Handy unter den Text verschieben (LCP Boost) */
    order: 2;
    margin-bottom: 0;
    margin-top: 2rem;
  }
  
  .split-reverse .split-text {
    order: 1;
  }
  
  .split-reverse .split-image {
    order: 2;
  }
  
  .feature-list li {
    text-align: left;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  /* Fix Kontaktformular auf dem Handy */
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-info {
    padding: 2.5rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .container {
    padding: 0 1rem; /* Mehr Platz auf kleinen Tasten-Handys */
  }
}

/* ========================================= */
/* PHASE 1: UX & SEO ENHANCEMENTS            */
/* ========================================= */

/* Trust Bar */
.trust-bar {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 200px;
}
.trust-icon {
  font-size: 2.5rem;
  color: var(--accent-green);
  opacity: 0.9;
}
.trust-text h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.trust-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* EEAT Section */
.eeat-image-container {
  position: relative;
}
.eeat-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gradient-main);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(10, 79, 59, 0.3);
  z-index: 2;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
.eeat-badge i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}
.eeat-badge h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #ffffff; /* Explicit white to override global h4 color */
}
.eeat-badge p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75); /* Light gray/white transparency */
}
.eeat-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.eeat-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.eeat-list li i {
  margin-top: 5px;
  font-size: 1.2rem;
}

/* Glassmorphism Cards & Overflows */
.relative-overflow {
  position: relative;
  overflow: hidden;
}
.relative-z {
  position: relative;
  z-index: 2;
}
.blur-blob {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  border-radius: 50%;
}
.blur-blob.block-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-green);
  top: -100px;
  left: -100px;
}
.blur-blob.block-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-blue);
  bottom: -50px;
  right: -100px;
}
.glass-grid {
  margin-top: 4rem;
  gap: 2rem;
}
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}
.hexagon-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.3s ease;
}
.glass-card:hover .hexagon-icon {
  transform: rotate(15deg) scale(1.1);
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-btn {
  background: white;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-btn i {
  color: var(--accent-green);
  transition: transform 0.3s ease;
}
.faq-btn.active {
  color: var(--accent-green);
}
.faq-btn.active i {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fdfdfd;
}
.faq-content p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--accent-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(10, 79, 59, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.floating-contact-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(10, 79, 59, 0.6);
  color: white;
  background: var(--gradient-main);
}

@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 80px; /* Bleibt genau über dem Sticky-Menü auf Handys! */
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  transition: var(--transition);
}
.sticky-call {
  background: white;
  color: var(--accent-blue);
  border-right: 1px solid var(--border-color);
}
.sticky-call:hover {
  background: #f8fafc;
}
.sticky-wa {
  background: #25D366;
  color: white;
}
.sticky-wa:hover {
  background: #1da851;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
  .eeat-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 1rem;
    animation: none;
  }
  .blur-blob.block-1, .blur-blob.block-2 {
    filter: blur(50px);
  }
}
