:root {
  --bg: #050b16;
  --bg-2: #081120;
  --text: #edf3fb;
  --muted: #9aa8bb;
  --line: rgba(255, 255, 255, 0.1);
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --card: rgba(8, 17, 32, 0.7);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 22, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.22em;
}

.brand-text span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* Mobile Menu */

.menu-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.menu-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle .bars {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle .bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: 0.25s ease;
}

.menu-toggle.active .bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: 0.28s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  display: block;
}

.mobile-menu-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 32, 0.88);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);

  max-height: min(70vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-panel a {
  display: block;
  padding: 14px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.2s ease;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(4px);
}
/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 22, 0.82) 0%,
      rgba(5, 11, 22, 0.68) 38%,
      rgba(5, 11, 22, 0.52) 58%,
      rgba(5, 11, 22, 0.82) 100%
    ),
    url("../img/hero.webp") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.28), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(96, 165, 250, 0.12), transparent 20%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-card {
  max-width: 760px;
  width: 100%;
  min-height: 300px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

/* HEADLINE */

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  margin: 0;
}

.hero-headline .line {
  display: block;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-headline .line.small {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* TEXT */

.hero-text {
  margin: 18px auto 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* PRESSE */

.hero-press-wrapper {
  margin-top: 28px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-press-label {
  min-height: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-press-label span {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-press-label small {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

/* LOGO-LEISTE OHNE BOXEN */

.hero-press {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 28px;
}

.hero-press img {
  display: block;
  width: auto;
  height: 18px;
  max-width: 72px;
  object-fit: contain;
  opacity: 0.95;
}

/* BUTTONS */

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    min-height: 88vh;
    justify-content: center;
    padding: 80px 16px 24px;
  }

  .hero-card {
    min-height: auto;
    max-width: 100%;
  }

  .hero-headline,
  .hero-text {
    text-align: center;
  }

  .hero-press-wrapper {
    min-height: 56px;
  }

  .hero-press-label {
    justify-content: center;
  }

  .hero-press-label span {
    width: 36px;
  }

  .hero-press {
    justify-content: center;
    gap: 6px;
  }

  .hero-press img {
    height: 15px;
    max-width: 60px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 95px;
  }

  .hero-press-wrapper {
    min-height: 52px;
  }

  .hero-press {
    gap: 5px;
  }

  .hero-press img {
    height: 14px;
    max-width: 56px;
  }

  .hero-headline .line.small {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}

/* Footer */

.site-footer {
  background: #f5f7fa;
  border-top: 1px solid #d9e0e7;
  margin-top: 60px;
  color: #1f2937;
}

.site-footer .footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 2fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.site-footer .footer-col h3,
.site-footer .footer-col h4 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 20px;
  line-height: 1.3;
}

.site-footer .footer-col h4 {
  font-size: 17px;
}

.site-footer .footer-brand p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

.site-footer .footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-links-list li {
  margin-bottom: 10px;
}

.site-footer .footer-col a {
  color: #0f3d91;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.site-footer .footer-col a:hover {
  color: #0a2c69;
  text-decoration: underline;
}

.site-footer .footer-col a:focus {
  outline: 2px solid #0f3d91;
  outline-offset: 2px;
  border-radius: 3px;
}

.site-footer .footer-regions .region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.site-footer .footer-regions a {
  display: inline-block;
  color: #0f3d91;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer .footer-bottom {
  border-top: 1px solid #d9e0e7;
  background: #eef2f6;
}

.site-footer .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 40px;
  }

  .site-footer .footer-main {
    padding-top: 42px;
    padding-bottom: 30px;
  }

  .site-footer .footer-regions .region-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* Light Section */

.light-section {
  background: #f8fafc;
  color: #0f172a;
  padding: 100px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Services */

.services-section {
  padding: 100px 0;
  background: #ffffff;
  color: #0f172a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15));
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.overlay h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.overlay span {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.88;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.service-card:hover img {
  transform: scale(1.06);
}

/* Process */

.process-section {
  padding: 100px 0;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.process-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #020617;
  font-weight: 700;
}

.process-content .lead {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.process-list li {
  display: grid;
  gap: 4px;
}

.process-list strong {
  font-size: 16px;
  color: #0f172a;
}

.process-list span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Locations */

.locations-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
}

.locations-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.locations-badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.locations-header h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #020617;
}

.locations-header p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

/* Links klar sichtbar, aber mobil stabil */
.locations-header p a {
  color: #1e40af;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #93c5fd;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  overflow-wrap: break-word;
}

.locations-header p a:hover {
  color: #1d4ed8;
  text-decoration-color: #1d4ed8;
}

.locations-header p a:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
  border-radius: 4px;
}

.locations-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.locations-map-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.locations-map {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .locations-section {
    padding: 80px 0;
  }

  .locations-header {
    margin-bottom: 36px;
    padding: 0 6px;
  }

  .locations-header p {
    font-size: 16px;
    line-height: 1.75;
  }

  .locations-map-wrap {
    border-radius: 20px;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .locations-section {
    padding: 80px 0;
  }

  .locations-header {
    margin-bottom: 36px;
  }

  .locations-map-wrap {
    border-radius: 20px;
  }
}

/* Floating Contact */


.floating-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 9999;
}

.fc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  white-space: nowrap; /* ← verhindert Umbruch wie bei "E-Mail" */
}

.fc-btn:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.8);
}

.fc-btn.whatsapp {
  color: #25d366;
}

.fc-btn.phone {
  color: #60a5fa;
}

.fc-btn.mail {
  color: #e2e8f0;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
  .fc-btn {
    padding: 0 10px;
    font-size: 12px;
    height: 46px;
  }
}

/* FAQ */

.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: #020617;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-header p {
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 20px;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.faq-item:hover {
  background: #f1f5f9;
  border-color: #cbd5f5;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  color: #020617;
  padding-right: 24px;
}

.faq-item summary:hover {
  color: #000000;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  transition: 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* SEO Section */

.seo-section {
  padding: 100px 0;
  background: #f8fafc;
}

.seo-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.seo-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: #020617;
  letter-spacing: -0.02em;
}

.seo-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.seo-regions h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #020617;
}

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-grid a {
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  color: #0f172a;
  transition: 0.2s ease;
}

.region-grid a:hover {
  background: #e2e8f0;
}

/* Animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .locations-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 70px 0;
  }
}

@media (max-width: 720px) {
  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .footer-inner {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .locations-section,
  .faq-section {
    padding: 80px 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-chip {
    min-height: 58px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-item summary {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .floating-contact {
    right: 10px;
    bottom: 10px;
  }

  .fc-btn {
    height: 46px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.partner {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.partner h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111; /* deutlich dunkler */
  font-weight: 700;
}

