/* ==========================================================================
   GlobalMailSecurity – Haupt-Stylesheet
   Farbpalette: Blau (#1e4d8c), Hellblau (#3b82f6), Anthrazit (#1a202c)
   Schrift: Systemschrift-Stack (DSGVO-konform, keine externen Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS-Variablen (Design-Token)
   -------------------------------------------------------------------------- */
:root {
  /* Farben */
  --c-primary:       #1e4d8c;
  --c-primary-dark:  #163a6b;
  --c-primary-light: #2d6fbb;
  --c-accent:        #3b82f6;
  --c-accent-light:  #60a5fa;

  --c-text:          #1a202c;
  --c-text-body:     #4a5568;
  --c-text-muted:    #718096;
  --c-text-light:    #a0aec0;

  --c-bg:            #ffffff;
  --c-bg-light:      #f7f9fc;
  --c-bg-section:    #eef3fb;
  --c-border:        #e2e8f0;
  --c-border-light:  #f0f4f8;

  --c-success:       #38a169;
  --c-success-bg:    #f0fff4;
  --c-error:         #e53e3e;
  --c-error-bg:      #fff5f5;
  --c-warning:       #d97706;
  --c-warning-bg:    #fffbeb;

  /* Typografie */
  --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
             Cantarell, 'Helvetica Neue', sans-serif;
  --font-sz-xs:   0.75rem;   /* 12px */
  --font-sz-sm:   0.875rem;  /* 14px */
  --font-sz-base: 1rem;      /* 16px */
  --font-sz-md:   1.125rem;  /* 18px */
  --font-sz-lg:   1.25rem;   /* 20px */
  --font-sz-xl:   1.5rem;    /* 24px */
  --font-sz-2xl:  1.875rem;  /* 30px */
  --font-sz-3xl:  2.25rem;   /* 36px */
  --font-sz-4xl:  2.75rem;   /* 44px */
  --font-sz-5xl:  3.25rem;   /* 52px */

  /* Abstände */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radien */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Schatten */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(30, 77, 140, 0.15);

  /* Übergänge */
  --transition: 200ms ease;
  --transition-slow: 360ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 780px;
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-size: var(--font-sz-base);
  line-height: 1.6;
  color: var(--c-text-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--c-primary); }
a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  color: var(--c-text);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--font-sz-4xl); }
h2 { font-size: var(--font-sz-3xl); }
h3 { font-size: var(--font-sz-xl); }
h4 { font-size: var(--font-sz-lg); }

p { color: var(--c-text-body); }

address { font-style: normal; line-height: 1.8; }

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-muted { color: var(--c-text-muted); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius-md);
  font-size: var(--font-sz-sm);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 77, 140, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--c-text-body);
  border-color: var(--c-border);
}
.btn-ghost:hover {
  background: var(--c-bg-light);
  color: var(--c-text);
}

.btn-white {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--c-bg-section);
  color: var(--c-primary-dark);
}

