/* =========================================================
   COMPONENTS.CSS
   Wiederverwendbare Bausteine für die gesamte Website
========================================================= */

/* =========================
   HEADER
========================= */

.header {
  z-index: 1030;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header .container {
  position: relative;
}

.header-wrapper {
  min-height: 84px;
}

.header .toggle-menu {
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: var(--color-dark-2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.header .toggle-menu:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 103, 166, 0.16);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.header .toggle-menu iconify-icon {
  font-size: 22px;
}

.header .dropdown-menu {
  min-width: 240px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.header .dropdown-menu li + li {
  margin-top: 10px;
}

.header .dropdown-menu a {
  display: inline-flex;
  text-decoration: none;
  color: var(--color-dark-2);
  font-weight: 600;
}

.header .dropdown-menu a:hover {
  color: var(--color-primary);
}

/* =========================
   HERO / BANNER BASICS
========================= */

.banner-section {
  position: relative;
}

.banner-inner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 25, 0.12) 0%, rgba(11, 18, 25, 0.52) 100%);
  pointer-events: none;
}

.banner-inner-section .container {
  position: relative;
  z-index: 1;
}

/* =========================
   BUTTONS
========================= */

.btn-pill-primary,
.btn-pill-secondary,
.btn-pill-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-pill-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 103, 166, 0.22);
}

.btn-pill-primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 103, 166, 0.28);
}

.btn-pill-secondary {
  background: rgba(0, 103, 166, 0.08);
  color: var(--color-primary);
}

.btn-pill-secondary:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
  background: rgba(0, 103, 166, 0.12);
}

.btn-pill-light {
  background: #ffffff;
  color: var(--color-dark-2);
  box-shadow: var(--shadow-sm);
}

.btn-pill-light:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* =========================
   TRUST / PILLS
========================= */

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(0, 103, 166, 0.10);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

/* =========================
   GENERIC CARDS
========================= */

.card-surface {
  background: #ffffff;
  border: 1px solid rgba(0, 103, 166, 0.10);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.glass-surface-dark {
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   ICON BOX
========================= */

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 103, 166, 0.10), rgba(21, 133, 201, 0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 1px solid rgba(0, 103, 166, 0.10);
}

.icon-box iconify-icon {
  font-size: 24px;
}

/* =========================
   FAQ DARK
========================= */

.faq-dark {
  background: var(--color-dark);
}

.faq-dark .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.faq-dark .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 24px 0;
  box-shadow: none;
}

.faq-dark .accordion-button::after {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.faq-dark .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-primary-soft);
  box-shadow: none;
}

.faq-dark .accordion-button:focus {
  box-shadow: none;
}

.faq-dark .accordion-body {
  padding: 0 0 24px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.75;
}

.faq-dark .border-line {
  background: rgba(255,255,255,0.3);
}

/* =========================
   REVIEWS
========================= */

.reviews-slider-section-light {
  background: #ffffff;
}

.reviews-slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-slider-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.reviews-slider-header p {
  color: var(--color-text-soft);
  max-width: 760px;
  margin: 0 auto;
}

.reviews-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 8px 14px;
  border-radius: 30px;
  background: #f3f4f6;
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.google-rating-link img {
  height: 18px;
}

.google-rating-link:hover {
  background: #e5e7eb;
  color: #111;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--color-warning);
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 15px;
  color: #1f2937;
}

.review-author {
  font-size: 13px;
  color: var(--color-text-soft);
  font-weight: 600;
}

/* =========================
   FOOTER DARK
========================= */

.footer-dark {
  background: var(--color-dark);
  color: #ffffff;
}

.footer-brand-wrap,
.footer-nav-wrap,
.footer-rating-box {
  height: 100%;
}

.footer-kicker,
.footer-rating-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
}

.footer-dark h2 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  color: #ffffff;
}

.footer-dark p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.footer-contact-link iconify-icon {
  font-size: 18px;
  color: var(--color-primary-soft);
}

.footer-nav-wrap h5 {
  margin: 0 0 14px 0;
  font-size: 16px;
  color: #ffffff;
}

.footer-menu-modern {
  display: grid;
  gap: 10px;
}

.footer-menu-modern a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  transition: 0.2s ease;
}

.footer-menu-modern a:hover,
.footer-contact-link:hover {
  color: var(--color-primary-soft);
}

.footer-rating-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 22px;
}

.footer-rating-score {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.footer-rating-stars {
  margin-top: 8px;
  font-size: 18px;
  color: var(--color-warning);
}

.footer-rating-box p {
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

/* =========================
   SIMPLE STATUS / NOTES
========================= */

.info-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,103,166,0.06);
  color: #486170;
  font-size: 14px;
  line-height: 1.6;
}

.info-note iconify-icon {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 2px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .footer-rating-box {
    border-radius: 20px;
  }
}

