/* =========================================================
   EK4Y – BASE STYLE
   Struktur: Farben | Reset | Typo | Layout | Komponenten
   Version: 2025-11
========================================================= */

/* =======================
   FARBSKALA
======================= */
/*
100% #ffffff
 95% #e8fdf5
 90% #d1faeb
 85% #baf8e1
 80% #a3f5d7
 75% #8cf3cd
 70% #75f0c3
 65% #5deeb9
 60% #46ecaf
 55% #2fe9a5
 50% #18e79b
 46% #17d68f  ← Hauptfarbe
 40% #13b97c
 30% #0f8a5d
 20% #0a5c3e
 10% #052e1f
  0% #000000
*/

/* =======================
   RESET & BASIS
======================= */
html,
body {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #17d68f;
  text-decoration: none;
  transition: color .2s, text-decoration .2s;
}

a:hover,
a:focus {
  color: #14c27b;
  text-decoration: underline;
}

a:active {
  color: #0f8a5d;
}

em {
  font-style: italic;
}

.text-success,
.text-primary {
  color: #17d68f !important;
}

.bg-success {
  background-color: #17d68f !important;
}

.container-fluid {
  max-width: 80% !important;
  margin-inline: auto;
}

.form-check-label {
  color: #000;
}

.fw-bold {
  color: #000;
}

.fw-bold-footer {
  color: #17d68f;
}

/* =======================
   MAIN CONTENT
======================= */
#maincontent {
  position: relative;
  margin: -50px auto -100px;
  z-index: 1;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 2.5rem;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

@media(max-width:991.98px) {
  #maincontent {
    margin: -25px auto -50px;
    border-radius: 1.5rem;
  }
}

/* =======================
   CTA – CONSULTING
======================= */
#cta-consulting {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8rem 0 2rem;
}

#cta-consulting .btn-mint {
  background: #17d68f;
  color: #fff;
  border-radius: 26px;
  padding: .75rem 1.5rem;
  transition: .2s;
}

#cta-consulting .btn-mint:hover {
  background: #14c27b;
}

/* #############################################
  ## STATIC MENU
############################################# */
#static-menu {
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  z-index: 1000;
  text-align: right;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: opacity .6s ease-in-out, background-color .6s ease-in-out, border-color .6s ease-in-out, color .6s ease-in-out;
}

#static-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#static-menu strong {
  color: #17d68f;
}

#static-menu li {
  margin: .35rem 0;
  font-size: .95rem;
  opacity: .95;
  transition: color .2s;
}

#static-menu li strong {
  font-weight: 600;
  font-size: 1rem;
}

#static-menu li:hover {
  color: #17d68f;
}

#static-menu.scrolled {
  background-color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  color: #111;
  border-color: rgba(0, 0, 0, .06);
}

#static-menu img {
  max-width: 120px;
  height: auto;
  margin-top: 1rem;
  display: block;
  margin-left: auto;
}

@media(max-width:1200px) {
  #static-menu {
    display: none;
  }
}

/* #############################################
  ## NAVIGATION TRANSPARENT & SCROLL-EFFEKT
############################################# */
.navbar {
  white-space: nowrap;
  gap: 1rem;
}

#mainNavbar .navbar-nav {
  gap: 2.75rem;
}

#mainNavbar {
  background: transparent;
  transition: background-color .4s ease, box-shadow .4s ease, padding .3s ease;
}

#mainNavbar .nav-link {
  color: #fff;
}

#mainNavbar.scrolled {
  background-color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

#mainNavbar.scrolled .nav-link {
  color: #111;
}

#mainNavbar.scrolled .nav-link:hover {
  color: #0f8a5d;
}

#mainNavbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.btn-cta {
  background: #17d68f;
  border-color: #17d68f;
  border-radius: 26px;
  color: #fff !important;
  transition: .3s;
}

.btn-cta:hover {
  background: #14c27b;
  border-color: #14c27b;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff !important;
  transition: .3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000 !important;
}

.navbar-brand img {
  height: auto;
  max-height: 40px;
  max-width: 180px;
}

@media(max-width:991.98px) {
  .navbar-brand img {
    max-height: 32px;
    max-width: 150px;
  }
}