.btn-sm  { padding: 0.4rem 0.9rem; font-size: var(--font-sz-xs); }
.btn-lg  { padding: 0.875rem 1.75rem; font-size: var(--font-sz-base); }
.btn-full { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Cookie-Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--c-text);
  color: #fff;
  padding: var(--space-4) var(--space-6);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--font-sz-sm);
  color: rgba(255,255,255,0.88);
  min-width: 280px;
}
.cookie-banner__text strong { color: #fff; }
.cookie-link {
  color: var(--c-accent-light);
  text-decoration: underline;
  margin-left: var(--space-2);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-placeholder {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: var(--font-sz-md);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.logo-name strong {
  font-weight: 800;
  color: var(--c-primary);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Nav */
.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  justify-content: center;
}
.nav__link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-sz-sm);
  font-weight: 500;
  color: var(--c-text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--c-primary);
  background: var(--c-bg-section);
}

.header-cta { flex-shrink: 0; }

/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-left: auto;
}
.nav-toggle:hover { background: var(--c-bg-light); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header--minimal { position: relative; box-shadow: none; border-bottom: 1px solid var(--c-border); }

/* --------------------------------------------------------------------------
   Section Utilities
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}
.section-header h2 { margin-bottom: var(--space-3); }
.section-header p   { font-size: var(--font-sz-md); color: var(--c-text-muted); }

.section-label {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: var(--c-bg-section);
  color: var(--c-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-sz-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 45%, #f0f5ff 100%);
  padding: var(--space-14) 0 var(--space-12);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 77, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--c-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-sz-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero__headline {
  font-size: clamp(1.9rem, 4vw, var(--font-sz-4xl));
  line-height: 1.18;
  color: var(--c-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: var(--font-sz-md);
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero__trust-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sz-sm);
  color: var(--c-text-muted);
}
.hero__trust-line strong { color: var(--c-text-body); }

.hero__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-svg {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(30, 77, 140, 0.14));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text-muted);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */
.benefits {
  padding: var(--space-20) 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--c-border-light);
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.benefit-card__icon svg { width: 24px; height: 24px; }

.benefit-card__icon--blue   { background: #eff6ff; color: var(--c-primary); }
.benefit-card__icon--teal   { background: #f0fdfa; color: #0d9488; }
.benefit-card__icon--purple { background: #faf5ff; color: #7c3aed; }
.benefit-card__icon--green  { background: #f0fff4; color: var(--c-success); }
.benefit-card__icon--orange { background: #fff7ed; color: #ea580c; }

.benefit-card h3 { font-size: var(--font-sz-lg); margin-bottom: var(--space-3); }
.benefit-card p  { font-size: var(--font-sz-sm); line-height: 1.65; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services {
  padding: var(--space-20) 0;
  background: var(--c-bg-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-5);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card--highlight {
  border-color: var(--c-accent);
  background: linear-gradient(135deg, #eff6ff, #f0f6ff);
  grid-column: span 2;
}
.service-card--highlight .service-card__icon {
  background: var(--c-primary);
  color: white;
}

.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-bg-section);
  color: var(--c-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card__body h3 { font-size: var(--font-sz-lg); margin-bottom: var(--space-3); }
.service-card__body p  { font-size: var(--font-sz-sm); line-height: 1.7; }

.service-card__cta {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--font-sz-sm);
  font-weight: 600;
  color: var(--c-primary);
}
.service-card__cta:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Trust
   -------------------------------------------------------------------------- */
.trust {
  padding: var(--space-20) 0;
  background: var(--c-bg);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.trust-item { text-align: center; padding: var(--space-4); }

.trust-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-bg-section);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.trust-item__icon svg { width: 26px; height: 26px; }

.trust-item h3 { font-size: var(--font-sz-lg); margin-bottom: var(--space-2); }
.trust-item p  { font-size: var(--font-sz-sm); line-height: 1.65; }

/* Trust-Badges */
.trust__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding: var(--space-8);
  background: var(--c-bg-section);
  border-radius: var(--radius-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sz-sm);
  font-weight: 600;
  color: var(--c-text-body);
}
.trust-badge svg { color: var(--c-primary); }

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--space-20) 0;
  background: linear-gradient(140deg, #0c2348 0%, #1e4d8c 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }

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

.cta-section__text h2 {
  color: #fff;
  font-size: var(--font-sz-2xl);
  margin-bottom: var(--space-3);
}
.cta-section__text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-sz-md);
  max-width: 520px;
}

.cta-section__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.cta-section__note {
  font-size: var(--font-sz-xs);
  color: rgba(255,255,255,0.65);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--space-20) 0;
  background: var(--c-bg-light);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-12);
  align-items: start;
}

.contact__info .section-label { margin-bottom: var(--space-3); }
.contact__info h2 { font-size: var(--font-sz-2xl); margin-bottom: var(--space-4); }
.contact__info > p { font-size: var(--font-sz-md); margin-bottom: var(--space-8); }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-sz-sm);
  color: var(--c-text-body);
}
.contact__list svg {
  width: 18px;
  height: 18px;
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact__company {
  padding: var(--space-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: var(--font-sz-sm);
  line-height: 1.7;
  color: var(--c-text-body);
}
.contact__company strong { color: var(--c-text); }

/* Contact Form */
.contact__form-wrap {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--font-sz-sm);
  font-weight: 600;
  color: var(--c-text);
}
.required { color: var(--c-error); margin-left: 2px; }
.optional  { font-weight: 400; color: var(--c-text-muted); font-size: var(--font-sz-xs); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: var(--font-sz-sm);
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
input.input-error, select.input-error, textarea.input-error {
  border-color: var(--c-error);
}
input::placeholder, textarea::placeholder { color: var(--c-text-muted); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 120px; }

.char-counter {
  font-size: var(--font-sz-xs);
  color: var(--c-text-muted);
  text-align: right;
}

/* Checkbox */
.form-group--checkbox { margin-top: var(--space-2); }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--c-primary);
}
.checkbox-text {
  font-size: var(--font-sz-sm);
  color: var(--c-text-body);
  line-height: 1.5;
}

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--font-sz-sm);
  line-height: 1.5;
  margin-bottom: var(--space-2);
}
.alert svg { flex-shrink: 0; margin-top: 1px; }