@media (max-width: 767.98px) {
  .header-wrapper {
    min-height: 72px;
  }

  .faq-dark .accordion-button {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq-dark .accordion-body {
    font-size: 15px;
    line-height: 1.65;
    padding-bottom: 20px;
  }

  .reviews-slider-header h2 {
    font-size: 30px;
  }

  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
  }

  .reviews-track {
    gap: 16px;
  }
}
/* ===== Steps / Badge / Line Layout ===== */

.gap-7 {
  gap: 7px;
}

.round-36 {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.border-line {
  flex: 1;
  height: 1px;
  background-color: #ddd;
  border: none;
}

.text-bg-dark {
  background-color: #111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}
.round-36 {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gap-7 {
  gap: 30px;
}

.border-line {
  width: 120px;
  min-width: 120px;
  height: 1px;
  margin: 0;
  border: 0;
  background: #c9cdd3;
  opacity: 1;
}

.text-bg-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: #1c2830;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.35);

  color: #fff;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: all .25s ease;
}

.hero-trust-badge:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}

.hero-trust-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.35);

  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.hero-trust-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.hero-trust-google {
  background: #f3f4f6;
  color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.hero-trust-google {
  background: #f1f1f1;
  color: #000;
}

.hero-google-logo {
  height: 18px;
  width: auto;
}
/* =========================================================
   SLIDER BUTTONS FIX (Pfeile links/rechts)
========================================================= */

/* Standard */
.slider-btn,
.slick-arrow,
.swiper-button-next,
.swiper-button-prev {
  background: linear-gradient(135deg, #0067a6 0%, #1e8edb 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 103, 166, 0.25);
  transition: all 0.25s ease;
}

/* Icons drin (wichtig bei arrows) */
.slider-btn i,
.slick-arrow:before,
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #ffffff !important;
}

/* Hover = ORANGE */
.slider-btn:hover,
.slick-arrow:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(245, 105, 0, 0.35);
}

/* Active */
.slider-btn:active,
.slick-arrow:active,
.swiper-button-next:active,
.swiper-button-prev:active {
  background: #d95700 !important;
  transform: scale(0.95);
}

/* GANZ WICHTIG → verhindert weiß */
.slider-btn:hover i,
.slick-arrow:hover:before,
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #ffffff !important;
}
/* =========================
   TYPO OVERRIDES COMPONENTS
========================= */

.header .dropdown-menu a,
.btn,
.btn-pill-primary,
.btn-pill-secondary,
.btn-pill-light,
.trust-pill,
.google-rating-link,
.review-text,
.faq-dark .accordion-body,
.footer-contact-link {
  font-family: "Roboto", sans-serif;
}

.badge-soft,
.kicker,
.reviews-kicker,
.prozess-kicker,
.tarif-table-kicker {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* =========================================================
   HOME HERO
========================================================= */

.banner-inner-section {
  min-height: 92vh;
  padding-top: 120px;
  padding-bottom: 56px;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.34) 0%, rgba(7, 16, 28, 0.56) 55%, rgba(7, 16, 28, 0.74) 100%);
  z-index: 0;
}

.banner-inner-section .container,
.banner-inner-section .z-1 {
  position: relative;
  z-index: 2;
}

/* obere Infozeile */
.banner-inner-section .animate-spin + p,
.banner-inner-section .row p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 680px;
}

.banner-inner-section .row p .text-primary {
  color: #8fd3ff !important;
  font-weight: 700;
}

/* trust badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-trust-badge:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-google-logo {
  height: 18px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* headline */
.banner-inner-section h1 {
  font-family: var(--font-headline);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  max-width: 12ch;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

/* subtext */
.banner-inner-section h1 + p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86) !important;
  max-width: 760px;
  margin: 0;
}

.banner-inner-section h1 + p a {
  color: #ffffff;
  font-weight: 700;
  text-underline-offset: 3px;
}

/* ctas */
.banner-inner-section .btn-lg {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.banner-inner-section .btn-outline-light {
  border-width: 1.5px;
}

/* mobile */
@media (max-width: 991.98px) {
  .banner-inner-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .banner-inner-section h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 60px);
  }

  .banner-inner-section h1 + p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-trust-badges {
    gap: 10px;
  }

  .hero-trust-badge {
    font-size: 13px;
    padding: 9px 12px;
  }
}

@media (max-width: 767.98px) {
  .banner-inner-section {
    padding-top: 96px;
    padding-bottom: 28px;
    min-height: auto;
  }

  .banner-inner-section .d-flex.flex-column.gap-4.pb-5.pb-xl-10 {
    gap: 18px !important;
    padding-bottom: 0 !important;
  }

  .banner-inner-section .row .d-flex {
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .banner-inner-section .row p {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-trust-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 46px;
  }

  .banner-inner-section h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 0.98;
    max-width: 100%;
  }

  .banner-inner-section h1 + p {
    font-size: 15px;
    line-height: 1.62;
  }

  .banner-inner-section .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .banner-inner-section .d-flex.gap-3.flex-wrap {
    flex-direction: column;
  }
}
/* =========================================================
   FOOTER PREMIUM V2
========================================================= */