.navbar-toggler {
  border: none;
  padding: .25rem .5rem;
}

/* #############################################
  ## NAVIGATION BASIS
############################################# */
#mainNavbar {
  background: transparent;
  transition: background-color .4s ease, box-shadow .4s ease, padding .3s ease;
}

#mainNavbar .navbar-nav {
  gap: 2.75rem;
}

#mainNavbar .nav-link {
  color: #fff;
  transition: color .3s;
}

#mainNavbar .nav-link:hover {
  color: #17d68f;
}

#mainNavbar.scrolled {
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

#mainNavbar.scrolled .nav-link {
  color: #111;
}

#mainNavbar.scrolled .nav-link:hover {
  color: #0f8a5d;
}

#mainNavbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand img {
  height: auto;
  max-height: 40px;
  max-width: 180px;
  transition: filter .3s ease;
}

@media(max-width:991.98px) {
  .navbar-brand img {
    max-height: 32px;
    max-width: 150px;
  }
}

.navbar-toggler {
  border: none;
  padding: .25rem .5rem;
}

.btn-cta {
  background: #17d68f;
  border-color: #17d68f;
  border-radius: 26px;
  color: #fff !important;
  transition: .3s;
}

.btn-cta:hover {
  background: #14c27b;
  border-color: #14c27b;
}

/* ============================================================
   EK4YOU – NAVIGATION (MEGA DROPDOWN + OFFCANVAS)
   Komplett neu generiert & sortiert – 2025
============================================================ */

/* =====================================
   MEGA-DROPDOWN (DESKTOP)
===================================== */
.dropdown-mega {
  position: static;
}

.dropdown-mega>.dropdown-menu.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  /* VOLLE BREITE */
  width: 100vw !important;
  max-width: 100vw !important;

  padding: 2.5rem 0;
  border: none;
  border-radius: 0;
  display: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  /* Premium Blur Effekt */
  background: rgba(255, 255, 255, .85) !important;
  backdrop-filter: saturate(180%) blur(6px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(6px) !important;

  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;

  z-index: 1000;
}

/* Dropdown aktiv */
.dropdown-mega.show>.dropdown-menu.mega-menu,
.dropdown-mega .dropdown-toggle.show+.dropdown-menu.mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  z-index: 1050 !important;
}

/* Inhalt auf max. Breite zentriert */
.dropdown-menu.mega-menu .mega-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =====================================
   TABS – Premium Style
===================================== */
.mega-menu .nav-tabs {
  border: none !important;
}

.mega-menu .nav-tabs .nav-link {
  border: none !important;
  background: transparent !important;
  color: #777 !important;
  font-weight: 600;
  padding-bottom: .6rem;
  position: relative;
  transition: color .25s ease;
}

.mega-menu .nav-tabs .nav-link:hover {
  color: #17d68f !important;
}

.mega-menu .nav-tabs .nav-link.active {
  color: #17d68f !important;
  font-weight: 800;
}

.mega-menu .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #17d68f;
  border-radius: 3px;
}


/* =====================================
   KARTEN – Premium Hover & Zoom
===================================== */
.dropdown-card {
  display: block;
  width: 100%;
  height: 220px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f9fa;
  text-decoration: none !important;
  color: #000;
  transition: transform .25s ease, box-shadow .25s ease;
}

.dropdown-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .4s ease;
}

.dropdown-card span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .9);
}

/* Hover Effekte */
.dropdown-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.dropdown-card:hover img {
  transform: scale(1.12);
}


/* =====================================
   MEGA-OVERLAY (Hintergrund)
===================================== */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 999;
}

.mega-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden !important;
}


