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

:root {
  color-scheme: light dark;
  /* International modern color palette */
  --brand-900: #0a1929;
  --brand-800: #132f4c;
  --brand-700: #1e4976;
  --brand-600: #2563eb;
  --brand-500: #3b82f6;
  --brand-400: #60a5fa;
  --brand-50: #eff6ff;
  --accent-500: #10b981;
  --accent-600: #059669;
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-200: #e5e7eb;
  --neutral-100: #f9fafb;
  --white: #ffffff;
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --border-radius-xl: 32px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 12px;
  --border-radius-xs: 8px;
  --spacing-section: 120px;
  --spacing-xl: 64px;
  --spacing-large: 48px;
  --spacing-medium: 32px;
  --spacing-small: 20px;
  --spacing-xs: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-100);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-200);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--neutral-200);
  padding: 8px 0;
}

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

.header-top-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.brand--top {
  display: flex;
  align-items: center;
}

.brand-logo--top {
  height: 32px;
  width: auto;
  max-width: 180px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 300px;
  width: 100%;
}

.search-box input[type="search"] {
  width: 100%;
  padding: 6px 36px 6px 12px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-xs);
  font-size: 0.875rem;
  font-family: inherit;
  background: #fff;
  transition: all 0.2s ease;
}

.search-box input[type="search"]:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-button {
  position: absolute;
  right: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  transition: color 0.2s ease;
}

.search-button:hover {
  color: var(--brand-600);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--brand-900);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-900);
  color: #fff;
  font-size: 0.95rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1) saturate(1.1);
}

.brand-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05) saturate(1.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
  display: flex;
  gap: 1px;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-700);
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--border-radius-xs);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--neutral-700);
  position: relative;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--neutral-100);
  color: var(--brand-600);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand-600);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menü - Kompakt und professionell */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: '▼';
  font-size: 0.65rem;
  margin-left: 4px;
  border: none;
  position: static;
  transform: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.nav-dropdown:hover > a {
  color: var(--brand-600);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid var(--neutral-200);
  padding: 6px 0;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Mega Menu für Zielgruppen */
.nav-dropdown.mega-menu .nav-dropdown-menu {
  min-width: 600px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nav-dropdown.mega-menu .nav-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-dropdown.mega-menu .nav-dropdown-group-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--neutral-900);
  padding: 8px 12px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--brand-100);
}

.nav-dropdown.mega-menu .nav-dropdown-group a {
  padding: 8px 12px;
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item {
  padding-left: 24px;
  font-size: 0.8125rem;
  color: var(--neutral-600);
  position: relative;
}

.nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item::before {
  content: '→';
  position: absolute;
  left: 12px;
  opacity: 0.5;
  font-size: 0.75rem;
}

.nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item:hover {
  color: var(--brand-600);
  padding-left: 28px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--neutral-700);
  font-size: 0.875rem;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 4px;
  border-radius: var(--border-radius-xs);
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--neutral-100) 100%);
  color: var(--brand-600);
  transform: translateX(4px);
  padding-left: 24px;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand-600);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-dropdown-menu a:hover::before {
  opacity: 1;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 16px;
  border-left: 1px solid var(--neutral-200);
}

.lang-switcher a {
  padding: 6px 10px;
  border-radius: var(--border-radius-xs);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--neutral-500);
  transition: all 0.2s ease;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  background: var(--brand-600);
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-900);
  color: #fff;
  transition: all 0.2s ease;
  padding: 6px;
}

.social-link:hover {
  background: var(--brand-600);
  transform: scale(1.1);
}

.social-link svg {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.button:hover {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button--secondary {
  background: #e8f0f9;
  color: var(--brand-900);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  background: #dbe7f5;
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  border: 2px solid var(--brand-900);
  box-shadow: none;
}

.button--ghost:hover {
  background: var(--brand-900);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--brand-900) !important;
  box-shadow: var(--shadow-sm);
}

.button--light:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  color: var(--brand-900) !important;
}

