/* ==========================================================================
   Blitzreparatur - Premium Rich Light Theme CSS
   Aesthetics: Rich colors, ambient glows, modern typography, glassmorphism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Rich Premium Color Palette */
  --bg-main: #f4faf6; /* Emerald-tinted eco canvas */
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-alternate: #d8eae0; /* Richer green alternate tint */
  
  /* Vibrant Gradients for Ambient Orbs & UI Elements */
  --gradient-primary: linear-gradient(135deg, #fab005 0%, #f08c00 100%); /* Gold/Orange Highlight */
  --gradient-secondary: linear-gradient(135deg, #15803d 0%, #22c55e 100%); /* Eco Green Primary Action */
  --gradient-gold: linear-gradient(135deg, #fab005 0%, #f08c00 100%);
  --gradient-dual: linear-gradient(135deg, #e8f4ec 0%, #fff9db 100%);
  --gradient-hero: radial-gradient(circle at 10% 20%, rgba(43, 138, 62, 0.15) 0%, rgba(244, 250, 246, 1) 60%),
                   radial-gradient(circle at 90% 80%, rgba(227, 6, 19, 0.05) 0%, rgba(244, 250, 246, 1) 60%);

  /* Text Colors */
  --text-primary: #0f1c14; /* Deep dark green */
  --text-secondary: #2f3e35;
  --text-muted: #5f7065;

  /* Accents */
  --accent-red: #c53030; /* Used selectively for warning/0 € promise */
  --accent-red-hover: #9b1c1c;
  --accent-green: #16a34a; /* Eco Green */
  --accent-green-hover: #15803d;
  --accent-gold: #fab005;

  --border-light: rgba(22, 163, 74, 0.15);
  --border-focus: #16a34a;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Enhanced Shadow Gradients */
  --shadow-sm: 0 4px 15px rgba(22, 163, 74, 0.05);
  --shadow-md: 0 12px 35px rgba(22, 163, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 163, 74, 0.12);
  --shadow-hover: 0 30px 60px rgba(22, 163, 74, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

/* Ambient Colorful Background Glow Orbs */
body::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10vw;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 138, 62, 0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 60%;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 176, 5, 0.12) 0%, rgba(0,0,0,0) 70%);
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

/* Typographic Art & Gradients */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-green-hover);
  text-shadow: 0 0 10px rgba(43, 138, 62, 0.15);
}

.asterisk {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}

/* Layout Containers */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-alternate {
  background: var(--bg-gradient-section);
  position: relative;
}

/* Interactive Top Alert */
.usp-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: #0f1c14; /* Deep dark forest green */
  color: #f4faf6; /* Light emerald white text */
  text-align: center;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #fab005; /* Sleek gold bottom border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.usp-bar strong {
  color: #fab005; /* Vibrant gold for "0 € Risiko:" */
}

/* Header & Glassmorphic Navigation */
.header {
  position: relative;
  z-index: 1000;
  background-color: rgba(246, 250, 247, 0.8);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(43, 138, 62, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(43, 138, 62, 0.1));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Stretched Link for Clickable Cards */
.card a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.nav-menu {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent-green);
}

