/* ============================================
   VERGLEICHNET - COMPREHENSIVE CSS STYLES
   Design Style: Warm & Friendly
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF9F5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  color: #FFFFFF;
  border-color: #FF6B35;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF8C5A 0%, #FFA07A 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #FF6B35;
  border-color: #FF6B35;
}

.btn-secondary:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  padding: 20px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #FFE4D6;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FFE4D6;
  color: #FF6B35;
  transform: scale(1.05);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B35;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FF8C5A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  display: block;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  color: #2C3E50;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #FFE4D6;
  color: #FF6B35;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-text p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background-color: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
}

.cookie-accept:hover {
  background-color: #FF8C5A;
  transform: scale(1.05);
}

.cookie-decline {
  background-color: transparent;
  color: #FFFFFF;
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #FFFFFF;
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #FF6B35;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #DDD;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #FF6B35;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 33px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: linear-gradient(135deg, #FFE4D6 0%, #FFF9F5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: 24px;
}

.trust-indicator {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  font-weight: 600;
  color: #2C3E50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-comparison,
.hero-services,
.hero-providers,
.hero-ratgeber,
.hero-about,
.hero-contact,
.hero-legal,
.hero-thankyou {
  background: linear-gradient(135deg, #FFE4D6 0%, #FFF9F5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
}

.availability-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
}

.success-icon {
  font-size: 80px;
  color: #27AE60;
  margin-bottom: 20px;
}

/* ============================================
   CARD LAYOUTS (USING FLEXBOX ONLY)
   ============================================ */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.categories-grid,
.providers-grid,
.articles-grid,
.guides-grid,
.tools-grid,
.values-grid,
.guarantees-grid,
.expertise-grid,
.stats-grid,
.help-options,
.contact-cards,
.rights-grid,
.actions-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.category-card,
.provider-card,
.article-card,
.guide-card,
.tool-card,
.value-card,
.guarantee-card,
.expertise-card,
.stat-card,
.help-card,
.contact-card,
.right-card,
.action-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.provider-card:hover,
.article-card:hover,
.guide-card:hover,
.tool-card:hover,
.value-card:hover,
.guarantee-card:hover,
.expertise-card:hover,
.help-card:hover,
.contact-card:hover,
.right-card:hover,
.action-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

/* Service Cards */
.service-card h3 {
  color: #FF6B35;
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
  margin: 20px 0;
}

.service-card-detailed {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.service-card-detailed.popular {
  border: 3px solid #FF6B35;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #FF6B35;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.features-list {
  list-style: none;
  margin: 20px 0;
}

.features-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: bold;
}

/* Steps */
.step {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  flex: 1 1 calc(50% - 24px);
  padding: 32px;
  border-left: 4px solid #FF6B35;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
}

.rating {
  color: #FFB900;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  font-weight: 600;
  color: #2C3E50;
  margin-top: 32px;
  font-size: 18px;
}

/* Provider Cards */
.provider-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.provider-info {
  color: #FF6B35;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Article Cards */
.article-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #FFE4D6;
  color: #FF6B35;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-meta {
  color: #888;
  font-size: 14px;
  margin-top: 12px;
}

.read-time {
  color: #888;
  font-size: 14px;
  margin-top: 12px;
}

/* Stats */
.stat-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
}

.stat-card strong {
  display: block;
  font-size: 48px;
  color: #FF6B35;
  margin-bottom: 8px;
}

/* ============================================
   FILTERS & FORMS
   ============================================ */
.search-filters {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.search-filters .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.filter-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #2C3E50;
  font-size: 14px;
}

.input-field,
.select-field {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}

.input-field:focus,
.select-field:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Form Placeholder */
.form-placeholder {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-placeholder p {
  margin-bottom: 16px;
  padding: 12px;
  background-color: #FFF9F5;
  border-radius: 8px;
  border-left: 4px solid #FF6B35;
}

/* ============================================
   TARIFF RESULTS
   ============================================ */
.results {
  margin-bottom: 60px;
}

.tariff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tariff-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tariff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.tariff-card h3 {
  color: #2C3E50;
}

.provider {
  color: #888;
  font-size: 14px;
}

.speed {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
}

.features {
  margin: 12px 0;
}

.features p {
  padding: 4px 0;
  color: #2C3E50;
}

/* ============================================
   TABLES
   ============================================ */
.comparison-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  color: #FFFFFF;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #E0E0E0;
}

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

tbody td {
  padding: 16px;
  color: #2C3E50;
}

tbody tr:hover {
  background-color: #FFF9F5;
}

.cookie-table {
  margin-top: 24px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF6B35;
}

.timeline-item strong {
  font-size: 24px;
  color: #FF6B35;
  min-width: 80px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF6B35;
}

.faq-item h3 {
  color: #FF6B35;
  margin-bottom: 12px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-final,
.cta-services,
.expert-recommendation,
.confirmation-message,
.return-navigation {
  background: linear-gradient(135deg, #FFE4D6 0%, #FFF9F5 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */
.key-metrics {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.metric {
  text-align: center;
  min-width: 150px;
}

.metric strong {
  display: block;
  font-size: 48px;
  color: #FF6B35;
  margin-bottom: 8px;
}

.values-list {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.values-list ul {
  list-style: none;
}

.values-list li {
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}

.values-list li:last-child {
  border-bottom: none;
}

.category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover,
.tab.active {
  background-color: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
}

.state-selector {
  margin-top: 24px;
}

.location-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.cookie-type {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 24px;
  background-color: #FFF9F5;
  border-radius: 16px;
  border-left: 4px solid #FF6B35;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 32px auto;
}

.link-more {
  display: inline-block;
  margin-top: 24px;
  color: #FF6B35;
  font-weight: 600;
  text-decoration: underline;
}

.link-more:hover {
  color: #FF8C5A;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #888;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FFE4D6;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #E0E0E0;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FF6B35;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #E0E0E0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .category-card,
  .provider-card,
  .article-card,
  .guide-card,
  .tool-card,
  .value-card,
  .guarantee-card,
  .expertise-card,
  .stat-card,
  .help-card,
  .contact-card,
  .right-card,
  .action-card,
  .suggestion-card,
  .service-card-detailed,
  .tariff-card {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .key-metrics {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .hero,
  .hero-comparison,
  .hero-services,
  .hero-providers,
  .hero-ratgeber,
  .hero-about,
  .hero-contact,
  .hero-legal,
  .hero-thankyou {
    padding: 60px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-card strong {
    font-size: 32px;
  }
  
  .price {
    font-size: 24px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}