/**
 * Global Styles für RLS Wacon Website
 * Basierend auf CI-Richtlinie vom 24.08.2016
 * Erstellt: 2025-12-19
 * Erstellt für: Sascha Matern
 */

:root {
  /* ===========================================
   * Farbschema: Petrol & Teal Harmonie
   * Modern, professionell, harmonisch
   * =========================================== */

  /* Primärfarben */
  --color-primary-blue: #046bd2;    /* Blau für Links */
  --color-primary-teal: #0D9488;    /* Türkis/Teal Akzent */
  --color-primary-petrol: #164E63;  /* Petrol Hauptfarbe */

  /* Blau Varianten */
  --color-blue-light: #3B8EE0;      /* Helleres Blau */
  --color-blue-medium: #045cb4;     /* Hover-Blau */
  --color-blue-dark: #0C3547;       /* Dunkles Petrol-Blau */

  /* Teal Varianten */
  --color-teal-light: #14B8A6;
  --color-teal-medium: #0D9488;
  --color-teal-dark: #0F766E;
  --color-teal-darker: #115E59;

  /* Petrol Varianten */
  --color-petrol-light: #1E6E85;
  --color-petrol-medium: #164E63;
  --color-petrol-dark: #0C3547;
  --color-petrol-darker: #082530;

  /* Hintergrundfarben */
  --color-bg-light: #F0F9FA;        /* Heller Petrol-Touch */
  --color-bg-medium: #E0F2F4;
  --color-bg-dark: #164E63;         /* Petrol Dunkel */

  /* Neutrale Farben */
  --color-white: #FFFFFF;
  --color-black: #0f0e17;
  --color-gray-light: #F0F9FA;
  --color-gray-medium: #7C9AA0;     /* Petrol-Grau */
  --color-gray-dark: #2D4A53;       /* Dunkles Petrol-Grau */
  --color-text: #2D4A53;            /* Haupttextfarbe */

  /* Akzentfarbe */
  --color-accent: #0D9488;          /* Teal als Akzent */

  /* Schriftarten */
  --font-family: 'Lato', sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-xlarge: 24px;
  --font-size-hero: 48px;

  /* Abstände */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary-blue);
}

h1 {
  font-size: var(--font-size-hero);
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal-light);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
}

.btn-primary {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-blue-medium);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(22, 78, 99, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: var(--shadow-small);
}

.btn-secondary {
  background-color: var(--color-primary-teal);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: var(--shadow-small);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary-blue);
  border: 2px solid var(--color-primary-blue);
}

.btn-outline:hover {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(22, 78, 99, 0.3);
}

.btn-outline:active {
  transform: translateY(-1px) scale(1);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  padding: var(--spacing-md);
  transition: all var(--transition-medium);
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* Sections */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-blue {
  color: var(--color-primary-blue);
}

.text-teal {
  color: var(--color-primary-teal);
}

.bg-light {
  background-color: var(--color-bg-light);
}

.bg-white {
  background-color: var(--color-white);
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Responsive */
@media (max-width: 768px) {
  :root {
    --font-size-hero: 32px;
    --container-padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-base: 14px;
    --font-size-hero: 28px;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

/* Smooth Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/**
 * Layout Styles
 */

/* Keine zusätzlichen Styles benötigt */
/**
 * Globale Styles für Variante 2
 * Überschreibt Hero-Bereiche für Fullscreen-Darstellung
 */

/* ================================
   FULLSCREEN HERO FÜR ALLE UNTERSEITEN
   ================================ */

.app-v2 .page-hero {
  min-height: 100vh !important;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left !important;
}

.app-v2 .page-hero .container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.app-v2 .page-hero .hero-content-wrapper,
.app-v2 .page-hero .hero-content,
.app-v2 .page-hero .container > div {
  max-width: 700px;
  margin: 0 !important;
  text-align: left !important;
}

/* Hero Badge Styling */
.app-v2 .page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.app-v2 .page-hero .hero-badge + h1 {
  margin-top: 2rem;
}

.app-v2 .page-hero .hero-badge svg {
  color: var(--color-primary-teal);
}

.app-v2 .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.app-v2 .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-v2 .page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 78, 99, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
  z-index: 1;
}

.app-v2 .page-hero .container,
.app-v2 .page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.app-v2 .page-hero h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 2rem 0;
}

.app-v2 .page-hero-subtitle {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 0 2rem 0;
}

/* Hero CTA Buttons */
.app-v2 .page-hero .hero-cta,
.app-v2 .page-hero .btn-group,
.app-v2 .page-hero .hero-audiences {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start !important;
}

.app-v2 .page-hero .btn-primary {
  background: var(--color-primary-teal) !important;
  border: none !important;
  padding: 14px 30px;
  font-weight: 600;
}

.app-v2 .page-hero .btn-primary:hover {
  background: var(--color-primary-blue) !important;
}

.app-v2 .page-hero .btn-outline {
  background: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  padding: 12px 28px;
}

.app-v2 .page-hero .btn-outline:hover {
  background: #ffffff !important;
  color: var(--color-primary-blue) !important;
}

/* ================================
   SEITENSPEZIFISCHE ANPASSUNGEN
   ================================ */

/* Entwicklung Page */
.app-v2 .entwicklung-page .page-hero {
  min-height: 100vh !important;
}

/* Produktion Page */
.app-v2 .produktion-page .page-hero {
  min-height: 100vh !important;
}

/* Referenzen Page - Bild vollständig sichtbar */
.app-v2 .referenzen-page .page-hero {
  min-height: 100vh !important;
}

.app-v2 .referenzen-page .page-hero-bg img {
  object-fit: contain !important;
}


/* Über Uns Page */
.app-v2 .ueber-uns-page .page-hero {
  min-height: 100vh !important;
}

/* Zielgruppen Page */
.app-v2 .zielgruppen-page .page-hero {
  min-height: 100vh !important;
}

/* Montage/Qualität Page */
.app-v2 .qualitaet-page .page-hero {
  min-height: 100vh !important;
}

/* Kontakt Page */
.app-v2 .kontakt-page .page-hero {
  min-height: 100vh !important;
}

/* ================================
   SCROLL INDICATOR FÜR UNTERSEITEN
   ================================ */

.app-v2 .page-hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-primary-teal), transparent);
  animation: v2ScrollPulse 2s ease-in-out infinite;
  z-index: 10;
}