/* Rich Buttons & Interactive States */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-lang {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.btn-lang:hover {
  background: var(--accent-green);
  color: #ffffff;
  border-color: var(--accent-green);
}

.btn-primary {
  background: var(--gradient-secondary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(250, 176, 5, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(250, 176, 5, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.05);
}

.btn-outline:hover {
  background: var(--gradient-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

/* Floating Interactive Contact Widget */
.sticky-contact {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 9999;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.sticky-btn:hover {
  transform: scale(1.18) rotate(8deg);
  box-shadow: var(--shadow-hover);
}

.sticky-phone { background: var(--gradient-secondary); }
.sticky-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.sticky-email { background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%); }

/* Hero Section Gradients & Layout */
.section-hero {
  background: var(--gradient-hero);
  padding: 5rem 0 3.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.hero-content {
  text-align: left;
}

.hero-tv-wrapper {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-tv {
  width: 100%;
  max-width: 500px;
  height: auto;
  transform-style: preserve-3d;
  transform: rotateY(15deg) rotateX(5deg);
  filter: drop-shadow(0 25px 50px rgba(43, 138, 62, 0.25));
  transition: transform 0.1s ease-out;
}

.section-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-main), rgba(0,0,0,0));
  pointer-events: none;
}

.asmr-badge {
  display: inline-block;
  background: linear-gradient(95deg, #fff0f6 0%, #fff5f5 100%);
  border: 1px solid rgba(214, 51, 108, 0.15);
  color: #d6336c;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Professional Explainer Video */
.video-section {
  text-align: center;
  margin-top: 5rem;
}

.video-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #eef5f0 0%, #d8eae0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(43, 138, 62, 0.15) 100%);
  z-index: 1;
}

.video-container:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: #f6faf7;
}

.video-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(43, 138, 62, 0.3);
  transition: var(--transition-smooth);
}

.video-container:hover .video-play-btn {
  transform: scale(1.2);
  box-shadow: 0 12px 35px rgba(43, 138, 62, 0.5);
}

/* 5-Step Dynamic Flowchart (Horizontal Grid Layout) */
.flowchart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 5rem auto 0 auto;
  position: relative;
}

.flowchart::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 55px;
  right: 55px;
  height: 6px;
  background: linear-gradient(to right, var(--border-light) 0%, var(--accent-green) 50%, var(--accent-gold) 100%);
  border-radius: 3px;
  z-index: 1;
}

.flowchart-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0.6;
  transform: scale(0.98);
  transition: var(--transition-smooth);
}

.flowchart-step:nth-child(1) { transition-delay: 0s; }
.flowchart-step:nth-child(2) { transition-delay: 0.1s; }
.flowchart-step:nth-child(3) { transition-delay: 0.2s; }
.flowchart-step:nth-child(4) { transition-delay: 0.3s; }
.flowchart-step:nth-child(5) { transition-delay: 0.4s; }

.flowchart-step.active {
  opacity: 1;
  transform: scale(1);
}