.partner .subtitle {
  color: #555; /* etwas dunkler für bessere Lesbarkeit */
  margin-bottom: 40px;
}

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.partner-btn {
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  background: #f1f3f7;
  transition: all 0.25s ease;
  border: 1px solid #e0e3e8;
}

.partner-btn:hover {
  background: #c40000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Highlight nur subtil (kein dauerhaftes Rot mehr) */
.partner-btn.highlight {
  border: 1px solid #c40000;
  color: #c40000;
  background: #fff;
}

.partner-btn.highlight:hover {
  background: #c40000;
  color: #fff;
}
.presse {
  padding: 56px 20px;
  max-width: 980px;
  margin: 0 auto;
}

.presse h2 {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #3a5f85;
  letter-spacing: -0.02em;
}

.presse-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.presse-links li {
  margin: 0;
}

.presse-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: #16202b;
  background: #ffffff;
  border: 1px solid #e7edf3;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 39, 66, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.presse-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 39, 66, 0.12);
  border-color: #cad8e6;
  background: #fbfdff;
}

.presse-links .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f5d8a, #4d79a5);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(47, 93, 138, 0.22);
}

.presse-links .text {
  flex: 1;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: #16202b;
}

.presse-links a::after {
  content: "↗";
  font-size: 18px;
  color: #8a98a8;
  transition: transform 0.22s ease, color 0.22s ease;
}

.presse-links a:hover::after {
  transform: translate(2px, -2px);
  color: #3a5f85;
}

@media (max-width: 640px) {
  .presse {
    padding: 42px 16px;
  }

  .presse h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .presse-links a {
    padding: 16px;
    align-items: flex-start;
  }

  .presse-links .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .presse-links .text {
    font-size: 15px;
  }
}
/* =========================
   Kostenloses Erstgespräch
   ========================= */