/* ================================
   ALLGEMEINE LAYOUT-ANPASSUNGEN
   ================================ */

/* Eckige Buttons überall */
.app-v2 .btn,
.app-v2 button {
  border-radius: 12px !important;
}

/* Eckige Cards */
.app-v2 .card {
  border-radius: 0 !important;
}

/* Cleaner Section Headers */
.app-v2 .section-title {
  font-weight: 700;
}

/* Stats/Facts Sections - einheitliches Design */
.app-v2 .facts-section,
.app-v2 .ueber-uns-stats,
.app-v2 .referenzen-stats,
.app-v2 .produktion-stats,
.app-v2 .qualitaet-certifications,
.app-v2 .zielgruppen-stats {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .app-v2 .page-hero .container {
    padding: 0 40px;
  }

  .app-v2 .page-hero h1 {
    font-size: 2.75rem !important;
  }
}

@media (max-width: 768px) {
  .app-v2 .page-hero {
    min-height: 100vh !important;
  }

  .app-v2 .page-hero .container {
    padding: 0 24px;
  }

  .app-v2 .page-hero h1 {
    font-size: 2rem !important;
  }

  .app-v2 .page-hero-subtitle {
    font-size: 1.1rem !important;
  }

  .app-v2 .page-hero::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .app-v2 .page-hero h1 {
    font-size: 1.75rem !important;
  }

  .app-v2 .page-hero-subtitle {
    font-size: 1rem !important;
  }
}
/**
 * Header Variante 2 - Split Navigation Style
 * Drei separate Container: Logo | Menü | CTA
 */

/* ================================
   SPLIT-NAVIGATION HEADER
   Logo links, Menü zentriert, CTA rechts
   ================================ */

.v2-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.4s ease;
  /* Kein Hintergrund auf dem Header selbst */
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.v2-header-inner {
  display: contents;
}

/* ================================
   LOGO CONTAINER - Glasmorphism
   ================================ */

.v2-header-logo {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 0 20px;
  height: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 1001;
}

.v2-header-logo:hover {
  background: rgba(255, 255, 255, 0.40);
  border-color: rgba(255, 255, 255, 0.45);
}

