/* #############################################
## EK4Y – BASE CSS
############################################# */
/* 
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 -->	
45% 		 #16d08c
40% 		 #13b97c
35% 		 #11a26d
30% 		 #0f8a5d
25% 		 #0c734e
20% 		 #0a5c3e
15% 		 #07452f
10% 		 #052e1f
5% 		     #021710
0% 		     #000000 
*/
/* #############################################
## FONTS
############################################# */
@font-face {
  font-family: "bootstrap-icons";
  src: url("/../assets/fonts/fonts/bootstrap-icons.woff2") format("woff2"),
    url("/../assets/fonts/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  font-weight: 400;
  font-style: normal;
  src: url("/../assets/fonts/figtree/Figtree-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  font-weight: 400;
  font-style: italic;
  src: url("/../assets/fonts/figtree/Figtree-Italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  font-weight: 700;
  font-style: normal;
  src: url("/../assets/fonts/figtree/Figtree-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  font-weight: 700;
  font-style: italic;
  src: url("/../assets/fonts/figtree/Figtree-BoldItalic.woff2") format("woff2");
  font-display: swap;
}
/* #############################################
  ## LINKS – EK4Y STYLE
############################################# */
a {
  text-decoration: none;
  color: #17d68f;
  transition: color .2s ease, text-decoration .2s ease;
}

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

a:active {
  color: #0f8a5d;
  text-decoration: underline;
}

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

em {
  font-style: italic;
}

.text-success {
  color: #17d68f !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

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

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

#maincontent {
  position: relative;
  margin-bottom: -100px;
  z-index: 1;
  margin-top: -50px;
  border: 1px solid #dee2e6;
  border-radius: 2.5rem;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
  background-color: #fff;
}
/* CTA – CONSULTING */
#cta-consulting {
  background: #000;
  color: #fff;
  text-align: center;
  padding-top: 12rem;
}

#cta-consulting h2,
#cta-consulting p {
  color: #fff
}

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

#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 0.3s 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
}
/* Ab Tablet (≤ 991px) ausblenden */
@media (max-width: 1200px) {
  #static-menu {
    display: none;
  }
}


/* #############################################
  ## BASIC MENU
  ############################################# */
#hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero-box {
  position: relative;
  z-index: 2;
  /* Text über Overlay */
}

.hero-box h1,
.hero-box p {
  color: #fff !important;
}

#bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 2%;
}

.content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 0;
}

.logo-slider {
  overflow: hidden;
  margin: 50px 0
}

.logo-track {
  display: flex;
  animation: scroll-logos 30s linear infinite
}

@keyframes scroll-logos {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.partner-logo {
  display: block;
  max-height: 20px;
  margin-right: 4rem;
  filter: grayscale(100%);
  opacity: .6;
  transition: .3s
}

.partner-logo:hover {
  filter: none;
  opacity: 1
}

/* FILTER BUTTONS */
.filter-btn {
  border: 2px solid #ccc;
  background: transparent;
  border-radius: 50px;
  padding: .6rem 2.2rem;
  min-width: 180px;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
  text-align: center
}

.filter-btn.active,
.filter-btn:hover {
  border-color: #17d68f;
  background: #17d68f;
  color: #fff
}

/* SPECTRUM CARDS */
.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;
}

@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.show {
  opacity: 1;
  transform: translateY(0);
}

.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;
  /* keine schwarze Vignette */
}

.spec-store>img {
  object-fit: contain;
  object-position: bottom center;
  /* Bild unten platzieren */
  z-index: 1;
}

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

/* #############################################
  ## TYPOGRAFIE – FLUIDE HEADLINES
  ############################################# */
h1 {
  font-size: clamp(1.5rem, 8vw, 2.25rem) !important;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 5.85vw, 3.04rem) !important;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.35rem, 4.5vw, 2.025rem) !important;
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.125rem, 3.6vw, 1.462rem) !important;
  line-height: 1.3;
}

h5 {
  font-size: clamp(0.9rem, 2.7vw, 1.012rem) !important;
  line-height: 1.3;
}

h6 {
  font-size: clamp(0.787rem, 2.25vw, 0.9rem) !important;
  line-height: 1.3;
}

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

.headline-sub {
  font-size: clamp(1.25rem, 3vw, 3.25rem) !important;
  color: #999;
  font-weight: 700;
}

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

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

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

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

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

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

.subline span {
  color: #A7A7A7;
}

/* #############################################
  ## NOTICE-BAR
  ############################################# */
.notice-bar {
  background-color: #0f8a5d;
  color: #fff;
  width: 100%;
  height: 3rem;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .75rem;
}

.notice-bar .notice-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-bar .btn+.btn {
  margin-left: .5rem;
}

.notice-bar .close-icon {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
}

.notice-bar.hidden {
  display: none !important;
}

/* #############################################
  ## 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);}

/* CTA */
.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;}

/* Logo */
.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;}

/* #############################################
  ## DESKTOP: MEGA-DROPDOWN (sichtbar bei .show)
############################################# */

.dropdown-mega {
  position: static;
}

/* Basiszustand: ausgeblendet */
.dropdown-mega > .dropdown-menu.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  background: #fff;
  padding: 2rem;
  display: none; /* Standard: unsichtbar */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 1000;
}

.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;
}

/* Tabs */
.mega-menu .nav-tabs .nav-link {
  border: none;
  background: transparent;
  font-weight: 500;
  color: #666 !important;
  margin-right: 1rem;
  transition: color .2s ease, border-color .2s ease;
}
.mega-menu .nav-tabs .nav-link:hover { color: #17d68f !important; }
.mega-menu .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #17d68f !important;
  border-bottom: 3px solid #17d68f;
  background: transparent;
}