.flowchart-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.flowchart-step:nth-child(1).active .flowchart-badge { border-color: var(--accent-green); color: var(--accent-green); }
.flowchart-step:nth-child(2).active .flowchart-badge { border-color: #fab005; color: #fab005; }
.flowchart-step:nth-child(3).active .flowchart-badge { border-color: #fd7e14; color: #fd7e14; }
.flowchart-step:nth-child(4).active .flowchart-badge { border-color: #3b5bdb; color: #3b5bdb; }
.flowchart-step:nth-child(5).active .flowchart-badge { border-color: var(--accent-red); color: var(--accent-red); }

.flowchart-step.active .flowchart-badge {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.flowchart-content {
  background: var(--bg-card);
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-top: 1.5rem;
  width: 100%;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.flowchart-step.active .flowchart-content {
  box-shadow: var(--shadow-lg);
  transform: translateY(10px);
  border-color: rgba(43, 138, 62, 0.25);
}

/* Glassmorphic Glowing Services Grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.card {
  background: var(--bg-card);
  padding: 3.5rem 2.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--border-light);
  transition: var(--transition-fast);
}

.card:nth-child(1):hover::before { background: var(--gradient-primary); }
.card:nth-child(2):hover::before { background: var(--gradient-secondary); }
.card:nth-child(3):hover::before { background: var(--gradient-gold); }
.card:nth-child(4):hover::before { background: linear-gradient(135deg, #3b5bdb 0%, #00d2ff 100%); }

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(43, 138, 62, 0.25);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--gradient-dual);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

/* Premium Layout & Stories */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.highlight-box {
  background: var(--gradient-dual);
  border-left: 6px solid var(--accent-green);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 10px solid #ffffff;
  transition: var(--transition-smooth);
}

.about-media:hover img {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}

/* Tax Premium Box */
.tax-box {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4ec 100%);
  border: 1px solid rgba(43, 138, 62, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.tax-box::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 176, 5, 0.08) 0%, rgba(0,0,0,0) 70%);
  filter: blur(20px);
}

/* Interactive FAQ List */
.faq-accordion {
  max-width: 900px;
  margin: 5rem auto 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.faq-header {
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.faq-header:hover {
  color: var(--accent-green);
}

.faq-header::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent-green);
  transition: var(--transition-smooth);
}

.faq-card.open {
  border-color: rgba(43, 138, 62, 0.3);
  box-shadow: var(--shadow-lg);
}

.faq-card.open .faq-header::after {
  content: '-';
  transform: rotate(90deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card.open .faq-body {
  max-height: 1000px;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

/* Footer Section */
.footer {
  background: #0f1311;
  color: #c0c8c3;
  padding: 8rem 0 4rem 0;
  border-top: 2px solid rgba(43, 138, 62, 0.15);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(43, 138, 62, 0.3), rgba(0,0,0,0));
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
}

.footer p {
  color: #8f9b93;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.9fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #8f9b93;
  font-weight: 500;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content div {
    justify-content: center;
  }
  .rotating-tv {
    max-width: 400px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .flowchart {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .flowchart::before {
    top: 45px;
    bottom: 45px;
    left: 35px;
    right: auto;
    width: 6px;
    height: auto;
  }
  .flowchart-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    width: 100%;
  }
  .flowchart-content {
    margin-top: 0;
    padding: 1.5rem;
    flex: 1;
    width: auto;
    min-width: 0;
  }
  .flowchart-badge {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .flowchart-step.active .flowchart-content {
    transform: translateX(10px);
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .section {
    padding: 2.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }
  .logo-text {
    font-size: 1.4rem;
  }
  .logo img {
    height: 38px;
  }
  .sticky-contact {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .sticky-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .sticky-btn img {
    width: 28px !important;
    height: 28px !important;
  }
}

.image-caption {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  background: var(--bg-card);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.lang-en {
  display: none;
}

/* ==========================================================================
   Premium Legal Layout & Typography (AGB / T&C Pages)
   ========================================================================== */
.legal-container {
  max-width: 850px;
  margin: 0 auto;
}
.legal-body {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}
.legal-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.legal-section-title:first-of-type {
  margin-top: 0;
}
.legal-paragraph {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.legal-paragraph strong {
  color: var(--accent-green);
}
.legal-sublist-alpha, .legal-sublist-bullet {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  list-style: none;
}
.legal-sublist-alpha li {
  position: relative;
  margin-bottom: 0.5rem;
}
.legal-sublist-alpha li strong {
  color: var(--accent-green);
  margin-right: 0.5rem;
}
.legal-sublist-bullet li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
}
.legal-sublist-bullet li::before {
  content: "•";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.legal-text {
  margin-bottom: 1rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .legal-body {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   Stunning Cookie Consent Banner (GDPR Compliant)
   ========================================================================== */
#cookieConsentBanner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
  z-index: 10000;
  display: none;
  font-family: var(--font-body);
  color: var(--text-primary);
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

#cookieConsentBanner h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

#cookieConsentBanner p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

#cookieConsentBanner p a {
  color: var(--accent-green);
  text-decoration: underline;
  font-weight: 600;
}

#cookieConsentBanner .cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

#cookieConsentBanner .cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

#cookieConsentBanner .cookie-btn-primary {
  background: var(--gradient-secondary);
  color: #fff;
}

#cookieConsentBanner .cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

#cookieConsentBanner .cookie-btn-secondary {
  background: var(--bg-alternate);
  color: var(--text-primary);
}

#cookieConsentBanner .cookie-btn-secondary:hover {
  background: rgba(22, 163, 74, 0.18);
}

#cookieConsentBanner .cookie-btn-link {
  background: none;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 0.5rem;
  font-size: 0.85rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

#cookieConsentBanner .cookie-settings {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

#cookieConsentBanner .settings-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

#cookieConsentBanner .settings-option-text {
  flex: 1;
  padding-right: 1rem;
}

#cookieConsentBanner .settings-option label {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

#cookieConsentBanner .settings-option p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Switch Toggle Custom Styling */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--accent-green);
}

input:disabled + .cookie-slider {
  background-color: var(--accent-green);
  opacity: 0.6;
  cursor: not-allowed;
}

input:checked + .cookie-slider:before {
  transform: translateX(22px);
}

@media (max-width: 576px) {
  #cookieConsentBanner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  .nav-container {
    height: 70px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .logo img {
    height: 30px;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn-primary {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }
  .btn-lang {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }
  .sticky-contact {
    bottom: 1rem;
    right: 1rem;
    gap: 0.6rem;
  }
  .sticky-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .sticky-btn img {
    width: 24px !important;
    height: 24px !important;
  }
  .rotating-tv {
    max-width: 100% !important;
  }
}