.v2-header-logo img {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Scrolled State - Logo Container */
.v2-header-scrolled .v2-header-logo {
  background: rgba(180, 240, 230, 0.88);
  border-color: rgba(13, 148, 136, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.v2-header-scrolled .v2-header-logo img {
  height: 30px;
}

/* ================================
   NAVIGATION CONTAINER - Zentriert, Pill-Form
   ================================ */

.v2-header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

/* Scrolled State - Nav Container */
.v2-header-scrolled .v2-header-nav {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Scrolled State - Dropdown dunkelblau */
.v2-header-scrolled .v2-dropdown-menu,
.v2-header-scrolled .has-dropdown > ul.dropdown {
  background: rgba(15, 23, 42, 0.90);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.v2-header-scrolled .v2-dropdown-menu::before,
.v2-header-scrolled .has-dropdown > ul.dropdown::before {
  border-bottom-color: rgba(15, 23, 42, 0.90);
}

.v2-nav-list,
.v2-header-nav > ul {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.v2-nav-item,
.v2-header-nav > ul > li {
  position: relative;
}

.v2-nav-link,
.v2-header-nav > ul > li > a,
.v2-header-nav > ul > li > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.v2-nav-link:hover,
.v2-header-nav > ul > li > a:hover,
.v2-header-nav > ul > li > span:hover,
.v2-header-nav > ul > li.has-dropdown:hover > span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.v2-nav-link svg {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.v2-nav-dropdown.open .v2-nav-link svg,
.v2-nav-dropdown:hover .v2-nav-link svg,
.has-dropdown.open > span svg,
.has-dropdown:hover > span svg {
  transform: rotate(180deg);
}

.v2-nav-item.active .v2-nav-link,
.v2-header-nav > ul > li > a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Dropdown Arrow für Menüpunkte mit Untermenü */
.v2-header-nav > ul > li.has-dropdown > span::after {
  content: '';
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transition: transform 0.3s ease;
}

.v2-header-nav > ul > li.has-dropdown:hover > span::after {
  transform: rotate(180deg);
}

.v2-nav-mobile {
  display: none;
}

/* ================================
   DROPDOWN MENU - GLASS STYLE
   ================================ */

.v2-dropdown-menu,
.has-dropdown > ul.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Dropdown Arrow */
.v2-dropdown-menu::before,
.has-dropdown > ul.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.15);
}

.v2-nav-dropdown.open .v2-dropdown-menu,
.v2-nav-dropdown:hover .v2-dropdown-menu,
.has-dropdown.open > ul.dropdown,
.has-dropdown:hover > ul.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.v2-dropdown-menu li,
.has-dropdown > ul.dropdown li {
  margin: 0;
}

.v2-dropdown-menu a,
.has-dropdown > ul.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.v2-dropdown-menu a::before,
.has-dropdown > ul.dropdown a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary-teal);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.v2-dropdown-menu a:hover,
.has-dropdown > ul.dropdown a:hover {
  background: rgba(13, 148, 136, 0.2);
  color: #ffffff;
}

.v2-dropdown-menu a:hover::before,
.has-dropdown > ul.dropdown a:hover::before {
  opacity: 1;
}

/* ================================
   RIGHT SIDE
   ================================ */

.v2-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.v2-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-header-phone:hover {
  color: var(--color-primary-teal);
}

.v2-header-phone svg {
  opacity: 0.8;
}

/* ================================
   CTA CONTAINER - Rechts, abgerundet
   ================================ */

.v2-header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--color-primary-teal), #14B8A6);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.v2-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 148, 136, 0.5);
  color: #ffffff;
}

/* ================================
   MOBILE MENU TOGGLE
   ================================ */

.v2-menu-toggle,
.v2-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.v2-menu-toggle span,
.v2-mobile-toggle span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Scrolled State - Hamburger dunkel */
.v2-header-scrolled .v2-menu-toggle span,
.v2-header-scrolled .v2-mobile-toggle span {
  background: #164E63;
}

/* Active State (X) - immer weiß */
.v2-menu-toggle.active span,
.v2-mobile-toggle.active span,
.v2-header-scrolled .v2-menu-toggle.active span,
.v2-header-scrolled .v2-mobile-toggle.active span {
  background: #ffffff;
}

.v2-menu-toggle.active span:nth-child(1),
.v2-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.v2-menu-toggle.active span:nth-child(2),
.v2-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.v2-menu-toggle.active span:nth-child(3),
.v2-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1200px) {
  .v2-header {
    width: calc(100% - 60px);
  }

  .v2-nav-link,
  .v2-header-nav > ul > li > a,
  .v2-header-nav > ul > li > span {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .v2-header-phone span {
    display: none;
  }
}

@media (max-width: 968px) {
  .v2-header {
    width: calc(100% - 40px);
    top: 15px;
  }

  .v2-header-scrolled {
    top: 10px;
  }

  /* Split-Navigation: Container anpassen */
  .v2-header-logo,
  .v2-header-cta {
    height: 44px;
  }

  .v2-header-logo img {
    height: 28px;
  }

  .v2-header-cta {
    padding: 0 18px;
    font-size: 0.85rem;
  }

  .v2-menu-toggle,
  .v2-mobile-toggle {
    display: flex;
  }

  /* Menü-Container ausblenden auf Mobile */
  .v2-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 0 0 0;
    transition: right 0.3s ease;
    border-radius: 0;
    border: none;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .v2-header-nav.active {
    right: 0;
  }

  .v2-nav-list,
  .v2-header-nav > ul {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .v2-nav-item,
  .v2-header-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .v2-nav-link,
  .v2-header-nav > ul > li > a,
  .v2-header-nav > ul > li > span {
    padding: 16px 12px;
    justify-content: space-between;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .v2-nav-link:hover,
  .v2-header-nav > ul > li > a:hover,
  .v2-header-nav > ul > li > span:hover {
    background: rgba(13, 148, 136, 0.2);
    color: #ffffff;
  }

  /* Mobile: Pfeil-Icon ausblenden (wird durch anderes ersetzt) */
  .v2-header-nav > ul > li.has-dropdown > span::after {
    display: none;
  }

  /* Mobile dropdown arrow indicator */
  .has-dropdown > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .has-dropdown > span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
  }

  .has-dropdown.open > span::after {
    transform: rotate(-135deg);
  }

  .v2-nav-mobile {
    display: block;
  }

  .v2-dropdown-menu,
  .has-dropdown > ul.dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 0 0 24px !important;
    margin: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    min-width: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    list-style: none !important;
  }

  .v2-dropdown-menu::before,
  .has-dropdown > ul.dropdown::before {
    display: none;
  }

  .v2-nav-dropdown.open .v2-dropdown-menu,
  .has-dropdown.open > ul.dropdown {
    max-height: 250px;
  }

  .v2-dropdown-menu li,
  .has-dropdown > ul.dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    margin: 0;
  }

  .v2-dropdown-menu a,
  .has-dropdown > ul.dropdown a {
    display: flex !important;
    align-items: center;
    padding: 14px 12px !important;
    font-size: 0.95rem;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
  }

  .v2-dropdown-menu a::before,
  .has-dropdown > ul.dropdown a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-primary-teal);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .v2-dropdown-menu a:hover,
  .has-dropdown > ul.dropdown a:hover {
    color: #ffffff;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 8px;
  }

  .v2-dropdown-menu a:hover::before,
  .has-dropdown > ul.dropdown a:hover::before {
    opacity: 1;
  }

  .v2-header-right {
    gap: 16px;
  }

  .v2-header-phone {
    display: none;
  }
}

@media (max-width: 480px) {
  .v2-header {
    width: calc(100% - 30px);
    top: 10px;
  }

  .v2-header-scrolled {
    top: 8px;
  }

  /* Split-Navigation: Container anpassen */
  .v2-header-logo,
  .v2-header-cta {
    height: 40px;
  }

  .v2-header-logo {
    padding: 0 15px;
  }

  .v2-header-logo img {
    height: 24px;
  }

  .v2-header-scrolled .v2-header-logo img {
    height: 22px;
  }

  .v2-header-cta {
    padding: 0 14px;
    font-size: 0.8rem;
  }
}
/**
 * Footer Variante 2 - Clean Design
 */

/* Container */
.v2-footer .v2-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1024px) {
  .v2-footer .v2-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .v2-footer .v2-container {
    padding: 0 24px;
  }
}

/* ================================
   TRUST BAR
   ================================ */

.v2-footer-trust {
  background: var(--color-primary-teal);
  padding: 20px 0;
}

.v2-trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.v2-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.95rem;
}

.v2-trust-item svg {
  opacity: 0.9;
}

.v2-trust-item strong {
  font-weight: 700;
}