.hero {
  padding: 140px 0 120px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero mit vollständigem Hintergrundbild */
.hero--full-image {
  padding: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: none;
}

.hero--full-image::before {
  display: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 20, 32, 0.7) 0%, rgba(15, 42, 69, 0.6) 50%, rgba(10, 20, 32, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 100px 0;
}

.hero-text {
  color: #fff;
  position: relative;
}

.hero-text h1 {
  margin-bottom: 12px;
}

.hero-text .hero-subtitle {
  font-weight: 500;
  opacity: 0.95;
}

.hero--full-image h1 {
  background: rgba(255, 255, 255, 0.95);
  color: var(--neutral-900);
}

.hero--full-image .lead,
.hero--full-image .hero-subtitle {
  background: rgba(255, 255, 255, 0.9);
  color: var(--neutral-800);
}

.hero--full-image .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero--full-image .hero-media-card {
  position: relative;
  background: rgba(15, 42, 69, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-medium);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand-500);
  font-weight: 600;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 16px 0 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
  position: relative;
}

.hero h1,
.page-hero h1 {
  display: block;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


.hero .lead,
.page-hero .lead,
.hero-subtitle,
.page-hero p:not(.form-note) {
  display: block;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}


h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 16px;
  color: var(--neutral-900);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  margin: 0 0 14px;
  color: var(--neutral-900);
  font-weight: 600;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--neutral-700);
  margin: 6px 0 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--neutral-700);
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.hero--full-image .hero-actions {
  position: relative;
  margin: 24px 0 32px;
  width: 100%;
}

.hero--full-image .hero-content {
  position: relative;
}

.hero--full-image .hero-text {
  position: relative;
}

.hero--full-image .hero-subtitle {
  position: relative;
  margin-top: 0;
}



.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust div {
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(15, 42, 69, 0.08);
}

.trust strong {
  display: block;
  font-size: 1rem;
}

.hero-card {
  background: var(--brand-900);
  color: #fff;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-card h2 {
  margin-top: 0;
  color: #fff;
  font-size: 1.6rem;
}

.hero-card ul {
  padding-left: 24px;
  margin: 0 0 0;
  line-height: 1.8;
}

.hero-card li {
  margin-bottom: 12px;
}

.hero-media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(15, 42, 69, 0.98);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.hero-media-card h2 {
  margin-top: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-media-card p,
.hero-media-card li {
  color: #f1f5f9;
}

.hero-media-card ul {
  margin: 0;
  padding-left: 24px;
  line-height: 1.8;
}

.hero-media-card li {
  margin-bottom: 10px;
}

.section {
  padding: var(--spacing-section) 0;
  background: var(--neutral-100);
  color: var(--neutral-900);
}

.section--alt {
  background: #ffffff;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-900);
}

.section h2,
.section--alt h2 {
  color: var(--neutral-900);
}

.section p,
.section--alt p {
  color: var(--neutral-700);
}

.section--cta {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-800) 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section--cta * {
  color: #fff;
}

.section--cta .button--light {
  background: #fff;
  color: var(--brand-900);
}

.section--cta h2 {
  color: #fff;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.9);
}

.section--image {
  position: relative;
  color: #fff;
  background: url("assets/hero.jpg") center/cover no-repeat;
}

.section--image * {
  color: inherit;
}

.section--image .button,
.section--image .button--light {
  color: var(--brand-900);
}

.section--image a:not(.button):not(.button--light) {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 32, 0.85);
}

.image-overlay {
  position: relative;
  max-width: 840px;
  z-index: 1;
}

.image-overlay h2 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.image-overlay p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.section-lead {
  max-width: 720px;
  color: var(--neutral-600);
  font-size: 1rem;
  margin-bottom: var(--spacing-medium);
  font-weight: 500;
}

.section-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.media-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-medium);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.media-card img {
  border-radius: var(--border-radius-sm);
}

.highlight {
  background: none;
  padding: 0;
  border-radius: 0;
  border-left: none;
  margin: var(--spacing-medium) 0;
  font-weight: 500;
  color: var(--neutral-800);
}

.stat-grid {
  display: grid;
  gap: var(--spacing-medium);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--spacing-large);
}

.stat-card {
  background: #ffffff;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.stat-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-400);
}

.stat-value {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-900);
  margin-bottom: 10px;
  line-height: 1.2;
}

.compare-grid {
  display: grid;
  gap: var(--spacing-medium);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: var(--spacing-large);
}

.compare-card {
  background: #ffffff;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--neutral-200);
  transition: all 0.3s ease;
}

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