.alert-success { background: var(--c-success-bg); color: var(--c-success); border: 1px solid #c6f6d5; }
.alert-error   { background: var(--c-error-bg);   color: var(--c-error);   border: 1px solid #fed7d7; }
.alert-warning { background: var(--c-warning-bg); color: var(--c-warning); border: 1px solid #fde68a; }

.error-list { margin-top: var(--space-2); padding-left: var(--space-4); list-style: disc; }
.error-list li { margin-bottom: var(--space-1); }

/* Form note */
.form-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sz-xs);
  color: var(--c-text-muted);
  margin-top: var(--space-2);
  text-align: center;
  justify-content: center;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Legal Overview Section
   -------------------------------------------------------------------------- */
.legal-overview {
  padding: var(--space-16) 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-light);
}

.legal-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.legal-card {
  padding: var(--space-8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow var(--transition);
}
.legal-card:hover { box-shadow: var(--shadow-sm); }
.legal-card svg {
  width: 36px;
  height: 36px;
  color: var(--c-primary);
  margin: 0 auto var(--space-4);
}
.legal-card h3 { font-size: var(--font-sz-lg); margin-bottom: var(--space-3); }
.legal-card p  { font-size: var(--font-sz-sm); color: var(--c-text-muted); margin-bottom: var(--space-4); }

.legal-link {
  font-size: var(--font-sz-sm);
  font-weight: 600;
  color: var(--c-primary);
}
.legal-link:hover { text-decoration: underline; }
.legal-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer__logo span {
  font-size: var(--font-sz-lg);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}
.footer__logo strong { font-weight: 800; color: #fff; }

.footer__tagline {
  font-size: var(--font-sz-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer__company {
  font-size: var(--font-sz-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer__company strong { color: rgba(255,255,255,0.8); }

.footer__col h4 {
  color: #fff;
  font-size: var(--font-sz-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col li a {
  font-size: var(--font-sz-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col li a:hover { color: #fff; }

.footer__address {
  font-size: var(--font-sz-sm);
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer__address strong { color: rgba(255,255,255,0.85); }
.footer__address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__address a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--font-sz-xs);
  color: rgba(255,255,255,0.4);
}

.footer__legal-nav {
  display: flex;
  gap: var(--space-5);
  align-items: center;
}
.footer__legal-nav a {
  font-size: var(--font-sz-xs);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__legal-nav a:hover { color: #fff; }

.footer__cookie-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--font-sz-xs);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__cookie-btn:hover { color: #fff; }

.footer--minimal { padding-top: 0; }
.footer--minimal .footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
.legal-page {
  padding: var(--space-12) 0 var(--space-20);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sz-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--space-8);
}
.breadcrumb a { color: var(--c-accent); }
.breadcrumb span { color: var(--c-text-muted); }

.legal-page h1 {
  font-size: var(--font-sz-3xl);
  margin-bottom: var(--space-4);
}

.legal-intro {
  font-size: var(--font-sz-md);
  color: var(--c-text-muted);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--c-border);
}

.legal-section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--c-border-light);
}
.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-size: var(--font-sz-xl);
  margin-bottom: var(--space-4);
  color: var(--c-primary);
}

.legal-section p,
.legal-section li { font-size: var(--font-sz-sm); line-height: 1.8; margin-bottom: var(--space-3); }

.legal-section ul,
.legal-section ol {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.legal-section li { margin-bottom: var(--space-2); }

.legal-section address { margin-bottom: var(--space-4); }

.legal-back { margin-top: var(--space-12); }

/* Cookie-Tabelle */
.cookie-table-wrap { overflow-x: auto; margin: var(--space-4) 0; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-sz-sm);
}
.cookie-table th,
.cookie-table td {
  padding: 0.6rem 0.875rem;
  border: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}
.cookie-table th {
  background: var(--c-bg-section);
  font-weight: 600;
  color: var(--c-text);
}
.cookie-table code {
  font-family: monospace;
  font-size: 0.8em;
  background: var(--c-bg-section);
  padding: 1px 4px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Scroll-Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive – Tablet (≤ 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  h1 { font-size: var(--font-sz-3xl); }

  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); text-align: center; }
  .hero__illustration { order: -1; }
  .hero__actions { justify-content: center; }
  .hero__trust-line { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* --------------------------------------------------------------------------
   Responsive – Mobile (≤ 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  h1 { font-size: var(--font-sz-2xl); }
  h2 { font-size: var(--font-sz-xl); }

  .container { padding: 0 var(--space-4); }

  /* Header Mobile */
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--c-border);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 800;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
  }
  .nav__link { padding: var(--space-3) var(--space-4); }

  /* Hero */
  .hero { padding: var(--space-12) 0; }
  .hero__headline { font-size: var(--font-sz-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card--highlight { grid-column: span 1; }

  /* Trust */
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__badges { flex-direction: column; align-items: flex-start; gap: var(--space-3); }

  /* CTA */
  .cta-section__inner { flex-direction: column; text-align: center; }
  .cta-section__text p { margin-left: auto; margin-right: auto; }

  /* Contact */
  .contact__layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: var(--space-6); }

  /* Legal overview */
  .legal-overview__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Cookie banner */
  .cookie-banner__inner { flex-direction: column; gap: var(--space-4); }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .header, .footer, .cookie-banner, .hero__scroll { display: none; }
  .hero { padding-top: 0; background: none; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

/* --------------------------------------------------------------------------
   Hero – Illustration
   -------------------------------------------------------------------------- */
.hero__inner { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Stats-Leiste
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
  padding: var(--space-5) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  padding: var(--space-3) var(--space-6);
  text-align: center;
}

.stat-item__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  display: block;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  font-weight: 500;
  line-height: 1.35;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--c-border);
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   Footer – Grid für 5 Spalten
   -------------------------------------------------------------------------- */
.footer__grid {
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
}

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

/* --------------------------------------------------------------------------
   Services-Bereich – dezenter Hintergrund-Blob
   -------------------------------------------------------------------------- */
.services {
  position: relative;
  overflow: hidden;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Trust-Bereich – dezenter Hintergrund
   -------------------------------------------------------------------------- */
.trust {
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(30,77,140,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Illustration – Float-Animation
   -------------------------------------------------------------------------- */
.dashboard-svg {
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 56px rgba(30,77,140,0.16));
}
@keyframes float {
  0%, 100% { transform: translateY(0px)    rotate(0deg); }
  33%       { transform: translateY(-8px)   rotate(0.3deg); }
  66%       { transform: translateY(-4px)   rotate(-0.2deg); }
}

/* --------------------------------------------------------------------------
   Moderne Karten-Verbesserungen
   -------------------------------------------------------------------------- */
.benefit-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30,77,140,0.10);
  border-color: rgba(59,130,246,0.25);
}

.service-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(30,77,140,0.10);
}

/* --------------------------------------------------------------------------
   Section-Trennlinie mit Gradient
   -------------------------------------------------------------------------- */
.benefits,
.services,
.trust,
.contact,
.legal-overview {
  border-top: 1px solid transparent;
  background-clip: padding-box;
}

/* --------------------------------------------------------------------------
   Animiertes Häkchen im CTA-Button
   -------------------------------------------------------------------------- */
.btn-primary svg,
.btn-outline svg,
.btn-white svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btn-primary:hover svg,
.btn-outline:hover svg,
.btn-white:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Hero-Illustration Wrapper
   -------------------------------------------------------------------------- */
.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-svg {
  width: 100%;
  max-width: 520px;
}

/* --------------------------------------------------------------------------
   Stats-Leiste – responsive
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: var(--space-3) var(--space-4); }
  .stat-item__number { font-size: 1.4rem; }
}


/* ============================================================
   DESIGN REFRESH – Modern · Schlicht · Professionell
   Ästhetik: Stripe / Linear / Vercel
   ============================================================ */

/* --- Basis-Farben & Text ---------------------------------------- */
:root {
  --c-text:         #0f172a;
  --c-text-body:    #475569;
  --c-text-muted:   #94a3b8;
  --c-bg-light:     #f8fafc;
  --c-bg-section:   #f1f5f9;
  --c-border:       #e2e8f0;
  --c-border-light: #f1f5f9;
}

h1, h2, h3, h4 { letter-spacing: -0.025em; }
p { color: #475569; }

/* --- Navigation ------------------------------------------------- */
.header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: none;
}
.header.scrolled { border-bottom-color: #e2e8f0; }

.logo-name { font-size: 1.05rem; letter-spacing: -0.02em; }
.logo-sub  { font-size: 0.58rem; letter-spacing: 0.12em; color: #94a3b8; }

.nav__link { font-size: 0.875rem; color: #475569; font-weight: 500; }
.nav__link:hover { color: #0f172a; background: #f8fafc; }

.header-cta { font-size: 0.875rem; }

/* --- Buttons ---------------------------------------------------- */
.btn { border-radius: 8px; font-weight: 600; }

.btn-primary { background: #1e4d8c; border-color: #1e4d8c; }
.btn-primary:hover {
  background: #163a6b;
  border-color: #163a6b;
  box-shadow: 0 6px 20px rgba(30,77,140,0.28);
  transform: translateY(-1px);
}

.btn-outline { color: #1e4d8c; border-color: #c7d9f0; }
.btn-outline:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: white;
  box-shadow: none;
}

.btn-white { background: white; color: #1e4d8c; border-color: white; font-weight: 700; }
.btn-white:hover {
  background: #f0f6ff;
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}

/* --- Hero ------------------------------------------------------- */
.hero { background: linear-gradient(160deg, #f9fbff 0%, #eef4ff 50%, #f3f7ff 100%); }

.hero__badge {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.22);
  color: #2563eb;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  letter-spacing: 0.08em;
}

.hero__headline {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.16;
  color: #0f172a;
  font-weight: 800;
}

.hero__sub { font-size: 1rem; line-height: 1.78; color: #475569; }

.hero__trust-line {
  padding-top: var(--space-4);
  border-top: 1px solid #e8eef8;
  font-size: 0.78rem;
  color: #94a3b8;
}
.hero__trust-line strong { color: #64748b; }

/* --- Section-Label & Header ------------------------------------ */
.section-label {
  background: transparent;
  border: 1px solid rgba(59,130,246,0.28);
  color: #3b82f6;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.22rem 0.8rem;
}
.section-header h2 { font-size: clamp(1.55rem, 3vw, 2rem); color: #0f172a; }
.section-header p  { font-size: 1rem; color: #64748b; line-height: 1.75; }

/* --- Benefits --------------------------------------------------- */
.benefits { background: #f8fafc; }
.benefits::before { display: none; }

.benefit-card {
  padding: 1.75rem;
  border-color: #e8eef8;
  border-radius: 14px;
  background: white;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #1e4d8c, #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-card:hover {
  border-color: #dbe8f8;
  box-shadow: 0 10px 30px rgba(30,77,140,0.09);
  transform: translateY(-5px);
}
.benefit-card__icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 1.25rem; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.875rem; color: #64748b; line-height: 1.7; }

/* --- Services --------------------------------------------------- */
.services { background: white; }
.services::after { display: none; }

.service-card {
  border-color: #e8eef8;
  border-radius: 14px;
  padding: 1.75rem;
  gap: 1.125rem;
  background: white;
}
.service-card:hover {
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 6px 28px rgba(30,77,140,0.08);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #f0f6ff;
  color: #1e4d8c;
}
.service-card__icon svg { width: 20px; height: 20px; }
.service-card__body h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.service-card__body p  { font-size: 0.875rem; color: #64748b; line-height: 1.78; }
.service-card--highlight {
  background: linear-gradient(135deg, #f0f7ff, #eef3ff);
  border-color: rgba(59,130,246,0.18);
}
.service-card--highlight .service-card__icon { background: #1e4d8c; color: white; }
.service-card__cta { font-size: 0.875rem; font-weight: 600; color: #2563eb; }

/* --- Trust ----------------------------------------------------- */
.trust { background: #f8fafc; }
.trust::before { display: none; }

.trust-item {
  background: white;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-item:hover { box-shadow: 0 4px 20px rgba(30,77,140,0.07); border-color: #dbe8f8; }

.trust-item__icon {
  background: #f0f6ff;
  border: none;
  border-radius: 12px;
  width: 52px;
  height: 52px;
}
.trust-item h3 { font-size: 1rem; font-weight: 700; color: #0f172a; }
.trust-item p  { font-size: 0.875rem; color: #64748b; line-height: 1.7; }

.trust__badges {
  background: white;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 1.25rem 2rem;
}
.trust-badge { font-size: 0.8rem; color: #475569; font-weight: 600; }
.trust-badge svg { color: #1e4d8c; }

/* --- CTA ------------------------------------------------------- */
.cta-section {
  background: linear-gradient(140deg, #0b1f3d 0%, #1a4480 55%, #2563eb 100%);
  padding: 5rem 0;
}
.cta-section__inner { gap: 3rem; }
.cta-section__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.cta-section__text p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.cta-section__note  { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* --- Contact --------------------------------------------------- */
.contact { background: white; }
.contact__info h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); color: #0f172a; }
.contact__info > p { font-size: 1rem; color: #64748b; }

.contact__form-wrap {
  border-color: #e8eef8;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(30,77,140,0.06);
}

label { font-size: 0.8rem; font-weight: 600; color: #374151; }
.optional { font-weight: 400; color: #94a3b8; font-size: 0.72rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-color: #e8eef8;
  border-radius: 8px;
  background-color: #fafbfc;
  font-size: 0.9rem;
  color: #0f172a;
  padding: 0.7rem 0.9rem;
}
input:focus, select:focus, textarea:focus {
  border-color: #3b82f6;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.10);
}
.form-note { font-size: 0.75rem; color: #94a3b8; }

/* --- Legal Overview ------------------------------------------- */
.legal-overview { background: #f8fafc; }
.legal-card { background: white; border-color: #e8eef8; border-radius: 14px; }
.legal-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; }
.legal-card p  { font-size: 0.875rem; color: #64748b; }

/* --- Footer --------------------------------------------------- */
.footer { background: #0f172a; }

.footer__logo span { font-size: 1rem; color: rgba(255,255,255,0.85); }
.footer__tagline   { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.75; }
.footer__company   { font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.75; }
.footer__company strong { color: rgba(255,255,255,0.58); }

.footer__col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
}
.footer__col li a { font-size: 0.85rem; color: rgba(255,255,255,0.48); line-height: 2.1; }
.footer__col li a:hover { color: rgba(255,255,255,0.9); }

.footer__address { font-size: 0.85rem; line-height: 1.9; color: rgba(255,255,255,0.42); }
.footer__address strong { color: rgba(255,255,255,0.68); }
.footer__address a { color: rgba(255,255,255,0.42); }
.footer__address a:hover { color: rgba(255,255,255,0.8); }

.footer__grid { padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__bottom { padding: 1.25rem 0; }
.footer__copy   { font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.footer__legal-nav a,
.footer__cookie-btn { font-size: 0.72rem; color: rgba(255,255,255,0.32); }
.footer__legal-nav a:hover,
.footer__cookie-btn:hover { color: rgba(255,255,255,0.72); }

/* --- Cookie Banner -------------------------------------------- */
.cookie-banner { background: #0f172a; border-top: 1px solid rgba(255,255,255,0.08); }

/* --- Reveal Animation ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   DARK MODE + HEADER-TOGGLES
   ============================================================ */

/* Header-Tools (Sprache + Theme) */
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Sprache */
.lang-switch {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.lang-switch a.active {
  background: #1e4d8c;
  color: white;
}
.lang-switch a:hover:not(.active) {
  background: white;
  color: #1e4d8c;
}

/* Theme-Button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
  text-decoration: none;
}
.theme-toggle:hover {
  border-color: #c7d9f0;
  color: #1e4d8c;
}
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ================ DARK MODE ================== */
[data-theme="dark"] {
  color-scheme: dark;
}

[data-theme="dark"] body {
  background: #0b1220;
  color: #cbd5e1;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5 { color: #f1f5f9; }

[data-theme="dark"] p,
[data-theme="dark"] .section-header p,
[data-theme="dark"] .benefit-card p,
[data-theme="dark"] .service-card__body p,
[data-theme="dark"] .trust-item p,
[data-theme="dark"] .contact__info > p { color: #94a3b8; }

/* Header dark */
[data-theme="dark"] .header {
  background: rgba(15,23,42,0.95);
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .logo-name { color: #f1f5f9; }
[data-theme="dark"] .logo-name strong { color: #60a5fa; }
[data-theme="dark"] .logo-sub { color: #64748b; }
[data-theme="dark"] .nav__link { color: #94a3b8; }
[data-theme="dark"] .nav__link:hover { color: #f1f5f9; background: rgba(255,255,255,0.05); }

/* Theme-Toggle dark state */
[data-theme="dark"] .theme-toggle { background: #1e293b; border-color: rgba(255,255,255,0.1); color: #cbd5e1; }
[data-theme="dark"] .theme-toggle:hover { border-color: rgba(96,165,250,0.4); color: #60a5fa; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }

/* Lang-Switch dark */
[data-theme="dark"] .lang-switch { background: #1e293b; }
[data-theme="dark"] .lang-switch a { color: #94a3b8; }
[data-theme="dark"] .lang-switch a.active { background: #2563eb; color: white; }
[data-theme="dark"] .lang-switch a:hover:not(.active) { background: rgba(255,255,255,0.05); color: #f1f5f9; }

/* Hero dark */
[data-theme="dark"] .hero { background: linear-gradient(160deg, #0b1220 0%, #0f1e3d 50%, #0b1220 100%); }
[data-theme="dark"] .hero__headline { color: #f1f5f9; }
[data-theme="dark"] .hero__sub { color: #94a3b8; }
[data-theme="dark"] .hero__badge { background: rgba(59,130,246,0.13); color: #60a5fa; border-color: rgba(59,130,246,0.3); }
[data-theme="dark"] .hero__trust-line { color: #64748b; border-top-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .hero__trust-line strong { color: #94a3b8; }

/* Section Backgrounds dark */
[data-theme="dark"] .benefits,
[data-theme="dark"] .trust,
[data-theme="dark"] .legal-overview { background: #0f172a; }
[data-theme="dark"] .services,
[data-theme="dark"] .contact { background: #0b1220; }
[data-theme="dark"] .stats-bar { background: #0b1220; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .section-label { background: rgba(59,130,246,0.13); color: #60a5fa; border-color: rgba(59,130,246,0.3); }

/* Cards dark */
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .trust-item,
[data-theme="dark"] .legal-card,
[data-theme="dark"] .contact__form-wrap,
[data-theme="dark"] .trust__badges,
[data-theme="dark"] .contact__company {
  background-color: #131d32;
  border-color: rgba(255,255,255,0.07);
}

/* Kontaktinfo-Box: Text lesbar machen */
[data-theme="dark"] .contact__company         { color: #cbd5e1; }
[data-theme="dark"] .contact__company strong  { color: #f1f5f9; }
[data-theme="dark"] .contact__company .text-muted { color: #94a3b8; }
[data-theme="dark"] .contact__list            { color: #cbd5e1; }
[data-theme="dark"] .contact__list a          { color: #60a5fa; }
[data-theme="dark"] .contact__list a:hover    { color: #93c5fd; }
[data-theme="dark"] .contact__list svg        { color: #60a5fa; }

/* Allgemein: .text-muted in Dark Mode */
[data-theme="dark"] .text-muted { color: #94a3b8; }

/* ============================================================
   WISSENSBASIS / KNOWLEDGE BASE
   ============================================================ */

/* Hero */
.kb-hero {
  background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 50%, #f3f7ff 100%);
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}
.kb-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.kb-hero .container { position: relative; z-index: 1; text-align: center; }
.kb-hero__h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: var(--space-4) 0 var(--space-3);
  font-weight: 800;
}
.kb-hero__sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

/* Suchfeld */
.kb-search {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.kb-search svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}
.kb-search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-size: 0.95rem;
  color: #0f172a;
  background: white;
  border: 1.5px solid #e8eef8;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(30,77,140,0.08);
  transition: border-color 0.18s, box-shadow 0.18s;
  font-family: inherit;
}
.kb-search input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 4px 24px rgba(30,77,140,0.12), 0 0 0 3px rgba(59,130,246,0.1);
}

/* Main + Chips */
.kb-main { padding: var(--space-12) 0 var(--space-16); background: white; }

.kb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-8);
  justify-content: center;
}

.kb-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}
.kb-chip:hover { background: #e0ebff; color: #1e4d8c; }
.kb-chip.active {
  background: #1e4d8c;
  color: white;
}
.kb-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.kb-chip:not(.active) .kb-chip__count {
  background: rgba(30,77,140,0.1);
  color: #1e4d8c;
}

/* Akkordeon */
.kb-list { display: flex; flex-direction: column; gap: 0.625rem; }

.kb-item {
  background: white;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.kb-item:hover { border-color: #c7d9f0; }
.kb-item.open {
  border-color: #1e4d8c;
  box-shadow: 0 6px 24px rgba(30,77,140,0.08);
}

.kb-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  transition: background 0.15s ease;
}
.kb-item__q:hover { background: #f8fbff; }
.kb-item__q-text { flex: 1; }
.kb-item__chev {
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.15s ease;
}
.kb-item.open .kb-item__chev {
  transform: rotate(180deg);
  color: #1e4d8c;
}

.kb-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.kb-item.open .kb-item__a { max-height: 800px; }
.kb-item__a-inner {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #e8eef8;
  padding-top: 1rem;
  margin-top: 0;
}
.kb-item__a-inner p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
}

/* Empty state */
.kb-empty {
  text-align: center;
  padding: var(--space-12) var(--space-4);
  color: #94a3b8;
}
.kb-empty svg { margin: 0 auto var(--space-3); color: #cbd5e1; }
.kb-empty p  { font-size: 0.95rem; }

/* CTA */
.kb-cta {
  background: linear-gradient(140deg, #0b1f3d 0%, #1a4480 55%, #2563eb 100%);
  padding: var(--space-12) 0;
  color: white;
}
.kb-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.kb-cta h2 {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.kb-cta p { color: rgba(255,255,255,0.78); font-size: 0.95rem; max-width: 560px; }
.kb-cta .btn-primary {
  background: white;
  color: #1e4d8c;
  border-color: white;
  white-space: nowrap;
}
.kb-cta .btn-primary:hover {
  background: #f0f6ff;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

@media (max-width: 680px) {
  .kb-chips { justify-content: flex-start; }
  .kb-cta__inner { text-align: center; flex-direction: column; }
  .kb-cta p { margin: 0 auto; }
}

/* ── Dark Mode ── */
[data-theme="dark"] .kb-hero {
  background: linear-gradient(160deg, #0b1220 0%, #0f1e3d 50%, #0b1220 100%);
}
[data-theme="dark"] .kb-hero__h1 { color: #f1f5f9; }
[data-theme="dark"] .kb-hero__sub { color: #94a3b8; }
[data-theme="dark"] .kb-search input {
  background-color: #131d32;
  color: #f1f5f9;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
[data-theme="dark"] .kb-search input:focus {
  border-color: #60a5fa;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28), 0 0 0 3px rgba(96,165,250,0.15);
}
[data-theme="dark"] .kb-search svg { color: #64748b; }
[data-theme="dark"] .kb-main { background: #0b1220; }
[data-theme="dark"] .kb-chip { background: #1e293b; color: #94a3b8; }
[data-theme="dark"] .kb-chip:hover { background: rgba(59,130,246,0.15); color: #60a5fa; }
[data-theme="dark"] .kb-chip.active { background: #2563eb; color: white; }
[data-theme="dark"] .kb-chip:not(.active) .kb-chip__count { background: rgba(96,165,250,0.15); color: #60a5fa; }
[data-theme="dark"] .kb-item {
  background-color: #131d32;
  border-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .kb-item:hover { border-color: rgba(96,165,250,0.3); }
[data-theme="dark"] .kb-item.open  { border-color: #60a5fa; box-shadow: 0 6px 24px rgba(0,0,0,0.32); }
[data-theme="dark"] .kb-item__q { color: #f1f5f9; }
[data-theme="dark"] .kb-item__q:hover { background: rgba(59,130,246,0.05); }
[data-theme="dark"] .kb-item__a-inner { border-top-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .kb-item__a-inner p { color: #94a3b8; }
[data-theme="dark"] .kb-empty { color: #64748b; }
[data-theme="dark"] .kb-empty svg { color: #475569; }
[data-theme="dark"] .kb-cta { background: linear-gradient(140deg, #050b17 0%, #0c2348 55%, #1e3a8a 100%); }
[data-theme="dark"] .benefit-card:hover,
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .trust-item:hover { border-color: rgba(96,165,250,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
[data-theme="dark"] .benefit-card h3,
[data-theme="dark"] .service-card__body h3,
[data-theme="dark"] .trust-item h3,
[data-theme="dark"] .legal-card h3 { color: #f1f5f9; }
[data-theme="dark"] .service-card__icon { background: rgba(59,130,246,0.12); color: #60a5fa; }
[data-theme="dark"] .trust-item__icon   { background: rgba(59,130,246,0.12); color: #60a5fa; }
[data-theme="dark"] .benefit-card__icon--blue   { background: rgba(30,77,140,0.2); color: #60a5fa; }
[data-theme="dark"] .benefit-card__icon--teal   { background: rgba(13,148,136,0.15); color: #5eead4; }
[data-theme="dark"] .benefit-card__icon--purple { background: rgba(124,58,237,0.15); color: #c4b5fd; }
[data-theme="dark"] .benefit-card__icon--green  { background: rgba(56,161,105,0.15); color: #6ee7b7; }
[data-theme="dark"] .benefit-card__icon--orange { background: rgba(234,88,12,0.15); color: #fdba74; }
[data-theme="dark"] .service-card--highlight { background: linear-gradient(135deg, #132448, #0f1e3d); border-color: rgba(96,165,250,0.25); }
[data-theme="dark"] .trust-badge { color: #94a3b8; }
[data-theme="dark"] .trust-badge svg { color: #60a5fa; }

/* Contact Form dark */
[data-theme="dark"] .form-step,
[data-theme="dark"] .form-switcher__opt {
  background: #0f1727;
  border-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .form-switcher__opt:hover { background: rgba(59,130,246,0.08); border-color: rgba(96,165,250,0.4); }
[data-theme="dark"] .form-switcher__opt.active {
  background: rgba(59,130,246,0.13);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96,165,250,0.18);
}
[data-theme="dark"] .fsw-icon { background: rgba(255,255,255,0.05); color: #64748b; }
[data-theme="dark"] .form-switcher__opt.active .fsw-icon { background: #2563eb; color: white; }
[data-theme="dark"] .fsw-label strong { color: #cbd5e1; }
[data-theme="dark"] .form-switcher__opt.active .fsw-label strong { color: #60a5fa; }
[data-theme="dark"] .form-switcher__opt.active .fsw-label > span { color: #cbd5e1; }
[data-theme="dark"] label { color: #cbd5e1; }
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background-color: #0b1220;
  color: #f1f5f9;
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus {
  background-color: #0f1727;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: #475569; }
[data-theme="dark"] select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Buttons dark */
[data-theme="dark"] .btn-outline { color: #60a5fa; border-color: rgba(96,165,250,0.4); }
[data-theme="dark"] .btn-outline:hover { background: #2563eb; border-color: #2563eb; color: white; }

/* CTA dark (already dark-ish, subtle tweak) */
[data-theme="dark"] .cta-section { background: linear-gradient(140deg, #050b17 0%, #0c2348 55%, #1e3a8a 100%); }

/* Legal pages dark */
[data-theme="dark"] .legal-page { color: #94a3b8; }
[data-theme="dark"] .legal-section h2 { color: #60a5fa; }
[data-theme="dark"] .legal-section p,
[data-theme="dark"] .legal-section li { color: #94a3b8; }
[data-theme="dark"] .legal-section address strong { color: #f1f5f9; }
[data-theme="dark"] .cookie-table th { background: rgba(255,255,255,0.05); color: #f1f5f9; }
[data-theme="dark"] .cookie-table td { color: #94a3b8; }
[data-theme="dark"] .cookie-table code { background: rgba(255,255,255,0.05); color: #60a5fa; }

/* Step-Number dark */
[data-theme="dark"] .form-step__num { background: #2563eb; }
[data-theme="dark"] .form-step__title { color: #cbd5e1; }

/* Alert dark */
[data-theme="dark"] .alert-success { background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.25); color: #4ade80; }
[data-theme="dark"] .alert-error   { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.25); color: #f87171; }
[data-theme="dark"] .alert-warning { background: rgba(234,179,8,0.10); border-color: rgba(234,179,8,0.25); color: #fbbf24; }

/* Legal Warning Box */
.legal-warning-box {
  padding: 1rem 1.25rem;
  border-left: 4px solid #d97706;
  background: #fffbeb;
  color: #78350f;
  font-size: 0.85rem;
  line-height: 1.55;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .legal-warning-box { background: rgba(234,179,8,0.08); color: #fbbf24; border-color: #d97706; }

@media (max-width: 900px) {
  .header-tools { gap: 0.35rem; }
  .lang-switch a { min-width: 26px; font-size: 0.68rem; }
  .theme-toggle { width: 30px; height: 30px; }
}
@media (max-width: 768px) {
  .header-cta { display: none; }
}

/* ============================================================
   FORM-SWITCHER (Formular-Wahl)
   ============================================================ */

.form-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.form-switcher__opt {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
  width: 100%;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.form-switcher__opt:hover {
  border-color: #93b4da;
  background: #f8fbff;
}

.form-switcher__opt.active {
  border-color: #1e4d8c;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(30,77,140,0.10);
}

/* Icon */
.fsw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #94a3b8;
  transition: background 0.18s, color 0.18s;
}

.form-switcher__opt.active .fsw-icon {
  background: #1e4d8c;
  color: white;
}

/* Label */
.fsw-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.fsw-label strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.3;
}

.fsw-label > span {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.3;
}

.form-switcher__opt.active .fsw-label strong { color: #1e4d8c; }
.form-switcher__opt.active .fsw-label > span { color: #64748b; }

/* Panels */
.form-panel          { display: none; }
.form-panel.active   { display: block; }

@media (max-width: 520px) {
  .form-switcher { grid-template-columns: 1fr; }
}

/* ============================================================
   GEFÜHRTES KONTAKTFORMULAR – Radio Cards & Steps
   ============================================================ */

/* Form Steps */
.form-step {
  padding: 1rem 1.25rem;
  background: #fafbfc;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  margin-bottom: 0.625rem;
}

.form-step__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.form-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #1e4d8c;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.form-step__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: -0.01em;
}

/* Dropdown inside form-step */
.form-step select {
  width: 100%;
  margin: 0;
}

/* Radio Cards Grid */
.radio-cards {
  display: grid;
  gap: 0.625rem;
}
.radio-cards--3 { grid-template-columns: repeat(3, 1fr); }
.radio-cards--4 { grid-template-columns: repeat(4, 1fr); }

/* Radio Card */
.radio-card { cursor: pointer; }

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio-card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: white;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}

.radio-card__inner svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.18s ease;
  margin-bottom: 0.125rem;
}

.radio-card__inner strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.3;
}

.radio-card__inner span {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Hover state */
.radio-card:hover .radio-card__inner {
  border-color: #c7d9f0;
  background: #f5f9ff;
}
.radio-card:hover .radio-card__inner svg { color: #3b82f6; }
.radio-card:hover .radio-card__inner strong { color: #1e4d8c; }

/* Selected state */
.radio-card input:checked + .radio-card__inner {
  border-color: #1e4d8c;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(30,77,140,0.08);
}
.radio-card input:checked + .radio-card__inner svg    { color: #1e4d8c; }
.radio-card input:checked + .radio-card__inner strong { color: #1e4d8c; }
.radio-card input:checked + .radio-card__inner span   { color: #64748b; }

/* Responsive Radio Cards */
@media (max-width: 768px) {
  .radio-cards--3 { grid-template-columns: repeat(2, 1fr); }
  .radio-cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .radio-cards--3,
  .radio-cards--4 { grid-template-columns: 1fr; }
  .form-step { padding: 1rem; }
}