/* ================================
   MAIN FOOTER
   ================================ */

.v2-footer-main {
  background: #0f172a;
  padding: 60px 0 40px;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.v2-footer-brand p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.v2-footer-brand .v2-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.v2-footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  width: 100%;
}

.v2-footer-partners img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.v2-footer-partners img:hover {
  opacity: 1;
}

.v2-footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.v2-footer-col h4,
.v2-footer-links h4,
.v2-footer-contact h4 {
  color: var(--color-primary-teal);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v2-footer-col ul,
.v2-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-footer-col ul li,
.v2-footer-links ul li {
  margin-bottom: 10px;
}

.v2-footer-col ul a,
.v2-footer-links ul a {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-col ul a:hover,
.v2-footer-links ul a:hover {
  color: var(--color-primary-teal);
}

.v2-footer-col address,
.v2-footer-contact address {
  font-style: normal;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.7;
}

.v2-footer-col address p,
.v2-footer-contact address p {
  margin: 0 0 4px 0;
}

.v2-footer-col address strong,
.v2-footer-contact address strong {
  color: #ffffff;
}

.v2-footer-contact {
  margin-top: 12px !important;
}

.v2-footer-col address a,
.v2-footer-contact address a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-col address a:hover,
.v2-footer-contact address a:hover {
  color: var(--color-primary-teal);
}

/* CTA Column */
.v2-footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.v2-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--color-primary-teal);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.v2-footer-cta-btn:hover {
  background: var(--color-primary-blue);
}

.v2-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-social:hover {
  color: var(--color-primary-teal);
}

/* ================================
   CERTIFICATIONS
   ================================ */

.v2-footer-certs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-cert-item {
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.v2-cert-item:hover {
  opacity: 1;
}

.v2-cert-item img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ================================
   BOTTOM BAR
   ================================ */

.v2-footer-bottom {
  background: #0a0f1a;
  padding: 16px 0;
}

.v2-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v2-footer-bottom-content p {
  color: #ffffff;
  font-size: 0.85rem;
  margin: 0;
}

.v2-footer-bottom-content ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-footer-bottom-content ul a {
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-bottom-content ul a:hover {
  color: var(--color-primary-teal);
}

.v2-footer-legal {
  display: flex;
  gap: 40px;
}

.v2-footer-legal a {
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-legal a:hover {
  color: var(--color-primary-teal);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .v2-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .v2-trust-items {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .v2-footer-trust {
    padding: 16px 0;
  }

  .v2-trust-items {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .v2-footer-main {
    padding: 40px 0 30px;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v2-footer-cta-col {
    align-items: center;
    margin-top: 10px;
  }

  .v2-footer-certs {
    flex-wrap: wrap;
    gap: 24px;
  }

  .v2-cert-item {
    height: 40px;
  }

  .v2-footer-bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .v2-footer-bottom-content ul {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .v2-trust-item {
    font-size: 0.85rem;
  }

  .v2-footer-col h4 {
    font-size: 0.9rem;
  }
}
/**
 * Home Variante 2 - Modernes Layout
 * Original-Farben beibehalten
 */

/* ================================
   CONTAINER
   ================================ */

.v2-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1024px) {
  .v2-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .v2-container {
    padding: 0 24px;
  }
}

/* ================================
   BUTTONS
   ================================ */

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v2-btn-primary {
  background-color: var(--color-primary-teal);
  color: #ffffff;
}

.v2-btn-primary:hover {
  background-color: var(--color-primary-blue);
  color: #ffffff;
}

.v2-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.v2-btn-outline:hover {
  background-color: #ffffff;
  color: var(--color-primary-blue);
}

.v2-btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ================================
   HERO SECTION
   ================================ */

.v2-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.v2-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v2-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 78, 99, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.v2-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
}

.v2-hero-text {
  max-width: 700px;
}

.v2-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 2rem 0;
}

.v2-hero-title span {
  color: var(--color-primary-teal);
}

.v2-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.7;
}

.v2-hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Scroll Indicator */
.v2-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.v2-scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.v2-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-primary-teal), transparent);
  animation: v2ScrollPulse 2s ease-in-out infinite;
}

@keyframes v2ScrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ================================
   INTRO SECTION
   ================================ */

.v2-intro-section {
  padding: 120px 0;
  background: #ffffff;
}

.v2-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.v2-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.v2-intro-divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary-teal);
  margin: 0 auto 2rem;
}

.v2-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

/* ================================
   PROCESS SECTION
   ================================ */

.v2-process-section {
  padding: 100px 0;
  background: #f8fafc;
}

.v2-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.v2-section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  margin: 0.5rem 0 0 0;
}

.v2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v2-process-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ffffff;
}

.v2-process-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v2-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v2-process-card:hover .v2-process-image img {
  transform: scale(1.1);
}

.v2-process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  transition: background 0.4s ease;
}

.v2-process-card:hover .v2-process-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.5) 100%);
}

.v2-process-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.v2-process-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-teal);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.v2-process-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.v2-process-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.v2-process-card:hover .v2-process-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   SERVICES SECTION (Unterseiten)
   ================================ */

.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Alternierendes Layout mit 2x2 Bildraster */
.services-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card-alt {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
}

.service-card-alt:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Alternierende Reihenfolge */
.service-card-alt:nth-child(even) {
  flex-direction: row-reverse;
}

.service-card-alt .service-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-alt .service-description {
  color: #7C9AA0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-alt h3 {
  font-size: 24px;
  font-weight: 700;
  color: #164E63;
  margin-bottom: 16px;
}

.service-card-alt ul {
  list-style: none;
  padding: 0;
}

.service-card-alt li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #2D4A53;
  font-size: 15px;
  line-height: 1.5;
}

.service-card-alt li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #0D9488;
  border-radius: 50%;
}