.footer-premium-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,184,105,.12), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(59,130,246,.14), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(79,125,240,.14), transparent 34%),
    linear-gradient(180deg, #08112f 0%, #101a38 52%, #0b1736 100%);
  color: #fff;
}

@media (min-width: 1400px) {
  .footer-premium-v2 > .container {
    max-width: 1680px;
  }
}

.footer-premium-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-bottom: 34px;
}

.footer-premium-brandcard,
.footer-rating-box-v2,
.footer-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045)),
    linear-gradient(135deg, rgba(79,125,240,.08), rgba(255,184,105,.03));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}

.footer-premium-brandcard::before,
.footer-rating-box-v2::before,
.footer-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 24%);
  pointer-events: none;
}

.footer-premium-brandcard {
  padding: 32px;
}

.footer-premium-side {
  display: grid;
  gap: 18px;
}

.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-chip-link:hover {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255,184,105,.14);
  border-color: rgba(255,184,105,.34);
  box-shadow: 0 16px 28px rgba(245,107,0,.14);
}

.footer-trust-line-v2 {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-trust-line-v2 span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: .96rem;
}

.footer-rating-box-v2 {
  padding: 26px;
}

.footer-rating-main {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 8px;
}

.footer-rating-score {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: #fff;
}

.footer-rating-stars {
  color: #fbbf24;
  font-size: 1.15rem;
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.footer-rating-box-v2 p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.footer-rating-copy {
  margin-top: 14px !important;
}

.footer-rating-link {
  display: inline-flex;
  margin-top: 16px;
  text-decoration: none;
  color: #ffb869;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.footer-rating-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-cta-card {
  padding: 24px;
}

.footer-cta-kicker {
  display: inline-block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.68);
  margin-bottom: 10px;
}

.footer-cta-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.footer-cta-card p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.footer-cta-btn.primary {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(29,78,216,.20);
}

.footer-cta-btn.primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffb869 0%, #ff9336 48%, #f56b00 100%);
  box-shadow: 0 18px 34px rgba(245,107,0,.20);
}

.footer-cta-btn.secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.footer-cta-btn.secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}

.footer-premium-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 0 10px;
}

.footer-premium-links .footer-nav-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.footer-premium-links .footer-nav-wrap:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

.footer-premium-links .footer-nav-wrap h5 {
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.footer-premium-links .footer-menu-modern li + li {
  margin-top: 10px;
}

.footer-premium-links .footer-menu-modern a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-premium-links .footer-menu-modern a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-premium-links .footer-menu-modern a[href="/checklist"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-premium-links .footer-menu-modern a[href="/checklist"]::before {
  content: "💡";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  color: #ffbe78;
  opacity: 0.96;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(255, 190, 120, 0.2));
  flex-shrink: 0;
}

.footer-premium-links .footer-menu-modern a[href="/checklist"]:hover::before {
  color: #ffd39b;
  filter: drop-shadow(0 0 12px rgba(255, 211, 155, 0.28));
}

.footer-bottom-premium-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  margin-top: 24px;
}

.footer-bottom-premium-v2 p {
  color: rgba(255,255,255,.72);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .footer-premium-top {
    grid-template-columns: 1fr;
  }

  .footer-premium-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .footer-premium-brandcard,
  .footer-rating-box-v2,
  .footer-cta-card {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-premium-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom-premium-v2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-chips,
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-chip-link,
  .footer-cta-btn {
    width: 100%;
  }
}
.internal-links-premium {
  padding: 60px 0;
  background: #f8fafc;
}

.internal-link-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.internal-link-card h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.internal-link-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.internal-link-card li {
  margin-bottom: 8px;
}

.internal-link-card a {
  text-decoration: none;
  color: #0f172a;
}

.internal-links-cta {
  margin-top: 40px;
  padding: 20px;
  border-radius: 12px;
  background: #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-premium-pro .internal-links-premium {
  padding: 0 0 56px;
}

.internal-link-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
}

.internal-link-card h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
}

.internal-link-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.internal-link-card li + li {
  margin-top: 10px;
}

.internal-link-card a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}

.internal-link-card a:hover {
  color: #fff;
}