/* Karten */
.dropdown-card {
  display: block;
  width: 90%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
  text-decoration: none;
  color: #000;
  background: #f8f9fa;
  transition: transform .2s, box-shadow .2s;
}
.dropdown-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: .5rem;
  transition: transform .3s;
}
.dropdown-card span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.dropdown-card:hover img { transform: scale(1.05); }
.dropdown-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* Overlay (Blur-Hintergrund, sichtbar bei geöffnetem Menü) */
.mega-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.25);
  z-index: 998;
  display: none;
}
.dropdown-mega.show ~ .mega-overlay {
  display: block;
}


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

  /* Desktop-Navigation in Mobile ausblenden */
  #mainNav {
    display: none !important;
  }

  /* Vollbild-Offcanvas */
  .offcanvas-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    z-index: 3000 !important;
    transform: translateY(-100%) !important;
    transition: transform 0.4s ease, opacity 0.4s ease !important;
    opacity: 0 !important;
  }

  /* Sichtbar = runtersliden */
  .offcanvas-fullscreen.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Body darf scrollen */
  .offcanvas-fullscreen .offcanvas-body {
    overflow-y: auto !important;
    height: calc(100vh - 70px) !important; /* 70px = Headerhöhe */
    padding: 6rem 1rem 2rem !important;
  }

  /* Wenn Menü offen → Body blockieren */
  body.offcanvas-open {
    overflow: hidden !important;
    height: 100vh !important;
  }

  /* Abdunkelung Hintergrund */
  .offcanvas-backdrop.show {
    opacity: 0.65 !important;
    background-color: #000 !important;
  }

  /* Header im Offcanvas */
  .mega-menu-header {
    position: fixed;
    top: 0;
    left: 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;
    padding: 0;
    margin: 0;
    width: 100%;
  }

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

  .mobile-nav a,
  .mobile-nav button.toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
  }

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

  /* Caret */
  .mobile-nav button.toggle::after {
    content: "▾";
    font-size: 0.9rem;
    transition: transform 0.3s;
  }

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

  /* Submenu (Bootstrap Collapse) */
  .mobile-nav .submenu {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
  }

  .mobile-nav .submenu li a {
    font-size: 1rem;
    font-weight: 400;
    padding: 0.4rem 0;
    display: block;
    color: #333;
    text-decoration: none;
  }

  .mobile-nav .submenu li a:hover {
    color: #17d68f;
  }

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

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


/* #############################################
  ## BUTTONS
  ############################################# */
.buttons .btn {
  border-radius: .25rem;
  display: inline-block;
  font-size: 1rem;
  margin-right: .625rem;
  padding: .75rem 1.5rem;
}

.btn-primary {
  background-color: #1e7e34 !important;
  color: #fff !important;
  border-color: #1c7430 !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #14c27b !important;
  border-color: #14c27b !important;
}

.btn-light:hover {
  background-color: #d2d2d2 !important;
}

.btn-success {
  border: 2px solid #17d68f !important;
  background: transparent !important;
  border-radius: 50px !important;
  padding: .5rem 1.5rem !important;
  font-size: 1rem !important;
  color: #17d68f !important;
  transition: all .3s ease;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #17d68f !important;
  color: #fff !important;
}

/* #############################################
  ## FOOTER
  ############################################# */
#site-footer {
  font-size: .9rem;
  padding: 6rem 0 1rem;
  color: #fff !important;
}

#site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: .75rem;
}

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

#site-footer address {
  font-style: normal;
  line-height: 1.4;
  margin-bottom: .5rem;
  font-size: .9rem;
}

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

#site-footer .text-muted,
#site-footer a {
  font-size: .85rem;
}

#site-footer,
#site-footer h3,
#site-footer a,
#site-footer address,
#site-footer .text-muted,
#site-footer .text-primary {
  color: #fff !important;
}

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

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

#site-footer a {
  color: #fff !important;
  text-decoration: underline !important;
}

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

.text-primary {
  color: #17d68f !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* #############################################
  ## 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;
  }
}

/* #############################################
  ## PERFORMANCE / SCROLL-OPTIMIERUNG
  ############################################# */
.main-content,
.sidebar,
.modal-notiz .modal-body,
.modal-image-fullscreen .modal-body,
#search-results {
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  backface-visibility: hidden;
  contain: content;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.sticky-header,
.bp-tabs {
  position: sticky;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

@media (pointer: coarse) {

  .card-container,
  .card-dashboard {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
  }
}

.dashboard-section,
.card-dashboard,
.list-group-item,
.upload-card {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

.kanban-board {
  will-change: transform;
  contain: layout paint;
}

.kanban-column {
  min-width: 0;
}

.modal-image-fullscreen .modal-body img,
.modal-image-fullscreen .modal-body embed,
.modal-image-fullscreen .modal-body iframe {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.sidebar {
  transform: translateZ(0);
}

.main-content,
.card-dashboard,
.list-group-item,
.mail-body {
  user-select: text !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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


@media (min-width: 992px) {
  #faq .row.align-items-center {
    align-items: flex-start !important;
    
  }
}
  
/* #############################################
  ## FAQ
  ############################################# */
#faq .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd
}

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

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

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

/*#############################################
## Vorteile 4 Punkte
############################################# */
.vorteil-box {
  border: 1px solid #eaeaea;
  border-radius: .5rem;
  background: #fff;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.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;   /* statt Gradient */
  margin-bottom: .5rem;
}

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

.vorteil-title span {
  color: #17d68f;
}

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