/* Einzelbild für service-card-alt */
.service-card-alt-image {
  flex: 1;
  min-width: 45%;
  max-width: 50%;
  overflow: hidden;
}

.service-card-alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-alt:hover .service-card-alt-image img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .service-card-alt-image {
    min-width: 100%;
    max-width: 100%;
    min-height: 250px;
  }
}

/* 2x2 Bildraster */
/* 2x2 Bildraster mit asymmetrischer Höhe */
.service-card-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 33.33% 33.33% 33.34%;
  gap: 4px;
  height: 320px;
}

.service-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Bild 1: oben links, 1/3 Höhe */
.service-card-images img:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

/* Bild 2: oben rechts, 2/3 Höhe */
.service-card-images img:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
}

/* Bild 3: unten links, 2/3 Höhe */
.service-card-images img:nth-child(3) {
  grid-area: 2 / 1 / 4 / 2;
}

/* Bild 4: unten rechts, 1/3 Höhe */
.service-card-images img:nth-child(4) {
  grid-area: 3 / 2 / 4 / 3;
}

.service-card-images img:hover {
  filter: brightness(1.1);
}

/* Lightbox für Bildvergrößerung */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: transform 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* Responsive für alternierendes Layout */
@media (max-width: 900px) {
  .service-card-alt,
  .service-card-alt:nth-child(even) {
    flex-direction: column;
  }

  .service-card-images {
    min-height: 280px;
  }

  .service-card-alt .service-card-content {
    padding: 30px;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

/* 4-Bilder Slideshow pro Karte */
.service-card-gallery {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.service-card-gallery img.active {
  opacity: 1;
}

.service-card-gallery img:first-child {
  opacity: 1;
}

/* Slideshow Indicator Dots */
.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slideshow-dot.active {
  background: #ffffff;
}

.slideshow-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.service-card-content {
  padding: 28px;
  flex: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
  color: var(--color-primary-teal);
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 16px 0;
}

.service-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

.service-card-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-primary-teal);
  border-radius: 50%;
}

/* 2-Spalten Layout für größere Cards */
.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card-large .service-card-image {
  height: 220px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card-image {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 50px 0;
  }

  .service-card-content {
    padding: 20px;
  }

  .service-card-content h3 {
    font-size: 1.1rem;
  }
}

/* ================================
   PROCESS TIMELINE (Unterseiten)
   ================================ */

.process-section {
  padding: 80px 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.process-step-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process-step:hover .process-step-image img {
  transform: scale(1.05);
}

.process-step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary-teal);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  z-index: 2;
}

.process-step-content {
  padding: 20px;
}

.process-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 4px 0;
}

.process-step-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--color-primary-teal);
  font-weight: 500;
  margin-bottom: 10px;
}

.process-step-content > p {
  font-size: 0.85rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.process-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.process-details li {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-text-body);
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 4px;
}

/* 4-Spalten Timeline Variante */
.process-timeline-4 {
  grid-template-columns: repeat(4, 1fr);
}

.process-timeline-4 .process-step-image {
  height: 120px;
}

.process-timeline-4 .process-step-content {
  padding: 16px;
}

.process-timeline-4 .process-step-content > p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 50px 0;
  }

  .process-timeline,
  .process-timeline-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step-image {
    height: 180px;
  }
}

/* ================================
   SERVICES SECTION (V2 Homepage)
   ================================ */

.v2-services-section {
  padding: 100px 0;
  background: #ffffff;
}

.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.v2-service-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2-service-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.v2-service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.v2-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v2-service-card:hover .v2-service-image img {
  transform: scale(1.08);
}

.v2-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.v2-service-content {
  padding: 30px;
}

.v2-service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  margin: 0 0 12px 0;
}

.v2-service-content p {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.v2-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-teal);
  transition: all 0.2s ease;
}

.v2-service-card:hover .v2-service-link {
  color: var(--color-primary-blue);
  gap: 12px;
}

/* ================================
   CTA SECTION
   ================================ */

.v2-cta-section {
  position: relative;
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
}

.v2-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v2-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 78, 99, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.v2-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.v2-cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.v2-cta-content p {
  font-size: 1.5rem;
  color: var(--color-primary-teal);
  margin: 0 0 2.5rem 0;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1200px) {
  .v2-process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .v2-process-content {
    padding: 18px;
  }

  .v2-process-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .v2-hero-title {
    font-size: 2.75rem;
  }

  .v2-hero-content {
    padding: 0 40px;
  }

  .v2-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-services-grid > *:last-child {
    grid-column: span 2;
  }

  .v2-services-grid > *:last-child .v2-service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .v2-hero {
    min-height: 600px;
  }

  .v2-hero-content {
    padding: 0 24px;
  }

  .v2-hero-title {
    font-size: 2rem;
  }

  .v2-hero-description {
    font-size: 1.1rem;
  }

  .v2-hero-buttons {
    flex-direction: column;
  }

  .v2-btn {
    width: 100%;
    max-width: 280px;
  }

  .v2-scroll-indicator {
    display: none;
  }

  .v2-intro-section {
    padding: 80px 0;
  }

  .v2-section-title {
    font-size: 2rem;
  }

  .v2-process-section,
  .v2-services-section {
    padding: 70px 0;
  }

  .v2-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .v2-process-card {
    aspect-ratio: 4/3;
  }

  .v2-services-grid {
    grid-template-columns: 1fr;
  }

  .v2-services-grid > *:last-child {
    grid-column: span 1;
  }

  .v2-cta-section {
    padding: 100px 0;
  }

  .v2-cta-content h2 {
    font-size: 2rem;
  }

  .v2-cta-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .v2-hero {
    min-height: 550px;
  }

  .v2-hero-title {
    font-size: 1.75rem;
  }

  .v2-hero-description {
    font-size: 1rem;
  }

  .v2-section-title {
    font-size: 1.6rem;
  }

  .v2-intro-text {
    font-size: 1rem;
  }

  .v2-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .v2-process-content {
    padding: 14px;
  }

  .v2-process-content h3 {
    font-size: 0.95rem;
  }

  .v2-process-number {
    font-size: 0.7rem;
  }

  .v2-service-content {
    padding: 20px;
  }

  .v2-service-content h3 {
    font-size: 1.25rem;
  }
}
/**
 * Content Page Styles für alle Unterseiten
 * Erstellt: 2025-12-19
 * Erstellt für: Sascha Matern
 */