/* =====================================
   MOBILE: OFFCANVAS (Vollbild)
===================================== */
@media (max-width: 991.98px) {

  #mainNav {
    display: none !important;
  }

  .offcanvas-fullscreen {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;

    background: #fff !important;

    border: none !important;
    border-radius: 0 !important;

    transform: translateY(-100%) !important;
    opacity: 0 !important;
    transition: transform .4s ease, opacity .4s ease !important;
    z-index: 3000 !important;
  }

  .offcanvas-fullscreen.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  body.offcanvas-open {
    overflow: hidden !important;
    height: 100vh !important;
  }

  /* Header */
  .mega-menu-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;

    background: #fff;
    border-bottom: 1px solid #eee;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 1rem;
    z-index: 4100;
  }

  .mega-menu-header img {
    height: 36px;
  }

  .mega-menu-close {
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    line-height: 1;
  }

  /* Liste */
  .mobile-nav {
    list-style: none;
    margin: 0;
    padding: 4rem 1.5rem;
  }

  .mobile-nav li {
    margin-bottom: .7rem;
  }

  .mobile-nav a,
  .mobile-nav button.toggle {
    width: 100%;
    padding: .9rem 0;

    background: none;
    border: none;

    font-size: 1.1rem;
    font-weight: 700;

    display: flex;
    justify-content: space-between;
    color: #000;
    text-decoration: none;
  }

  .mobile-nav a:hover,
  .mobile-nav button.toggle:hover {
    color: #17d68f;
  }

  .mobile-nav button.toggle::after {
    content: "▾";
    font-size: .9rem;
    transition: transform .3s;
  }

  .mobile-nav button.toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .mobile-nav .submenu {
    padding-left: 1rem;
  }

  .mobile-nav .submenu a {
    font-size: 1rem;
    font-weight: 400;
    padding: .4rem 0;
    color: #333;
  }

  .offcanvas-fullscreen .btn-cta {
    display: inline-block;
    background: #17d68f;
    color: #fff;
    padding: .75rem 1rem;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
  }

  .offcanvas-fullscreen .btn-cta:hover {
    background: #14b87a;
  }
}

/* Leistungen Highlight */
@media (max-width: 991.98px) {
  .mobile-nav .toggle[data-bs-target="#m-leistungen"] {
    font-weight: 800;
    color: #17d68f;
  }
}


/* =======================
   TYPOGRAFIE
======================= */
h1 {
  font-size: clamp(0.8rem, 8vw, 2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 5.85vw, 3.04rem);
}

h3 {
  font-size: clamp(1.35rem, 4.5vw, 2.025rem);
}

h4 {
  font-size: clamp(1.125rem, 3.6vw, 1.462rem);
}

h5 {
  font-size: clamp(0.9rem, 2.7vw, 1.012rem);
}

h6 {
  font-size: clamp(0.787rem, 2.25vw, 0.9rem);
}

/* =======================
   BUTTONS
======================= */
.btn-success {
  border: 2px solid #17d68f;
  background: transparent;
  border-radius: 50px;
  padding: .5rem 1.5rem;
  color: #17d68f;
  transition: .3s;
}

.btn-success:hover {
  background: #17d68f;
  color: #fff;
}

/* =======================
   FOOTER (Optimiert)
======================= */
#site-footer {
  background: #0b0b0b;
  /* tieferes Schwarz-Grau */
  color: #fff !important;
  font-size: .9rem;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff !important;
}

#site-footer ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

#site-footer ul li {
  margin-bottom: .4rem;
}

#site-footer a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color .3s ease, text-decoration .3s ease;
}

#site-footer a:hover {
  color: #17d68f !important;
  text-decoration: underline;
}

#site-footer p {
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, 0.9);
}

#site-footer i.bi {
  color: #17d68f;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: 6px;
}

#site-footer hr {
  border-color: rgba(255, 255, 255, .15);
  margin: 1.25rem 0;
}

#site-footer .text-muted {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: .85rem;
}

#site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: .5rem;
}

#site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 .25rem;
  transition: color .3s ease;
}

#site-footer .footer-bottom a:hover {
  color: #17d68f;
  text-decoration: underline;
}

/* Hover-Verhalten Logo */
#site-footer img {
  max-width: 180px;
  height: auto;
  opacity: .9;
  transition: opacity .3s ease, transform .3s ease;
}

#site-footer img:hover {
  opacity: 1;
  transform: scale(1.02);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  #site-footer {
    text-align: center;
    padding: 4rem 0 1rem;
  }

  #site-footer .row>div {
    margin-bottom: 2rem;
  }

  #site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #site-footer hr {
    margin: 2rem 0 1rem;
  }
}