.compare-card--accent {
  background: linear-gradient(135deg, #0a1929 0%, #132f4c 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.compare-card--accent h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.compare-card--accent p,
.compare-card--accent li {
  color: rgba(255, 255, 255, 0.95) !important;
}

.statement {
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--neutral-700);
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
}

.panel.panel-dark,
.panel-dark {
  background: linear-gradient(135deg, #0a1929 0%, #132f4c 100%) !important;
  color: #fff !important;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.panel.panel-dark h2,
.panel.panel-dark h3,
.panel-dark h2,
.panel-dark h3 {
  color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.panel.panel-dark p,
.panel-dark p {
  color: rgba(255, 255, 255, 0.95) !important;
}

.panel.panel-dark ul,
.panel.panel-dark li,
.panel-dark ul,
.panel-dark li {
  color: rgba(255, 255, 255, 0.95) !important;
}

.panel.panel-dark .bullet-list,
.panel-dark .bullet-list {
  color: rgba(255, 255, 255, 0.95) !important;
}

.panel.panel-dark .bullet-list li,
.panel-dark .bullet-list li {
  color: rgba(255, 255, 255, 0.95) !important;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f2a45;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.panel {
  background: #fff;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-medium);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-400);
}

.panel {
  background: #f5f8fc;
  border: 1px solid var(--neutral-200);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.stats {
  display: grid;
  gap: 18px;
}

.stats div {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 42, 69, 0.08);
}

.stats strong {
  font-size: 1.6rem;
  display: block;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-medium);
  flex-wrap: wrap;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  margin: 0;
  opacity: 0.9;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.contact-details p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--neutral-900);
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--neutral-400);
}

.form-note {
  font-size: 0.8rem;
  color: #5b6c7d;
  margin: 0;
}

.site-footer {
  background: #0b1b2b;
  color: #d7e2ee;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.footer-grid h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #d7e2ee;
}

.footer-logo {
  max-width: 240px;
  filter: brightness(1) contrast(1) saturate(1.1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  filter: brightness(1.1) contrast(1.05) saturate(1.2);
  transform: scale(1.02);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
}

.page-hero {
  background: #2d3748;
  color: #fff;
  padding: 90px 0;
}

.page-hero * {
  color: inherit;
}

.page-hero .button {
  color: #fff !important;
}

.page-hero .button--light {
  color: var(--brand-900) !important;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: none;
  box-shadow: none;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.page-hero--light {
  background: linear-gradient(135deg, #ffffff 0%, #eef4fb 100%);
  color: var(--neutral-900) !important;
}

.page-hero--light * {
  color: var(--neutral-900) !important;
}

.page-hero--light h1 {
  color: var(--neutral-900) !important;
  background: none;
  box-shadow: none;
  text-shadow: none;
}

.page-hero--light h2,
.page-hero--light h3 {
  color: var(--neutral-900) !important;
}

.page-hero--light p,
.page-hero--light .lead {
  color: var(--neutral-700) !important;
  text-shadow: none;
}

.page-hero--light .button {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #fff !important;
}

.page-hero--light .button--secondary {
  background: #e8f0f9;
  color: var(--brand-900) !important;
}

.page-hero--image {
  position: relative;
  background: url("assets/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.page-hero--image * {
  color: inherit;
}

.page-hero--image .button,
.page-hero--image .button--light {
  color: var(--brand-900);
}

.page-hero--image a:not(.button):not(.button--light) {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 32, 0.82);
}

.page-hero--image .page-hero-inner {
  position: relative;
}

.page-hero--image h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.page-hero--image p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.card--accent {
  background: #0f2a45;
  color: #fff;
}

.card--accent h2,
.card--accent h3,
.card--accent p {
  color: #fff !important;
}

.bullet-list {
  padding-left: 20px;
  margin: 12px 0 0;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--neutral-200);
}

.section-content h2:first-child {
  margin-top: 0;
}

.section-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.section-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-content ul {
  margin-bottom: 24px;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--brand-600);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-medium);
  z-index: 10000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

.cookie-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-medium);
  flex-wrap: wrap;
}

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

.cookie-banner-text p {
  margin: 0;
  color: var(--neutral-700);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--brand-600);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--brand-700);
}