.internal-links-cta {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.internal-links-cta strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.internal-links-cta span {
  color: rgba(255,255,255,.8);
}

.internal-links-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .internal-links-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
   CONTACT COMPLETE.HTML – FINAL CSS
   Nur für die neue contact_complete.html
   Ganz unten in components.css einfügen
========================================================= */

.kontakt-page-modern {
  background:
    radial-gradient(circle at 12% 0%, rgba(217,242,85,.06), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(59,130,246,.06), transparent 22%),
    #f5f3ee;
}

/* HERO */
.kontakt-hero-modern {
  position: relative;
  overflow: hidden;
}

.kontakt-hero-modern__title {
  max-width: 10ch;
}

.kontakt-hero-modern__sub {
  max-width: 760px;
}

.kontakt-hero-modern__points {
  display: grid;
  gap: 10px;
}

.kontakt-hero-modern__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.kontakt-hero-modern__actions .btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.kontakt-hero-modern__side {
  display: flex;
  justify-content: flex-end;
}

.kontakt-hero-modern__card {
  width: 100%;
  max-width: 500px;
}

.kontakt-hero-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 18px;
}

.kontakt-hero-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, #faf9f5, #f7f4ed);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.kontakt-hero-list__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15,23,42,.08);
  color: #0f172a;
}

.kontakt-hero-list__item.is-accent {
  background:
    radial-gradient(circle at 18% 20%, rgba(217,242,85,.18), transparent 52%),
    linear-gradient(180deg, #faf9f5, #f7f4ed);
  border-color: rgba(217,242,85,.45);
}

.kontakt-hero-list__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  font-size: 1.15rem;
  flex: 0 0 46px;
}

.kontakt-hero-list__item strong,
.kontakt-hero-list__item small {
  display: block;
}

.kontakt-hero-list__item strong {
  color: #0f172a;
  margin-bottom: 2px;
}

.kontakt-hero-list__item small {
  color: #667085;
}

.kontakt-hero-modern__highlight {
  margin-top: 8px;
}

/* SECTION INTRO */
.kontakt-section-modern {
  padding: 90px 0;
}

.kontakt-section-modern__intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}

.kontakt-section-modern__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.kontakt-section-modern__intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin-bottom: 14px;
  color: #0f172a;
}

.kontakt-section-modern__intro p {
  color: #667085;
  line-height: 1.82;
  margin-bottom: 0;
  max-width: 760px;
}

/* TRUST PILLS */
.kontakt-section-modern__trust {
  display: grid;
  gap: 14px;
}

.kontakt-trust-pill {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 28px rgba(15,23,42,.04);
}

.kontakt-trust-pill__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #faf9f5, #f7f4ed);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-size: 1rem;
}

.kontakt-trust-pill strong {
  display: block;
  color: #0f172a;
  margin-bottom: 3px;
}

.kontakt-trust-pill small {
  display: block;
  color: #667085;
  line-height: 1.6;
}

/* MAIN SHELL */
.kontakt-modern-shell {
  position: relative;
  border-radius: 38px;
  padding: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(15,23,42,.08);
  overflow: hidden;
}

.kontakt-modern-shell__glow {
  content: "";
  position: absolute;
  inset: auto -140px -140px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,242,85,.14), transparent 68%);
  pointer-events: none;
}

.kontakt-modern-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: start;
}

/* FORM CARD */
.kontakt-modern-form,
.kontakt-modern-side {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
  height: 100%;
}

.kontakt-modern-form__head {
  margin-bottom: 22px;
}

.kontakt-modern-form__badge,
.kontakt-modern-side__badge,
.kontakt-location-copy__badge,
.kontakt-map-box-modern__badge,
.kontakt-cta-modern__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-size: .9rem;
  font-weight: 700;
}

.kontakt-modern-form__badge {
  margin-bottom: 14px;
}

.kontakt-modern-form__head h3,
.kontakt-modern-side__head h3,
.kontakt-location-copy h3 {
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: #0f172a;
}

.kontakt-modern-form__head p,
.kontakt-modern-side__head p,
.kontakt-location-copy p {
  color: #667085;
  line-height: 1.8;
  margin-bottom: 0;
}

/* INPUTS */
.kontakt-input-wrap {
  position: relative;
}

.kontakt-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #667085;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kontakt-input-wrap--textarea .kontakt-input-icon {
  top: 18px;
  transform: none;
}

.kontakt-input-wrap .form-control,
.kontakt-input-wrap .form-select {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  padding: 16px 16px 16px 48px;
  box-shadow: none;
}

.kontakt-input-wrap textarea.form-control {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.kontakt-input-wrap .form-control:focus,
.kontakt-input-wrap .form-select:focus {
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 0 0 4px rgba(59,130,246,.08);
}

/* TOPICS */
.kontakt-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 8px;
}

.kontakt-topic-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.kontakt-topic-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.kontakt-topic-card__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, #faf9f5, #f7f4ed);
  color: #0f172a;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.kontakt-topic-card:hover .kontakt-topic-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
}