/* #############################################
  ## RESPONSIVE NAVIGATION
############################################# */
@media(max-width:767.98px) {
  #mainNav {
    display: none !important;
  }

  #mainNav.show {
    display: flex !important;
    flex-direction: column;
    height: calc(100vh - 56px);
  }

  #mainNav.show .buttons {
    margin-top: auto;
    padding: 1rem;
  }
}

.kontakt-hero-image {
  object-fit: cover;
  object-position: center 20% !important;
}

/* =======================
   VORTEILE (4 Punkte)
======================= */
.vorteil-box {
  border: 1px solid #eaeaea;
  background: #fff;
  border-radius: .5rem;
  text-align: center;
  transition: .2s;
}

.vorteil-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.vorteil-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #17d68f;
}

.vorteil-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vorteil-text {
  font-size: .95rem;
  color: #555;
}

/* =======================
   FAQ
======================= */
#faq .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

#faq .accordion-button {
  font-weight: 600;
  font-size: 1.7rem;
  padding: 1rem 0;
  background: none;
  box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
  color: #17d68f;
}

#faq .accordion-body {
  padding: 0 0 1rem;
  color: #444;
  line-height: 1.5;
}

@media(min-width:992px) {
  #faq .row.align-items-center {
    align-items: flex-start !important;
  }
}

/* =======================
   SCROLLBAR / MISC
======================= */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15);
  border-radius: 8px;
}

.bi-star-fill {
  color: #17d68f;
}

/* =========================================================
   EK4Y – SPECTRUM GRID & HEADLINES ERWEITERUNG
   Version: 2025-11
========================================================= */

.region-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.region-box {
  background: #1c1c1c;
  padding: 35px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  animation: slideUp .35s ease;
}

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

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

.map-img {
  width: 120px;
  opacity: .85;
}

.region-btn {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* =======================
   SPECTRUM SECTION
======================= */
.spectrum-wrap {
  max-width: 50rem;
  margin: 0 auto;
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 575.98px) {
  .spectrum-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  --ratio: 4/5;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: var(--ratio);
  min-height: 640px;
  overflow: hidden;
  border-radius: .375rem;
  color: #fff;
  text-decoration: none;
  background: #000;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.spec-card.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .spec-card {
    min-height: 520px;
  }
}

@media (max-width: 575.98px) {
  .spec-card {
    --ratio: 3/4;
    min-height: 420px;
  }
}

.spec-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
}

.spec-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .40), rgba(0, 0, 0, 0) 65%);
  z-index: 2;
}

.card-top {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  right: 1rem;
}

.card-title {
  margin: 0 0 .25rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2.25rem) !important;
  line-height: 1.3;
}

.card-cta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform .15s;
  box-shadow: none !important;
}

.card-cta:hover {
  transform: translateY(-2px);
}

.cta-mint {
  background: #17d68f;
  color: #fff;
}

.cta-dark {
  background: #000;
  color: #fff;
}

/* rechte Karte komplett grün */
.spec-store {
  background: #17d68f !important;
}

.spec-store::after {
  background: none;
}

.spec-store>img {
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
}

.spec-store .card-top {
  color: #fff;
}

/* =======================
   HEADLINE CATEGORIES
======================= */
.headline-main {
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.25rem) !important;
  line-height: 1.3;
  color: #000;
  margin-bottom: .25rem;
  text-align: center;
}

.headline-sub {
  font-size: clamp(1.50rem, 3vw, 1.6rem) !important;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.headline-sub strong {
  font-weight: 500;
  color: #000;
}

.headline-sub span {
  color: #A7A7A7;
}

.headline-main span {
  color: #17d68f !important;
}

.headline-category {
  font-weight: 700;
  font-size: clamp(1.50rem, 3vw, 2.25rem) !important;
  color: #000 !important;
  line-height: 1.3;
  margin-bottom: .25rem;
}

.headline-category p {
  font-weight: 700;
  font-size: clamp(1.50rem, 3vw, 2.25rem) !important;
  color: #000 !important;
  line-height: 1.3;
  margin-bottom: .25rem;
}

.headline-category-sub {
  font-size: clamp(1.50rem, 3vw, 2.25rem) !important;
  color: #000 !important;
  font-weight: 700;
}

.headline-label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #17d68f;
}