.cookie-banner-actions {
  display: flex;
  gap: var(--spacing-small);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.cookie-btn--accept {
  background: var(--brand-600);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
}

.cookie-btn--reject {
  background: var(--neutral-200);
  color: var(--neutral-700);
}

.cookie-btn--reject:hover {
  background: var(--neutral-300);
}

.cookie-btn--settings {
  background: transparent;
  color: var(--brand-600);
  text-decoration: underline;
  padding: 12px 16px;
}

.cookie-btn--settings:hover {
  color: var(--brand-700);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    max-height: 100vh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 60px 0 0 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .nav[aria-expanded="true"] {
    right: 0;
  }

  .nav a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--neutral-200);
    border-radius: 0;
    width: 100%;
    display: block;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .nav a::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown > a {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 12px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--neutral-50);
    border-radius: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 10px 16px 10px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  /* Mega Menu auf Mobile */
  .nav-dropdown.mega-menu .nav-dropdown-menu {
    min-width: auto;
    max-width: 100%;
    padding: 12px 0;
    display: block;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown.mega-menu .nav-dropdown-group {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .nav-dropdown.mega-menu .nav-dropdown-group-title {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--neutral-200);
    background: var(--neutral-100);
    color: var(--neutral-900);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown.mega-menu .nav-dropdown-group a {
    padding: 10px 16px 10px 24px;
    font-size: 0.875rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    border-bottom: 1px solid var(--neutral-200);
  }

  .nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item {
    padding-left: 32px;
    font-size: 0.8rem;
    color: var(--neutral-600);
  }

  .nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item::before {
    left: 20px;
    font-size: 0.7rem;
  }

  .header-top-bar {
    display: none;
  }
  
  .header-top-inner {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .header-top-left {
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }
  
  .brand-logo--top {
    height: 28px;
    max-width: 100%;
  }
  
  .header-top-right {
    width: 100%;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  .search-box {
    max-width: 100%;
    flex: 1;
    min-width: 0;
  }
  
  .search-box input[type="search"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .lang-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-200);
    border-left: none;
    padding-left: 0;
  }

  .social-link {
    margin-top: 10px;
  }

  /* Overlay when menu is open */
  .nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav[aria-expanded="true"]::before {
    opacity: 1;
    pointer-events: all;
  }
  
  /* Verhindere Body-Scroll wenn Menu offen ist */
  body.menu-open {
    overflow: hidden;
    max-width: 100vw;
  }

  #cookie-banner {
    padding: var(--spacing-small);
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Form Styles */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: var(--spacing-large);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-section {
  margin-bottom: var(--spacing-large);
  padding-bottom: var(--spacing-large);
  border-bottom: 1px solid var(--neutral-200);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-medium);
  color: var(--neutral-900);
  font-size: 1.5rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-medium);
}

.form-group {
  margin-bottom: var(--spacing-medium);
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--neutral-900);
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
  color: var(--neutral-900);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  gap: var(--spacing-medium);
  flex-wrap: wrap;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--brand-600);
}

.statement-table {
  overflow-x: auto;
  margin-top: var(--spacing-medium);
}

.statement-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.statement-table th {
  background: var(--brand-900);
  color: #fff;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.statement-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: middle;
}

.statement-table tr:hover {
  background: var(--neutral-100);
}

.statement-table td:first-child {
  font-weight: 500;
  color: var(--neutral-900);
}

.statement-table td:not(:first-child) {
  text-align: center;
}

.statement-table input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--brand-600);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-small);
  margin-top: var(--spacing-medium);
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.price-option:hover {
  border-color: var(--brand-500);
  background: var(--neutral-100);
}

.price-option input[type="radio"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand-600);
}

.price-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--brand-600);
}

.price-option:has(input[type="radio"]:checked) {
  border-color: var(--brand-600);
  background: rgba(37, 99, 235, 0.05);
}

.form-actions {
  margin-top: var(--spacing-large);
  padding-top: var(--spacing-large);
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}

.form-actions button {
  min-width: 200px;
}

.form-note {
  margin-top: var(--spacing-small);
  font-size: 0.875rem;
  color: var(--neutral-600);
}