.kontakt-topic-card input:checked + .kontakt-topic-card__inner {
  background: linear-gradient(180deg, rgba(15,23,42,.98), rgba(15,23,42,.92));
  color: #fff;
  border-color: rgba(15,23,42,.95);
  box-shadow: 0 18px 34px rgba(15,23,42,.14);
}

/* ALERT + FOOTER */
.kontakt-alert {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
}

.kontakt-alert.success {
  display: block;
  background: rgba(34,197,94,.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,.18);
}

.kontakt-alert.error {
  display: block;
  background: rgba(239,68,68,.12);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.18);
}

.kontakt-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-top: 6px;
}

.kontakt-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  border: 0;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(15,23,42,.16);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.kontakt-submit:hover {
  transform: translateY(-2px);
  color: #fff;
}

.kontakt-form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  line-height: 1.5;
}

/* SIDE CARD */
.kontakt-modern-side__head {
  margin-bottom: 20px;
}

.kontakt-modern-side__badge {
  margin-bottom: 14px;
}

.kontakt-contact-list {
  display: grid;
  gap: 14px;
}

.kontakt-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, #fcfbf8, #f7f4ed);
  text-decoration: none;
  color: #0f172a;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.kontakt-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15,23,42,.06);
  border-color: rgba(15,23,42,.12);
  color: #0f172a;
}

.kontakt-contact-card.is-highlight {
  background:
    radial-gradient(circle at 18% 20%, rgba(217,242,85,.18), transparent 52%),
    linear-gradient(180deg, #fcfbf8, #f7f4ed);
  border-color: rgba(217,242,85,.45);
}

.kontakt-contact-card.is-static {
  cursor: default;
}

.kontakt-contact-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  font-size: 1.1rem;
}

.kontakt-contact-card__content {
  flex: 1;
  min-width: 0;
}

.kontakt-contact-card__content strong,
.kontakt-contact-card__content small {
  display: block;
}

.kontakt-contact-card__content strong {
  margin-bottom: 3px;
  color: #0f172a;
}

.kontakt-contact-card__content small {
  color: #667085;
  line-height: 1.6;
}

.kontakt-contact-card__arrow {
  color: #98a2b3;
  font-size: 1.1rem;
}

/* LOCATION */
.kontakt-location-section {
  padding: 0 0 26px;
}

.kontakt-location-shell {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 36px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
}

.kontakt-location-copy {
  height: 100%;
  padding: 6px 4px;
}

.kontakt-location-copy__badge {
  margin-bottom: 14px;
}

.kontakt-location-facts {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.kontakt-location-fact {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #faf9f5, #f7f4ed);
  border: 1px solid rgba(15,23,42,.08);
}

.kontakt-location-fact strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.kontakt-location-fact span {
  color: #667085;
  line-height: 1.6;
}

.kontakt-map-shell-modern {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(rgba(9,17,31,.42), rgba(9,17,31,.42)),
    url('assets/images/backgrounds/about.png') center/cover no-repeat;
  min-height: 480px;
}

.kontakt-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9,17,31,.44);
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 2;
}

.kontakt-map-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.kontakt-map-box-modern {
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,.95);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(15,23,42,.18);
}

.kontakt-map-box-modern__badge {
  margin-bottom: 14px;
}

.kontakt-map-box-modern h4 {
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -.03em;
  font-size: 1.9rem;
}

.kontakt-map-box-modern p,
.kontakt-map-box-modern small {
  color: #667085;
  line-height: 1.7;
}

.kontakt-map-box-modern .btn {
  margin: 14px 0 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
}

/* CTA */
.kontakt-cta-section {
  padding: 0 0 34px;
}

.kontakt-cta-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 12%, rgba(217,242,85,.14), transparent 22%),
    linear-gradient(180deg, #09111f 0%, #101a2d 100%);
  box-shadow: 0 30px 80px rgba(15,23,42,.18);
}

.kontakt-cta-modern::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 66%);
  pointer-events: none;
}

.kontakt-cta-modern > * {
  position: relative;
  z-index: 1;
}

.kontakt-cta-modern__content {
  max-width: 760px;
}