/* Hero Section */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-blue), var(--color-blue-medium));
  padding: var(--spacing-xxl) 0;
  text-align: center;
  color: var(--color-white);
  min-height: 350px;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 78, 99, 0.55), rgba(12, 53, 71, 0.65));
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats/Fakten Section */
.stats-section {
  background: linear-gradient(135deg, var(--color-petrol-dark) 0%, var(--color-petrol-medium) 100%);
  padding: 30px 0;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-grid.stats-grid-3 {
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 60px;
}

.stat-item {
  padding: 20px;
  text-align: center;
}

.stat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--color-primary-teal);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-teal-light);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* Content Section */
.page-content-section {
  padding: var(--spacing-xxl) 0;
}

.intro-paragraph {
  font-size: var(--font-size-large);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
}

.page-content-section h2 {
  font-size: 2.5rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-blue);
}

.page-content-section h3 {
  font-size: 1.75rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary-blue);
}

.page-content-section ul {
  margin-bottom: var(--spacing-md);
  padding-left: 2rem;
}

.page-content-section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Service Section */
.service-section {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--color-primary-blue);
}

.service-section h3 {
  margin-top: 0;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-medium));
  padding: var(--spacing-lg);
  border-radius: var(--radius-medium);
  margin: var(--spacing-lg) 0;
  border-left: 6px solid var(--color-primary-teal);
}

.highlight-box h2 {
  margin-top: 0;
  color: var(--color-primary-teal);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-medium);
  margin-top: var(--spacing-xl);
}

.cta-section h3 {
  margin-top: 0;
  color: var(--color-primary-blue);
}

.cta-section p {
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-md);
}

/* Number Sections */
.numbered-section {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  border-left: 4px solid var(--color-primary-blue);
  background-color: var(--color-white);
}

.numbered-section h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary-teal), var(--color-teal-light));
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.25rem;
}

/* Contact Info Box */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-info-grid.contact-info-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.contact-info-box {
  background-color: var(--color-bg-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-medium);
}

.contact-info-box h3 {
  color: var(--color-primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* NDA Section - wie Branchen auf Zielgruppen */
.nda-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.nda-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nda-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border: 2px solid var(--color-primary-teal);
  border-radius: 50%;
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

.nda-text {
  max-width: 500px;
}

.nda-text h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.nda-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.nda-section .btn-primary {
  background: var(--color-primary-teal);
  padding: 14px 30px;
  flex-shrink: 0;
}

.nda-section .btn-primary:hover {
  background: var(--color-teal-dark);
}

@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid.contact-info-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nda-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-grid.contact-info-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-person {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-gray-medium);
}

.contact-person:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-person h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary-blue);
}

.contact-person p {
  margin: 0.25rem 0;
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: var(--spacing-xl) 0;
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1.1rem;
  }

  .page-content-section h2 {
    font-size: 2rem;
  }

  .page-content-section h3 {
    font-size: 1.5rem;
  }

  .intro-paragraph {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin-top: 0;
}

/* Contact Form Styles */
.contact-form {
  background-color: var(--color-bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-medium);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-gray-medium);
  border-radius: var(--radius-small);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-dark);
  opacity: 0.7;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--color-primary-blue);
  text-decoration: underline;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-small);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: var(--font-size-large);
}

/* Map Section */
.map-section {
  margin-top: var(--spacing-xl);
}

.map-section h2 {
  margin-bottom: var(--spacing-md);
}

.map-container {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container iframe {
  display: block;
}

/* Responsive Contact Grid */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-info-wrapper {
    order: -1;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: var(--spacing-md);
  }
}
/**
 * Kontakt Seite - Spezifische Styles
 * Erstellt für: Sascha Matern
 */

/* Ansprechpartner Sektion */
.ansprechpartner-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-light);
}

.section-title {
  text-align: center;
  color: var(--color-primary-blue);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

.ansprechpartner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.ansprechpartner-card {
  background: var(--color-white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: box-shadow var(--transition-medium);
}

.ansprechpartner-card:hover {
  box-shadow: var(--shadow-large);
}

.ansprechpartner-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.ansprechpartner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.ansprechpartner-image .img-default {
  position: relative;
  z-index: 1;
}

.ansprechpartner-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.ansprechpartner-card:hover .ansprechpartner-image .img-default {
  opacity: 0;
}

.ansprechpartner-card:hover .ansprechpartner-image .img-hover {
  opacity: 1;
  transform: scale(1.02);
}

.ansprechpartner-info {
  padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.ansprechpartner-rolle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary-teal), var(--color-teal-light));
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-small);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ansprechpartner-info h3 {
  margin: 0.5rem 0;
  color: var(--color-text);
  font-size: 1.25rem;
}

.ansprechpartner-info p {
  color: var(--color-gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
  min-height: 40px;
}

.ansprechpartner-kontakt {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.kontakt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: var(--color-primary-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-small);
  background-color: var(--color-bg-light);
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 100px;
  white-space: nowrap;
}

.kontakt-link:hover {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
}

.kontakt-link svg {
  flex-shrink: 0;
}

/* Anfahrt Sektion */
.anfahrt-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.firma-bild-wrapper {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.firma-bild-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.firma-bild-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--color-white);
  padding: 3rem 1.5rem 1.5rem;
}