/* =======================
   ANIMATIONEN / VISUAL FX
======================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  transform: scale(0.95);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}

.scale-up.visible {
  transform: scale(1);
  opacity: 1;
}

/* =======================
   HELPER & UTILITY CLASSES
======================= */
.text-mint {
  color: #17d68f !important;
}

.bg-mint {
  background-color: #17d68f !important;
}

.rounded-2xl {
  border-radius: 1.25rem !important;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08) !important;
}

/* =======================
   PRINT OPTIMIERUNG
======================= */
@media print {

  #static-menu,
  #mainNavbar,
  .btn,
  video,
  .hero-dots {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }

  footer {
    page-break-after: avoid;
  }
}

/* =========================================================
   ✅ FIX: Mobile – Kein horizontales Scrollen, Inhalt sichtbar
========================================================= */
@media (max-width: 991.98px) {

  /* Nur X-Scroll verhindern */
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    /* vertikal scrollen erlaubt */
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: 100vh;
    position: relative;
    touch-action: pan-y;
  }

  /* Parallax-Bild und Hero */
  .hero-section {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    /* verhindert Abschneiden */
  }

  .hero-bg,
  .hero-bg img,
  .hero-bg video {
    width: 100% !important;
    height: auto !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    transform: none !important;
    background-attachment: scroll !important;
  }

  /* Container-Überlauf blockieren */
  .container,
  .container-fluid,
  .row {
    overflow-x: hidden !important;
  }

  /* Safari / iOS-Fix */
  @supports (-webkit-touch-callout: none) {

    html,
    body {
      -webkit-overflow-scrolling: touch;
    }
  }
}

/* ===========================================
   PARTNER – Zentriert & Modern
   =========================================== */
#partner {
  background: #fff;
}

#partner .headline-category {
  font-weight: 700;
  font-size: 1.8rem;
}

#partner p {
  font-size: 1.1rem;
  color: #666;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  animation: scrollPartners 40s linear infinite;
}

.partner-logo {
  max-height: 35px;
  margin: 0 20px;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all .3s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Animation */
@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 991px) {
  #partner .headline-category {
    font-size: 1.4rem;
  }

  .partner-logo {
    max-height: 50px;
    margin: 0 1rem;
  }
}

/* ==========================================================
   EK4Y – COOKIE CONSENT DESIGN
   Minimal, DSGVO-konform, responsive
   Version: 3.0 | 2025-11-03
========================================================== */

/* =============== OVERLAY ================= */
#ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
  transition: opacity .3s ease;
}

/* =============== BANNER ================= */
#ck-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,.25);
  width: 90%;
  max-width: 560px;
  padding: 22px 24px;
  font-family: "Inter", "Figtree", sans-serif;
  z-index: 9999;
  display: none;
}

.ck-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ck-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.ck-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* =============== BUTTONS ================= */
.ck-btn-dark,
.ck-btn-green {
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.ck-btn-dark {
  background: #111;
  color: #fff;
}
.ck-btn-dark:hover {
  background: #333;
}

.ck-btn-green {
  background: #17d68f;
  color: #fff;
}
.ck-btn-green:hover {
  background: #14c784;
}

/* =============== MODAL ================= */
#ck-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  color: #111;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(0,0,0,.35);
  width: 90%;
  max-width: 560px;
  padding: 28px 26px;
  font-family: "Inter", "Figtree", sans-serif;
  z-index: 9999;
  display: none;
}

#ck-modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ck-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
}

.ck-option input[type="checkbox"] {
  transform: scale(1.3);
  margin-top: 3px;
  cursor: pointer;
}

.ck-option div strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.ck-option div small {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.3;
}

.ck-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

/* =============== REOPEN BUTTON ================= */
#ck-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #17d68f;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  display: none;
  transition: transform .2s ease, background .2s ease;
}

#ck-reopen:hover {
  transform: scale(1.05);
  background: #14c784;
}

/* =============== MOBILE ================= */
@media (max-width: 600px) {
  #ck-banner {
    bottom: 10px;
    padding: 18px;
  }

  #ck-modal {
    width: 94%;
    padding: 22px;
  }

  .ck-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .ck-btn-dark, .ck-btn-green {
    width: 100%;
    text-align: center;
  }
}