.kontakt-cta-modern__kicker {
  margin-bottom: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.kontakt-cta-modern__content h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.kontakt-cta-modern__content p {
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  margin-bottom: 0;
}

.kontakt-cta-modern__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.kontakt-cta-modern__actions .btn {
  min-height: 54px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .kontakt-section-modern__intro,
  .kontakt-modern-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-hero-modern__side {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .kontakt-cta-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .kontakt-cta-modern__actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .kontakt-section-modern,
  .kontakt-location-section,
  .kontakt-cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .kontakt-modern-shell,
  .kontakt-modern-form,
  .kontakt-modern-side,
  .kontakt-location-shell,
  .kontakt-cta-modern {
    border-radius: 24px;
    padding: 22px;
  }

  .kontakt-topic-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .kontakt-submit {
    width: 100%;
  }

  .kontakt-map-shell-modern {
    min-height: 380px;
  }

  .kontakt-map-box-modern h4 {
    font-size: 1.55rem;
  }

  .kontakt-cta-modern__actions {
    flex-direction: column;
  }

  .kontakt-cta-modern__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   CONTACT COLOR TUNE – passend zu deinen anderen Seiten
========================================================= */

.kontakt-page-modern {
  background:
    radial-gradient(circle at 12% 0%, rgba(253,135,40,.08), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(13,110,253,.08), transparent 22%),
    #f8f7f4;
}

/* Hero / dunkle Flächen */
.kontakt-hero-modern,
.kontakt-cta-modern {
  background:
    radial-gradient(circle at 84% 12%, rgba(253,135,40,.16), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(13,110,253,.16), transparent 24%),
    linear-gradient(180deg, #081226 0%, #0f1d3a 100%);
}

/* Badges */
.kontakt-section-modern__kicker,
.kontakt-modern-form__badge,
.kontakt-modern-side__badge,
.kontakt-location-copy__badge,
.kontakt-map-box-modern__badge {
  background: rgba(13,110,253,.08);
  border-color: rgba(13,110,253,.18);
  color: #0d3f96;
}

/* Trust / kleine Info-Boxen */
.kontakt-trust-pill__icon,
.kontakt-contact-card__icon,
.kontakt-hero-list__icon,
.kontakt-input-icon {
  color: #0d6efd;
}

/* Submit / Hauptbuttons */
.kontakt-submit {
  background: linear-gradient(135deg, #0d6efd 0%, #3f8cff 100%);
  box-shadow: 0 16px 36px rgba(13,110,253,.24);
}

.kontakt-submit:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(13,110,253,.30);
}

/* aktive Themen-Auswahl */
.kontakt-topic-card input:checked + .kontakt-topic-card__inner {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  border-color: #0d6efd;
  color: #fff;
  box-shadow: 0 18px 34px rgba(13,110,253,.24);
}

/* Highlight Cards statt lime */
.kontakt-contact-card.is-highlight,
.kontakt-hero-list__item.is-accent {
  background:
    radial-gradient(circle at 18% 20%, rgba(253,135,40,.16), transparent 52%),
    linear-gradient(180deg, #fffaf5, #f8f4ef);
  border-color: rgba(253,135,40,.34);
}

/* Orange Highlights */
.kontakt-hero-modern__highlight,
.kontakt-map-box-modern .btn.btn-primary,
.kontakt-cta-modern__actions .btn.btn-primary {
  background: linear-gradient(135deg, #fd8728 0%, #ff9a4d 100%);
  border-color: #fd8728;
  color: #fff;
  box-shadow: 0 16px 34px rgba(253,135,40,.24);
}

.kontakt-map-box-modern .btn.btn-primary:hover,
.kontakt-cta-modern__actions .btn.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(253,135,40,.30);
}

/* Links */
.kontakt-contact-card:hover,
.kontakt-hero-list__item:hover {
  border-color: rgba(13,110,253,.20);
}

.kontakt-contact-card__arrow {
  color: #0d6efd;
}

/* Fokus auf Orange bei kleinen Highlights */
.kontakt-location-fact strong,
.kontakt-modern-form__head h3 span,
.kontakt-section-modern__intro h2 span {
  color: #fd8728;
}
/* =================================================
   CONTACT PREMIUM – SITEHERO STYLE
================================================= */

.kontakt-premium {
  padding: 120px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(13,110,253,.06), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(253,135,40,.06), transparent 25%),
    #f8f7f4;
}

.kontakt-premium-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT FORM */
.kontakt-premium-form {
  background: #fff;
  padding: 48px;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(15,23,42,.08);
}

.kontakt-premium-head h2 {
  font-size: clamp(2.5rem,4vw,4rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}

.kontakt-premium-head p {
  color: #667085;
  max-width: 520px;
}

/* INPUT GRID */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.form-control,
.form-select {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
}

/* TOPICS */
.kontakt-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.kontakt-topics label {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f3f5;
  cursor: pointer;
  font-size: .9rem;
}

/* BUTTON */
.kontakt-btn {
  margin-top: 20px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
}

/* RIGHT CARD */
.kontakt-premium-card {
  display: flex;
}

.kontakt-card-inner {
  width: 100%;
  padding: 40px;
  border-radius: 36px;
  background: linear-gradient(180deg,#0b1a33,#0f2242);
  color: #fff;
  box-shadow: 0 40px 100px rgba(15,23,42,.25);
}

.kontakt-card-inner h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.kontakt-card-inner p {
  color: rgba(255,255,255,.8);
}

/* ITEMS */
.kontakt-card-items {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.kontakt-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  text-decoration: none;
  color: #fff;
  transition: .2s;
}

.kontakt-item:hover {
  background: rgba(255,255,255,.12);
}

.kontakt-item.highlight {
  background: linear-gradient(135deg,#fd8728,#ff9a4d);
}

.kontakt-item strong {
  display: block;
}

.kontakt-item small {
  color: rgba(255,255,255,.7);
}

/* FOOTER */
.kontakt-card-footer {
  margin-top: 24px;
  opacity: .8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .kontakt-premium-wrap {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   GLOBAL TYPOGRAPHY HARMONY
================================================= */

:root {
  --type-kicker: clamp(11px, 0.18vw + 10.5px, 13px);
  --type-body: clamp(15px, 0.12vw + 14.5px, 17px);
  --type-body-lg: clamp(16px, 0.2vw + 15px, 19px);
  --type-h1: clamp(40px, 5vw, 64px);
  --type-h2: clamp(30px, 3.5vw, 48px);
  --type-h3: clamp(22px, 2.2vw, 32px);
  --type-h4: clamp(18px, 1.6vw, 24px);
}

body,
p,
li,
label,
input,
textarea,
select,
button {
  font-family: var(--font-body);
}

body,
p,
li,
.accordion-body,
.footer-sub,
.footer-rating-copy,
.footer-cta-card p,
.thankyou-card p,
.thankyou-side-card p,
.kontakt-map-box-modern p,
.kontakt-premium-head p,
.kontakt-card-inner p {
  font-size: var(--type-body);
  line-height: 1.7;
}

.banner-inner-section h1,
.home-solutions-head-editorial h2,
.home-costs-editorial-head h2,
.home-costs-feature-main h3,
.home-check-intro h2,
.kontakt-section-modern__intro h2,
.kontakt-premium-head h2,
.thankyou-card h1,
.thankyou-card h2 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.banner-inner-section h1 {
  font-size: var(--type-h1);
  line-height: 0.94;
  max-width: 11ch;
}

.banner-inner-section h1 + p {
  font-size: var(--type-body-lg);
  line-height: 1.7;
  max-width: 48ch;
}

.home-solutions-head-editorial h2,
.home-costs-editorial-head h2,
.home-check-intro h2,
.kontakt-section-modern__intro h2,
.kontakt-premium-head h2 {
  font-size: var(--type-h2);
  line-height: 0.96;
}

.home-solutions-head-editorial p,
.home-costs-editorial-head p,
.home-check-intro p {
  font-size: var(--type-body-lg);
  line-height: 1.72;
}

.home-solution-pro-card h3,
.home-costs-feature-main h3,
.home-check-step-copy h3,
.home-check-funnel-step h3,
.kontakt-modern-form__head h3,
.kontakt-modern-side__head h3,
.kontakt-location-copy h3,
.footer-cta-card h3 {
  font-size: var(--type-h3);
  line-height: 1;
  letter-spacing: -0.04em;
}

.faq-dark .accordion-button,
.accordion-button {
  font-family: var(--font-ui);
  font-size: clamp(16px, 0.35vw + 15px, 19px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.reviews-slider-header h2,
.footer-dark h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-solutions-kicker,
.home-check-kicker,
.home-costs-editorial-kicker,
.footer-kicker,
.footer-cta-kicker,
.footer-rating-kicker,
.home-solution-eyebrow,
.thankyou-badge,
.kontakt-premium-kicker,
.kontakt-card-kicker,
.kontakt-modern-kicker {
  font-family: var(--font-accent);
  font-size: var(--type-kicker);
  letter-spacing: 0.08em;
}

@media (max-width: 767.98px) {
  body,
  p,
  li,
  .accordion-body,
  .footer-sub,
  .footer-rating-copy,
  .footer-cta-card p {
    font-size: 15px;
    line-height: 1.66;
  }

  .banner-inner-section h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.96;
  }

  .banner-inner-section h1 + p,
  .home-solutions-head-editorial p,
  .home-costs-editorial-head p,
  .home-check-intro p {
    font-size: 15px;
  }

  .home-solutions-head-editorial h2,
  .home-costs-editorial-head h2,
  .home-check-intro h2,
  .kontakt-section-modern__intro h2,
  .kontakt-premium-head h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .home-solution-pro-card h3,
  .home-costs-feature-main h3,
  .home-check-step-copy h3,
  .home-check-funnel-step h3,
  .kontakt-modern-form__head h3,
  .kontakt-modern-side__head h3,
  .kontakt-location-copy h3,
  .footer-cta-card h3 {
    font-size: clamp(20px, 6vw, 28px);
  }
}

/* =================================================
   PAGE SYSTEM TYPOGRAPHY
================================================= */

.sitehero__title,
.contact-hero-copy h1,
.pkv-hero-title,
.pdf-hero h1,
.thankyou-card h1,
.kosten-page .kosten-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(38px, 5vw, 64px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.045em !important;
}

.sitehero__sub,
.contact-hero-copy p,
.pkv-hero-sub,
.pdf-hero p,
.thankyou-card p.lead-text,
.kosten-page .kosten-hero p,
.kosten-page .kosten-head p,
.kosten-page .koeln-cinema-copy p {
  font-family: var(--font-body) !important;
  font-size: var(--type-body-lg) !important;
  line-height: 1.72 !important;
}

.sitehero__chip,
.pkv-chip,
.pkv-badge,
.pdf-hero-note strong,
.pdf-hero-spotlight strong,
.thankyou-section-title,
.kosten-page .kosten-hero__badge,
.kosten-page .koeln-cinema-kicker {
  font-family: var(--font-accent) !important;
  font-size: var(--type-kicker) !important;
  letter-spacing: 0.08em !important;
}

.pkv-section-head h2,
.pkv-rights-copy h2,
.kosten-page .kosten-head h2,
.kosten-page .faq-premium-top h2,
.kosten-page .risk-table-top h2,
.kosten-page .risk-table-top h3,
.pdf-library-head h2,
.thankyou-side-head h3 {
  font-family: var(--font-display) !important;
  font-size: var(--type-h2) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
}

.pkv-section-head p,
.pkv-rights-copy p,
.pdf-hero-note p,
.pdf-hero-spotlight p,
.thankyou-side-head p,
.thankyou-note,
.thankyou-empty,
.kosten-page .risk-table-top p,
.kosten-page .faq-premium-shell .accordion-body {
  font-family: var(--font-body) !important;
  font-size: var(--type-body) !important;
  line-height: 1.7 !important;
}

.pkv-premium-card h3,
.pkv-target-card h3,
.pkv-special-card h3,
.pkv-option-card h3,
.pkv-tariff-card h3,
.pdf-topic-card h3,
.pdf-library-card h3,
.thankyou-cta-copy strong,
.kosten-page .koeln-cinema-bottom .kosten-card h3,
.kosten-page .faq-premium-shell .accordion-button {
  font-family: var(--font-headline) !important;
  font-size: var(--type-h3) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
}

.pkv-premium-card p,
.pkv-target-card p,
.pkv-special-card p,
.pkv-option-card p,
.pkv-tariff-card p,
.pkv-card-note,
.thankyou-summary-item span,
.thankyou-cta-copy span,
.thankyou-mini-checklist div,
.kosten-page .koeln-cinema-bottom .kosten-card p,
.kosten-page .risk-table-note,
.kosten-page .risk-table tbody td,
.kosten-page .risk-table thead th,
.pdf-topic-card p,
.pdf-library-card p,
.pdf-doc-link small {
  font-family: var(--font-body) !important;
  font-size: var(--type-body) !important;
  line-height: 1.65 !important;
}

.kosten-page .risk-table thead th,
.pkv-compare-table thead th,
.pkv-compare-table tbody td strong,
.pkv-compare-table tbody td span,
.pkv-compare-table tbody td p {
  letter-spacing: -0.02em !important;
}

.kosten-page .risk-table thead th,
.pkv-compare-table thead th,
.thankyou-summary-item strong {
  font-family: var(--font-ui) !important;
  font-size: clamp(15px, 0.2vw + 14px, 17px) !important;
  line-height: 1.4 !important;
}

@media (max-width: 767.98px) {
  .sitehero__title,
  .contact-hero-copy h1,
  .pkv-hero-title,
  .pdf-hero h1,
  .thankyou-card h1,
  .kosten-page .kosten-hero h1 {
    font-size: clamp(32px, 9vw, 46px) !important;
  }

  .pkv-section-head h2,
  .pkv-rights-copy h2,
  .kosten-page .kosten-head h2,
  .kosten-page .faq-premium-top h2,
  .kosten-page .risk-table-top h2,
  .kosten-page .risk-table-top h3,
  .pdf-library-head h2,
  .thankyou-side-head h3 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .sitehero__sub,
  .contact-hero-copy p,
  .pkv-hero-sub,
  .pdf-hero p,
  .thankyou-card p.lead-text,
  .kosten-page .kosten-hero p,
  .kosten-page .kosten-head p,
  .kosten-page .koeln-cinema-copy p {
    font-size: 15px !important;
    line-height: 1.66 !important;
  }

  .pkv-premium-card h3,
  .pkv-target-card h3,
  .pkv-special-card h3,
  .pkv-option-card h3,
  .pkv-tariff-card h3,
  .pdf-topic-card h3,
  .pdf-library-card h3,
  .thankyou-cta-copy strong,
  .kosten-page .koeln-cinema-bottom .kosten-card h3,
  .kosten-page .faq-premium-shell .accordion-button {
    font-size: clamp(20px, 5.5vw, 28px) !important;
  }
}