@media (max-width: 768px) {
  .contact-form {
    padding: var(--spacing-medium);
    margin: 0 10px;
    max-width: calc(100% - 20px);
    box-sizing: border-box;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea,
  .form-group select,
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* Verhindert Zoom auf iOS */
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-section {
    margin-bottom: var(--spacing-medium);
    padding-bottom: var(--spacing-medium);
  }
  
  .statement-table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .statement-table table {
    min-width: 100%;
    width: 100%;
  }
  
  .statement-table th,
  .statement-table td {
    padding: 10px 6px;
    font-size: 0.75rem;
  }
  
  .statement-table th:first-child,
  .statement-table td:first-child {
    max-width: 150px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  
  .price-options {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }
  
  .price-option {
    width: 100%;
    max-width: 100%;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-small);
  }
  
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-medium);
  }
}

.bullet-list li {
  margin: 6px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7f0fb;
  color: var(--brand-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-illustration {
  display: grid;
  gap: 12px;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.page-hero-inner {
  max-width: 820px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-info {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.contact-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-700);
  margin-bottom: 8px;
}

.contact-item p {
  margin: 0;
  color: var(--neutral-700);
  line-height: 1.6;
}

.contact-item a {
  color: var(--brand-600);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

.contact-form select,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-xs);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--neutral-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(15, 42, 69, 0.08);
}

.accordion summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  color: #0f2a45;
}

.accordion details[open] summary::after {
  content: "–";
}

.cta-row {
  margin-top: 24px;
}

.footer-inner {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Removed conflicting .nav { display: none; } rule - mobile menu now handled by earlier media query */

  .hero {
    padding: 80px 0 60px;
  }

  .hero--full-image {
    min-height: 70vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 0;
  }

  .section {
    padding: 60px 0;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .brand-logo {
    width: 140px;
  }

  .hero-media img {
    height: 280px;
  }

  .hero-media-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: var(--spacing-small);
  }


  /* iPhone und sehr kleine Bildschirme */
  @media (max-width: 480px) {
    .container {
      padding: 0 12px;
      width: 100%;
      max-width: 100%;
    }
    
    .contact-form {
      padding: 16px;
      margin: 0 4px;
      max-width: calc(100% - 8px);
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea,
    .form-group select,
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      font-size: 16px; /* Verhindert Zoom auf iOS */
      padding: 12px 14px;
      width: 100%;
      box-sizing: border-box;
    }
    
    .nav {
      width: 90%;
      max-width: 280px;
      padding: 55px 0 0 0;
      height: 100vh;
      max-height: 100vh;
    }
    
    .nav a {
      padding: 10px 12px;
      font-size: 0.875rem;
      word-break: break-word;
      line-height: 1.3;
    }
    
    .nav-dropdown-menu a {
      padding: 8px 12px 8px 28px;
      font-size: 0.85rem;
    }
    
    .nav-dropdown.mega-menu .nav-dropdown-group-title {
      padding: 8px 12px;
      font-size: 0.8rem;
    }
    
    .nav-dropdown.mega-menu .nav-dropdown-group a {
      padding: 8px 12px 8px 20px;
      font-size: 0.8rem;
    }
    
    .nav-dropdown.mega-menu .nav-dropdown-group a.nav-sub-item {
      padding-left: 28px;
      font-size: 0.75rem;
    }
    
    .statement-table {
      font-size: 0.65rem;
      width: 100%;
      max-width: 100vw;
    }
    
    .statement-table table {
      min-width: 100%;
      width: 100%;
    }
    
    .statement-table th,
    .statement-table td {
      padding: 8px 3px;
      font-size: 0.65rem;
    }
    
    .statement-table th:first-child,
    .statement-table td:first-child {
      max-width: 120px;
    }
    
    .price-options {
      gap: 8px;
      grid-template-columns: 1fr;
    }
    
    .price-option {
      min-width: 100%;
      font-size: 0.85rem;
    }
    
    .form-actions {
      padding: 0;
      max-width: 100%;
    }
    
    .form-actions .button {
      width: 100%;
      max-width: 100%;
    }
    
    .header-inner {
      padding: 12px 0;
    }
    
    .mobile-menu-toggle {
      padding: 8px;
    }
    
    .search-box {
      max-width: 100%;
    }
    
    .header-top-right {
      flex-direction: column;
      gap: 8px;
    }
  }

  .stat-grid,
  .compare-grid,
  .grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-small);
  }

  .container {
    padding: 0 16px;
  }
}