.cta-zwischen {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #f5f5f5; /* hellgrau */
}

.cta-box {
  max-width: 800px;
  width: 100%;
  background: linear-gradient(135deg, #1f3f66, #2f5d8a);
  color: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-box h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #1f3f66;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button:hover {
  background: #c40000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 640px) {
  .cta-box {
    padding: 30px 20px;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-box p {
    font-size: 14px;
  }
}
/* =========================
   Ansprechpartner Sektion
   ========================= */

.ansprechpartner-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #eef4fa 0%, #f8fbff 12%, #ffffff 88%, #eef4fa 100%);
}

.ansprechpartner-card {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 44px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d9e4ef;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(25, 45, 74, 0.08);
  overflow: hidden;
}

.ansprechpartner-media {
  min-height: 420px;
  background: #eaf1f8;
}

.ansprechpartner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ansprechpartner-info {
  padding: 42px 42px 42px 0;
}

.ansprechpartner-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e3edf7;
  color: #2c4a6b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.ansprechpartner-info h2 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.15;
  color: #0f2a44;
  font-weight: 700;
}

.ansprechpartner-role {
  margin: 0 0 18px;
  color: #3f556b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.ansprechpartner-text {
  margin: 0 0 25px;
  color: #2f3e4d;
  line-height: 1.7;
  font-size: 16px;
}

.ansprechpartner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
/* =========================
   Keine Ahnung
   ========================= */
.ap-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  transition: all 0.25s ease;
}

.ap-btn-primary {
  background: linear-gradient(135deg, #1f3f66, #2f5d8a);
  color: #ffffff;
  border: 1px solid #1f3f66;
}

.ap-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #193554, #274f79);
  color: #ffffff;
}

.ap-btn-secondary {
  background: #ffffff;
  color: #1e3a5a;
  border: 1px solid #bfcddc;
}

.ap-btn-secondary:hover {
  background: #e8f0f8;
  color: #16324f;
}

.ansprechpartner-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.ap-meta-item {
  padding: 16px;
  border-radius: 14px;
  background: #f4f8fc;
  border: 1px solid #dbe5ef;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.ap-meta-title {
  display: block;
  margin-bottom: 6px;
  color: #3f556b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ap-meta-item a {
  color: #0f2a44;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.ap-meta-item a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .ansprechpartner-card {
    grid-template-columns: 1fr;
  }

  .ansprechpartner-media {
    min-height: 300px;
  }

  .ansprechpartner-info {
    padding: 25px;
  }

  .ansprechpartner-meta {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Trennung Keine Ahnung 
   ========================= */
.contact-section {
  background: #081120;
  padding: 80px 20px;
  color: #f8fafc;
}

.contact-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 560px);
  gap: 48px;
  align-items: start;
}

.contact-text h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: #ffffff;
}

.contact-text p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: #dbe7f5;
}

.contact-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #93c5fd;
}

.contact-form {
  background: #0f1a2e;
  border: 1px solid #334155;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #475569;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  line-height: 1.4;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #475569;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-color: #1d4ed8;
}
/* =========================
    Sektion
   ========================= */
.checkbox-group {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 8px 0 24px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: #1d4ed8;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f8fafc;
  word-break: break-word;
}

button[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  background: #1d4ed8;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  box-sizing: border-box;
}

button[type="submit"]:hover {
  background: #1e40af;
}

button[type="submit"]:focus {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

.note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #dbe7f5;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding: 56px 16px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

  .checkbox-group {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
  }

  .checkbox-group label {
    font-size: 0.92rem;
  }
}
/* CTA CALL CLEAN */
.cta-call-clean {
  width: 100%;
  padding: 48px 16px;
  text-align: center;
  background: linear-gradient(135deg, #0f3d91, #0a2c69);
  box-sizing: border-box;
}

.cta-label-clean {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c7d2fe;
}

.cta-button-clean {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 600;
  color: #0f3d91;
  background: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.cta-button-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.cta-sub-clean {
  margin-top: 14px;
  font-size: 14px;
  color: #e0e7ff;
}

/* MOBILE */
@media (max-width: 600px) {
  .cta-button-clean {
    font-size: 18px;
    padding: 12px 18px;
  }
}