.firma-bild-caption h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
}

.firma-bild-caption p {
  margin: 0;
  opacity: 0.9;
  font-size: var(--font-size-small);
}

.map-wrapper {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-wrapper .map-container {
  height: 100%;
  min-height: 400px;
}

.map-wrapper .map-container iframe {
  border-radius: 0;
}

/* Kompakte Highlight Box */
.highlight-box.compact {
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.highlight-box.compact h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.highlight-box.compact p {
  margin-bottom: 0;
  font-size: var(--font-size-small);
}

/* Schnellkontakt Banner */
.schnellkontakt-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 2rem 0;
}

.schnellkontakt-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.schnellkontakt-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.schnellkontakt-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-base);
  font-weight: 500;
}

.schnellkontakt-telefon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 900;
  transition: color var(--transition-fast);
}

.schnellkontakt-telefon svg {
  color: var(--color-primary-teal);
}

.schnellkontakt-telefon:hover {
  color: var(--color-primary-teal);
}

.schnellkontakt-zeiten {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-base);
}

.schnellkontakt-zeiten svg {
  color: var(--color-primary-teal);
}

/* Ansprechpartner Details */
.ansprechpartner-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-bg-light);
}

.detail-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-dark);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.detail-link:hover {
  color: var(--color-primary-blue);
}

.detail-link svg {
  flex-shrink: 0;
  color: var(--color-primary-blue);
}

/* vCard Button */
.vcard-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.vcard-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* Response Time Hint */
.response-time-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-small);
  color: var(--color-gray-dark);
  font-size: var(--font-size-small);
}

.response-time-hint svg {
  color: var(--color-primary-blue);
  flex-shrink: 0;
}

/* Anfahrtsbeschreibung */
/* Anfahrt Cards - wie Zielgruppen-Karten */
.anfahrt-cards {
  margin-top: var(--spacing-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.anfahrt-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anfahrt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.anfahrt-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.anfahrt-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(4, 107, 210, 0.1) 100%);
  border-radius: 12px;
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

.anfahrt-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  margin: 0;
}

.anfahrt-card p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.anfahrt-card p a {
  color: var(--color-primary-teal);
  font-weight: 600;
}

.anfahrt-card p a:hover {
  color: var(--color-primary-blue);
}

/* Kontakt Page spezifisch */
.kontakt-page .page-content-section {
  background-color: var(--color-bg-light);
}

/* Responsive */
@media (max-width: 1200px) {
  .ansprechpartner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .anfahrt-grid {
    grid-template-columns: 1fr;
  }

  .firma-bild-wrapper img {
    min-height: 300px;
  }

  .map-wrapper .map-container {
    min-height: 350px;
  }
}

@media (max-width: 968px) {
  .anfahrt-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ansprechpartner-grid {
    grid-template-columns: 1fr;
  }

  .ansprechpartner-image {
    height: 280px;
  }

  .ansprechpartner-kontakt {
    flex-direction: row;
  }

  .kontakt-link {
    justify-content: center;
    flex: 1;
    padding: 0.75rem 0.5rem;
  }

  .schnellkontakt-content {
    flex-direction: column;
    text-align: center;
  }

  .schnellkontakt-info {
    flex-direction: column;
  }

  .schnellkontakt-telefon {
    font-size: 1.5rem;
  }
}
/**
 * Back to Top Button Styles
 */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-teal), var(--color-teal-light));
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  z-index: 998;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ================================
   Über uns - Neue Sektionen
   ================================ */

/* Feature Section */
.feature-section {
  padding: 80px 0;
  background: #f8fafc;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.feature-content h2 strong {
  color: var(--color-primary-teal);
}

