.elementor-14575 .elementor-element.elementor-element-cad92b8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c9b40ef *//* 
  SEO-BERATUNG BURGENLAND - DARK FOREST GREEN THEME
  Glassmorphism auf dunkelgrünem Hintergrund
  
  FARBEN: Dunkelgrün als Basis, Gold/Gelb als Akzent
*/

:root {
  /* Dunkelgrün Theme - für Cards und Elemente */
  --primary-color: #10b981; /* Smaragdgrün */
  --primary-light: rgba(16, 185, 129, 0.15);
  --secondary-color: #059669; /* Dunkleres Grün */
  --accent-color: #fbbf24; /* Gold/Gelb für Highlights */
  --dark-green: #064e3b; /* Sehr dunkles Grün */
  --dark-green-2: #065f46; /* Mitteldunkel */
  --dark-gradient: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  
  /* Glass auf Dunkelgrün */
  --glass-bg: rgba(6, 78, 59, 0.4); /* Dunkelgrün mit Transparenz */
  --glass-border: rgba(16, 185, 129, 0.2); /* Grüner Border */
  
  /* Text auf Dunkelgrün */
  --text-primary: #ecfdf5; /* Fast weiß mit grünem Ton */
  --text-secondary: #d1fae5; /* Hellgrün für Sekundärtext */
  --text-muted: #a7f3d0; /* Gedämpftes Grün */
  
  --spacing-unit: 1rem;
  --border-radius: 1.5rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ========================================
   GLOBAL & LAYOUT
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  /* Kein background - kommt vom Theme/Seite */
}

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

section {
  padding: 6rem 0;
  position: relative;
  background: transparent; /* Kein Hintergrund, durchsichtig */
}

/* Glassmorphism Card Base */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-seo {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-2) 100%);
  color: var(--text-primary);
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-seo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--text-secondary);
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-seo {
    padding: 5rem 0 4rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 3rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--dark-green);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--accent-color);
  color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
  background: rgba(16, 185, 129, 0.15);
  color: var(--text-primary);
  border-color: var(--primary-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.3);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  color: var(--primary-color);
  padding: 0.5rem 0;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  gap: 0.75rem;
  color: var(--accent-color);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 + p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

p {
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.95rem;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section .container {
  max-width: 1000px;
}

.problem-content {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--glass-border);
}

.problem-list {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  backdrop-filter: blur(8px);
  border-left: 4px solid #ef4444;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.problem-list h3 {
  color: #fca5a5;
  margin-bottom: 1.5rem;
  text-align: left;
}

.problem-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.problem-list ul li {
  padding: 1rem;
  padding-left: 3rem;
  position: relative;
  color: var(--text-secondary);
  background: rgba(6, 78, 59, 0.3);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem-list ul li:hover {
  transform: translateX(4px);
  background: rgba(6, 78, 59, 0.5);
  border-color: rgba(239, 68, 68, 0.4);
}

.problem-list ul li:before {
  content: "⚠️";
  position: absolute;
  left: 1rem;
  font-size: 1.25rem;
}

/* ========================================
   SOLUTION SECTION (AEO)
   ======================================== */
.solution-section {
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  pointer-events: none;
}

.solution-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.difference-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.diff-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.diff-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diff-item:first-child {
  opacity: 0.6;
  position: relative;
}

.diff-item:first-child::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary-color);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.pillar {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pillar h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.pillar ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pillar ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pillar ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Mobile */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .difference-box {
    grid-template-columns: 1fr;
  }
  
  .diff-item:first-child::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -1rem;
    transform: translateX(50%);
  }
}

/* ========================================
   TARGET SECTION
   ======================================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.target-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
}

.target-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.target-item:hover::before {
  opacity: 1;
}

.target-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.target-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: left;
}

.link-arrow {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
  color: var(--accent-color);
}

.not-for-you {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 0 auto;
}

.not-for-you h3 {
  color: var(--accent-color);
  text-align: left;
  font-size: 1.25rem;
}

.not-for-you ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.not-for-you ul li {
  padding: 1rem;
  padding-left: 3rem;
  position: relative;
  background: rgba(6, 78, 59, 0.3);
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--text-secondary);
}

.not-for-you ul li:before {
  content: "❌";
  position: absolute;
  left: 1rem;
  font-size: 1.25rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-phase {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  padding-top: 3.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.3s ease;
}

.process-phase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.phase-number {
  position: absolute;
  top: -25px;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.4);
}

.process-phase h3 {
  margin-top: 1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: left;
}

.phase-content h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.phase-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.phase-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.phase-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.price {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(251, 191, 36, 0.2));
  padding: 1.25rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  text-align: center;
  border: 1px solid var(--glass-border);
}

.process-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  max-width: 800px;
  margin: 0 auto;
}

.process-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Mobile Process */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FAQ SECTION (Accordion)
   ======================================== */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item.active {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: var(--dark-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  line-height: 1.75;
}

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

/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.case-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-item:hover::after {
  opacity: 1;
}

.case-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.case-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--dark-green);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.case-item h3 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.case-details {
  margin: 1.5rem 0;
}

.case-details p {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-table {
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}

.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-green);
}

.pricing-table th,
.pricing-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.pricing-table th {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: scale(1.01);
}

.price-cell {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0;
  font-size: 1.1rem;
}

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

/* Mobile Pricing */
@media (max-width: 768px) {
  .pricing-table table {
    font-size: 0.85rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
  }
  
  .price-cell {
    font-size: 1.25rem;
  }
  
  .pricing-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========================================
   REGIONS SECTION
   ======================================== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.region-column {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.region-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.region-column h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: left;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.region-column ul {
  list-style: none;
  padding: 0;
}

.region-column ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.region-column ul li:last-child {
  border-bottom: none;
}

.region-column ul li:hover {
  padding-left: 0.5rem;
}

.region-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.region-column ul li a:hover {
  color: var(--primary-color);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: var(--primary-light);
  border-radius: 50%;
}

.why-item h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.why-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.why-item ul li {
  padding: 0.75rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-secondary);
  background: rgba(6, 78, 59, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.why-item ul li:hover {
  background: rgba(6, 78, 59, 0.5);
  padding-left: 3rem;
  border-color: var(--primary-color);
}

.why-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.25rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
  background: var(--dark-gradient);
  color: var(--text-primary);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

.final-cta-section h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.final-cta-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.final-trust {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.trust-stat {
  text-align: center;
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.trust-stat:hover {
  background: rgba(16, 185, 129, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Mobile Final CTA */
@media (max-width: 768px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: var(--dark-green);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--dark-green);
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* Scrollbar (optional) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent; /* Seiten-Hintergrund durchscheinen */
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Print Styles */
@media print {
  /* Kein background override - Seiten-Hintergrund bleibt */
  
  .hero-seo,
  .final-cta-section {
    color: black !important;
  }
  
  .glass-card,
  .pillar,
  .target-item {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}/* End custom CSS */