.feature-content p {
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  color: var(--color-text-dark);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-list li svg {
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

/* Feature Badge auf Bildern */
.feature-image {
  position: relative;
  max-width: 450px;
  margin-left: auto;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image {
    max-width: 100%;
    margin: 0 auto;
  }
}

.feature-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-primary-teal);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.feature-badge .badge-text {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* USP Section - Warum RLS Wacon */
.usp-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.usp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.usp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.usp-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 12px;
  margin-bottom: 24px;
  color: var(--color-primary-teal);
}

.usp-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.usp-card p {
  color: var(--color-text-body);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .usp-grid,
  .usp-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Zertifizierungen & Mitgliedschaften */
.certifications-section {
  padding: 80px 0;
  background: #ffffff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.cert-item {
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.cert-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--color-primary-teal);
}

.cert-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.cert-item p {
  color: var(--color-text-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Unsere Werte - Dunkler Hintergrund */
.values-section-dark {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.values-section-dark .section-title {
  color: #ffffff;
}

.values-section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.2);
  border: 2px solid var(--color-primary-teal);
  border-radius: 50%;
  color: var(--color-primary-teal);
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.value-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .feature-badge {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
  }

  .feature-badge .badge-number {
    font-size: 1.5rem;
  }
}

/* ================================
   Zielgruppen Page - Styles
   ================================ */

/* Intro Content - Zentriert */
.intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content .intro-paragraph {
  text-align: center;
}

/* Flexibility Badges */
.flexibility-badges {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.flexibility-badge {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.flexibility-badge strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-primary-teal);
  margin-bottom: 4px;
}

.flexibility-badge span {
  font-size: 0.9rem;
  color: var(--color-text-body);
}

/* Zielgruppen Cards Grid */
.zielgruppen-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Individual Card */
.zielgruppen-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zielgruppen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Card Header mit farbigem Hintergrund */
.zielgruppen-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  margin: 0;
}

.zielgruppen-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Card Body */
.zielgruppen-card > p,
.zielgruppen-card > .zielgruppen-features {
  padding: 0 28px;
}

.zielgruppen-card > p {
  padding-top: 24px;
}

.zielgruppen-card > .zielgruppen-features {
  padding-bottom: 28px;
}

/* Icon Styles - Dezente Farben */
.zielgruppen-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Start-ups - Dezentes Teal/Grün */
.zielgruppen-icon.startup {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.zielgruppen-card:has(.zielgruppen-icon.startup) .zielgruppen-card-header {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* Pharma/Defence - Dezentes Amber */
.zielgruppen-icon.pharma {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.zielgruppen-card:has(.zielgruppen-icon.pharma) .zielgruppen-card-header {
  background: linear-gradient(135deg, #b4823c 0%, #d4a259 100%);
}

/* Made in Germany - Petrol/Blau */
.zielgruppen-icon.germany {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.zielgruppen-card:has(.zielgruppen-icon.germany) .zielgruppen-card-header {
  background: linear-gradient(135deg, #164E63 0%, #1E6E85 100%);
}

/* Industrie - Blau */
.zielgruppen-icon.industry {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.zielgruppen-card:has(.zielgruppen-icon.industry) .zielgruppen-card-header {
  background: linear-gradient(135deg, #046bd2 0%, #3B8EE0 100%);
}

/* Card Description */
.zielgruppen-card > p {
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Features List */
.zielgruppen-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zielgruppen-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  color: var(--color-text-body);
  line-height: 1.5;
}

.zielgruppen-features li:first-child {
  border-top: none;
}

.zielgruppen-features li svg {
  color: var(--color-primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.zielgruppen-features li strong {
  color: var(--color-text-dark);
}

/* Compare Section */
.compare-section {
  padding: 80px 0;
  background: #f8fafc;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.compare-column {
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.compare-column h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.compare-column.startup {
  background: rgba(13, 148, 136, 0.12);
}

.compare-column.startup h3 {
  color: #0d9488;
}

.compare-column.enterprise {
  background: rgba(4, 107, 210, 0.12);
}

.compare-column.enterprise h3 {
  color: #046bd2;
}

.compare-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-column li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-text-body);
  border-bottom: 1px solid #f1f5f9;
}

.compare-column li:last-child {
  border-bottom: none;
}

.compare-column li svg {
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

/* Industries/Branchen Section */
.industries-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.industries-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.industries-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industries-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.industry-tag svg {
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

.industry-tag:hover {
  background: rgba(13, 148, 136, 0.3);
}

/* Responsive Zielgruppen */
@media (max-width: 1024px) {
  .zielgruppen-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .flexibility-badges {
    flex-direction: column;
    gap: 12px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .zielgruppen-card {
    padding: 24px;
  }

  .compare-column {
    padding: 28px;
  }

  .industries-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================
   Referenzen Page - Styles
   ================================ */

/* Featured Projects Grid */
.referenzen-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.referenzen-featured-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referenzen-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.referenzen-featured-image {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referenzen-featured-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.referenzen-featured-card:hover .referenzen-featured-image img {
  transform: scale(1.05);
}

.referenzen-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.referenzen-featured-content {
  padding: 24px;
}

.referenzen-featured-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.referenzen-featured-content p {
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Showcase Section */
.showcase-section {
  padding: 80px 0;
  background: #f8fafc;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.showcase-card-image {
  position: relative;
  min-height: 200px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.showcase-card-image img:hover {
  transform: scale(1.03);
}

.showcase-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #046bd2 0%, #3B8EE0 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.showcase-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.showcase-card-content > p {
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.showcase-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--color-text-body);
  font-size: 0.95rem;
}

.showcase-highlights li svg {
  color: var(--color-primary-teal);
  flex-shrink: 0;
}

/* Branchen Section */
.branchen-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.branchen-section .section-title {
  color: #ffffff;
}

.branchen-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.branchen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.branchen-item {
  text-align: center;
}

.branchen-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border: 2px solid var(--color-primary-teal);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--color-primary-teal);
  transition: background 0.3s ease, transform 0.3s ease;
}

.branchen-item:hover .branchen-icon {
  background: rgba(13, 148, 136, 0.3);
  transform: scale(1.1);
}

.branchen-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(4, 107, 210, 0.08) 100%);
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-content blockquote {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 30px;
  position: relative;
}

.quote-content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--color-primary-teal);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.author-role {
  font-size: 0.95rem;
  color: var(--color-text-body);
}

/* Responsive Referenzen */
@media (max-width: 1024px) {
  .referenzen-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .branchen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .referenzen-featured-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card-image {
    min-height: 200px;
  }

  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quote-content blockquote {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-primary-teal);
}

/* ================================
   COOKIE BANNER
   ================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 40px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-content h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-banner-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-content a {
  color: var(--color-primary-teal);
  text-decoration: underline;
}

.cookie-banner-content a:hover {
  color: #14B8A6;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-primary-teal), #14B8A6);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

.cookie-btn-essential {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-essential:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
}

.cookie-btn-settings:hover {
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-settings-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
  padding: 24px 30px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-settings-header h3 {
  color: var(--color-primary-petrol);
  font-size: 1.3rem;
  margin: 0;
}

.cookie-settings-body {
  padding: 24px 30px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category-header h4 {
  color: var(--color-primary-petrol);
  font-size: 1rem;
  margin: 0;
}

.cookie-category p {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e1;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-primary-teal);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-settings-footer {
  padding: 20px 30px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-settings-footer .cookie-btn-accept {
  padding: 10px 24px;
}

.cookie-settings-footer .cookie-btn-essential {
  background: #f1f5f9;
  color: var(--color-primary-petrol);
  border: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 140px;
  }

  .cookie-btn-settings {
    width: 100%;
  }
}
