* {
    margin: 0;
    padding: 0
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}
*:before, *:after {
    content: "";
    position: absolute
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
body {
    font-family: "Open Sans", sans-serif
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem
}
@media only screen and (min-width: 992px) {
    .container {
        max-width: 1128px
    }
}
.header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 1.5rem;
    background-color: #0d0f1a;
    transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease, opacity .25s ease;
}
/* Sticky-Variante, wird per JS zugeschaltet */
.header.header--sticky{
  position: fixed;                /* am Viewport kleben */
  background: rgba(13,15,26,.86); /* leicht transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateY(-100%);   /* zunächst ausgeblendet */
  opacity: 0;
}

/* sichtbar fahren */
.header.header--sticky.is-visible{
    padding-bottom: 75px;
    transform: translateY(0);
    opacity: 1;
}

/* Falls dein mobiles Vollbildmenü drüber muss */
@media (max-width: 991.98px){
  .c-nav .c-nav__content{ z-index: 0; }
}

/* Motion-Preference respektieren */
@media (prefers-reduced-motion: reduce){
  .header{ transition: none; }
}

.header .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.section {
    margin: 4rem 0
}
.section .section__title-wrapper {
    margin-bottom: 4rem
}
@media only screen and (min-width: 992px) {
    .section .section__title-wrapper {
        padding: 0rem 12rem
    }
}
.section.features {
    background-color: #101d2d;
    padding: 4rem 0
}
.section.banner {
    position: relative
}
.section.banner:before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #00010e;
    z-index: -1
}
.section:first-of-type {
    margin: 0 0 4rem 0
}
.section:last-of-type {
    margin: 4rem 0 0 0
}
.box--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.box--grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 4rem
}
@media only screen and (min-width: 992px) {
    .box--grid {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 6rem
    }
}
.box--mt2 {
    margin-top: 2rem
}
.box--gap2 {
    grid-gap: 1.5rem
}
@media only screen and (min-width: 992px) {
    .box--gap2 {
        grid-gap: 3rem
    }
}
.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.button__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}
.footer {
    position: relative;
    background-color: #00010e;
    z-index: 0
}
.footer:after {
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1
}
.c-hero {
    position: relative;
    background-color: #101d2d;
    padding-bottom: 1.5rem;

    --hero-h: clamp(560px, 62vh, 760px);
    min-height: var(--hero-h);
    overflow: hidden;
}
@media only screen and (min-width: 992px) {
    .c-hero {
        background-color: transparent;
        padding: inherit;
    }
}
.c-hero .c-hero__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10); /* halbtransparentes Weiß */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    margin: 0 auto;
    padding: 2rem 3rem;   /* kleineres Padding */
    max-width: 900px;     /* begrenzt die Breite */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@media only screen and (min-width: 992px) {
    .c-hero .c-hero__content {
        padding: 3rem 4rem;  /* etwas großzügiger, aber nicht fullscreen */
    }
}
.c-hero .c-hero__button-group {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
@media only screen and (min-width: 992px) {
    .c-hero .c-hero__button-group {
        display: inherit
    }
}
.c-hero .c-hero__img-holder {
    width: 100%;
    margin: auto;
    position: relative;
    -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 22px
}
.c-hero .c-hero__img-holder .c-hero__img {
    width: 100%
}
.c-hero .c-hero__img-holder:before {
    width: 100px;
    height: 100px;
    top: 0%;
    left: 50%;
    background-color: #54266a;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.7
}
@media only screen and (min-width: 992px) {
    .c-hero .c-hero__img-holder:before {
        width: 300px;
        height: 300px
    }
}
@media only screen and (min-width: 992px) {
    .c-hero .c-hero__img-holder {
        width: 70%
    }
}
.c-hero:before {
  top: 0;                     /* NEU */
  background: #0d0f1a;
  width: 100%;
  height: var(--hero-h);
  z-index: -1;
}
.c-hero:after {
    top: 10%;                  /* statt 5% */
    left: 50%;
    width: 100%;
    height: var(--hero-h);   /* statt 100%/fix */
    background-image: url("../img/art.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%);
    z-index: -1;
}
@supports (-ms-ime-align: auto) {
    .c-hero:after {
        width: 0
    }
}
.c-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.c-logo .c-logo__img {
    height: 3rem
}
.c-logo .c-logo__text {
    margin-left: 0.7rem;
    font-weight: 600
}
.c-logo .c-logo__text--white {
    color: white
}
.c-nav .c-nav__toggle {
    opacity: 1;
    position: absolute;
    top: 2rem;
    -webkit-transition: 300ms opacity ease;
    transition: 300ms opacity ease
}
@media only screen and (min-width: 992px) {
    .c-nav .c-nav__toggle {
        opacity: 0
    }
}
.c-nav .c-nav__toggle:before {
    content: "\2261";
    font-size: 1.6rem;
    top: -0.5rem;
    left: -0.5rem;
    position: absolute;
    z-index: 5;
    width: 20px;
    height: 20px;
    color: white;
    background-color: #101d2d;
    border: 1px solid white;
    border-radius: 50%;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.c-nav .c-nav__toggle:checked:before {
    content: "\2A2F"
}
.c-nav .c-nav__toggle:checked~.c-nav__content {
    opacity: 1
}
.c-nav .c-nav__content {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: opacity 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: opacity 300ms cubic-bezier(0.25, 1, 0.5, 1)
}
.c-nav .c-nav__content .c-list {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.c-nav .c-nav__content .c-list .c-list__item {
    margin-bottom: 3rem
}
.c-nav .c-nav__content .c-list .c-list__item .c-link--list {
    color: white;
    margin: 0;
    font-size: 200%
}
@media only screen and (min-width: 992px) {
    .c-nav .c-nav__content {
        opacity: 1;
        position: inherit;
        top: inherit;
        left: inherit;
        width: inherit;
        height: inherit;
        background: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
        justify-content: inherit;
        -webkit-box-orient: inherit;
        -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
        flex-direction: inherit
    }
    .c-nav .c-nav__content .c-list {
        margin: inherit;
        -webkit-box-orient: inherit;
        -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
        flex-direction: inherit;
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit
    }
    .c-nav .c-nav__content .c-list .c-list__item {
        margin-bottom: inherit
    }
    .c-nav .c-nav__content .c-list .c-list__item .c-link--list {
        color: #dddddd;
        margin-right: 1.5rem;
        font-size: inherit
    }
}
.c-list {
    list-style: none;
    margin-right: 1.5rem
}
.c-list--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}
.c-list--align-right {
    margin-right: 0
}
.c-list .c-list__item--small {
    font-size: 80%
}
.c-list .c-list__link {
    color: #808ab8
}
.c-list .c-list__icon {
    width: 2rem
}
.c-list .c-list__icon--check:before {
    content: "\2713";
    display: inline-block;
    color: #29d2d3
}
.c-list .c-list__icon--cross:before {
    content: "\274c";
    display: inline-block;
    color: #d3299a
}
.c-button {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 3px;
    -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden
}
.c-button--small {
    padding: 0.6rem 0.8rem
}
.c-button--primary {
    background-color: #00010e;
    color: white;
}
.c-button--secondary {
    background-color: #2086b1;
    color: white
}
.c-button--rent {
    background-color: #6b3a9c;
    color: white
}
.c-button--block {
    width: 100%
}
.c-button:after {
    top: 0;
    left: -50%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.15);
    width: 0%;
    height: 100%;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 600ms;
    transition-duration: 600ms;
    -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform-origin: top left;
    transform-origin: top left
}
.c-button:hover:after {
    width: 150%
}
.c-card {
    display: grid;
    margin-bottom: 2rem
}
.c-card .c-card__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}
.c-card .c-card__content .c-card__title {
    text-align: left
}
.c-card .c-card__img-holder {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%
}
.c-card .c-card__img-holder .c-card__img {
    width: 100%
}
@media only screen and (min-width: 992px) {
    .c-card {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 6rem;
        margin-bottom: 0
    }
    .c-card:nth-of-type(2) .c-card__content, .c-card:nth-of-type(4) .c-card__content, .c-card:nth-of-type(6) .c-card__content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .c-card:nth-of-type(2) .c-card__img-holder, .c-card:nth-of-type(4) .c-card__img-holder, .c-card:nth-of-type(6) .c-card__img-holder {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}
.c-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white
}
.c-feature .c-feature__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}
.c-feature .c-feature__img-holder {
    height: 3rem;
    margin-bottom: 2rem
}
.c-feature .c-feature__img-holder .c-feature__img {
    width: 100%
}
.c-price {
    background-color: #101d2d;
    padding: 2rem;
    border-radius: 3px
}

.c-price2 {
    background-color: #6b3a9c;
    padding: 2rem;
    border-radius: 3px
}
.c-price .c-price__header .c-price__amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
    
    
}
.c-price .c-price__header .c-price__amount--primary {
    color: white;
    font-size: 170%;
    margin-right: -0.5rem
}
.c-price .c-price__header .c-price__amount--secondary {
    color: rgba(255, 255, 255, 0.25)
}
.c-price .c-price__header .c-price__amount--white {
    color: white
}
.c-price .c-price__header .c-price__text {
    color: white
}
.c-price .c-price__header .c-price__title {
    color: white;
    text-align: left;
    margin-top: 1.5rem
}
.c-price .c-price__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    color: white;
    padding: 0.7rem 0
}
.c-price .c-price__list-item:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25)
}
.c-price .c-price__button {
    margin-top: 1rem
}
.c-price--highlight {
    background-color: #2086b1
}

.c-price--highlight2 {
    background-color: #6b3a9c
}
.c-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: #6b3a9c;
    color: white;
    padding: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}
@media only screen and (min-width: 992px) {
    .c-banner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}
.c-banner .c-banner__title {
    margin: 0;
    margin-bottom: 2rem
}
@media only screen and (min-width: 992px) {
    .c-banner .c-banner__title {
        margin: 0
    }
}
.c-banner:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/banner.png");
    background-size: cover;
    background-position: bottom center
}
.c-footer {
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 4rem 0 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}
@media only screen and (min-width: 992px) {
    .c-footer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 6rem 0
    }
}
.c-footer .c-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4rem
}
@media only screen and (min-width: 992px) {
    .c-footer .c-footer__box {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .c-footer .c-footer__box:last-child {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}
.c-footer .c-footer__text {
    margin-top: 1rem;
    font-size: 80%;
    color: #808ab8
}
.c-footer .c-footer__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 1.5rem
}
.c-footer .c-footer__icons .c-footer__icon {
    width: 2rem;
    margin-left: 1.5rem;
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1)
}
.c-footer .c-footer__icons .c-footer__icon:hover {
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem)
}
.heading {
    font-family: "Hind", sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1
}
.heading--light {
    color: white
}
.heading--dark {
    color: #101d2d
}
.heading--blue {
    color: #b7c3f8
}
.heading--1 {
    font-size: 3.5rem;
    line-height: 1.1
}
.heading--2 {
    font-size: 2.5rem
}
.heading--3 {
    font-size: 2.5rem
}
.heading--4 {
    font-family: "Open Sans", sans-serif;
    line-height: 1.7;
    font-size: 1.2rem
}
.heading--5 {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600
}
.c-paragraph {
    font-size: 1rem;
    line-height: 1.7
}
.c-link {
  position: relative;
  text-decoration: none;
  color: #29d2d3;
  display: inline-block;             /* sichert korrekte Bezugsbreite */
}
.c-link:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1rem;
  width: 100%;                       /* Basisbreite vorhanden! */
  height: 1px;
  background-color: #29d2d3;
  color: #6b3a9c;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;          /* wächst von der Mitte */
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}
.c-link:hover:after {
  transform: translateX(-50%) scaleX(1);
}
.c-link--list {
    margin-right: 1.5rem;
    color: #808ab8
}
.c-link--list:after {
    background-color: #808ab8
}
.c-link--list-right {
    margin-right: 0;
    margin-left: 1.5rem
}

/* 1) nicht mehr padding: inherit auf Desktop, sondern explizit Abstand nach oben */
@media (min-width: 992px) {
  .c-hero {
    /* alte Zeile padding: inherit; bitte entfernen/überschreiben */
    padding-top: clamp(120px, 18vh, 240px); /* schiebt alles weiter runter */
    padding-bottom: 60px;                   /* etwas Luft unten */
  }
}

/* 2) optional: falls der Glas-Container selbst noch ein paar px tiefer soll */
.c-hero .c-hero__content {
  margin-top: 16px;
}
@media (max-width: 768px) {
.c-hero .c-hero__content {
  margin-top: 100px;                 /* etwas Luft unten */
  }
}
/* NICHT mit fixer px-Höhe überschreiben */
.c-hero:before,
.c-hero:after {
  height: var(--hero-h);
}

/* Grid-Items sollen sich voll strecken */
.box--grid { align-items: stretch; }

/* Jede Feature-Card: volle Höhe + Spalten-Layout */
.c-feature{
  display:flex;
  flex-direction:column;
  align-items:stretch;        /* nicht zentrieren */
  justify-content:flex-start; /* oben beginnen */
  height:100%;
}

/* Inhalt selbst wieder als Spalte, damit der Button (falls innen) nach unten kann */
.c-feature__content{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;              /* füllt die Card-Höhe */
}

/* Button-Wrapper nach unten drücken – funktioniert, egal ob er
   direkt unter .c-feature liegt (1./2. Karte) oder innerhalb von .c-feature__content (3. Karte) */
.c-feature > .box--flex,
.c-feature__content > .box--flex{
  margin-top:auto;            /* nach unten */
  padding-top:1rem;           /* etwas Luft über dem Button */
}

/* Optische Kleinigkeiten */
.c-feature__title{ margin-bottom:.75rem; }
.c-feature__text{ margin:0; }

/* Zwei Spalten ab Tablet, mobil gestapelt */
#provision .provision-grid {
  display: grid;
  gap: 2rem;
  margin: 1rem 0 2rem;
}

@media (min-width: 768px) {
  #provision .provision-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Spalten-Optik/Abstände */
#provision .provision-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Konsistente Listenbreite + eigene Einrückungen harmonisieren */
#provision .provision-col ol,
#provision .provision-col ul {
  margin: 0;
}

/* Pfeil am Dropdown: auf ::before statt ::after (kollisionsfrei zum Underline) */
.c-dropdown__toggle {
  position: relative;
  padding-right: 1.2rem;
}
.c-dropdown__toggle::before {
  content: none;
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: .85em;
  opacity: .7;
}

.c-dropdown--no-caret .c-dropdown__toggle { padding-right: 0; }
.c-dropdown--no-caret .c-dropdown__toggle::before { content: none; }
.c-dropdown__toggle { padding-right: 0; }   /* Platz rechts wegnehmen */
.c-dropdown__toggle::before { content: none; }

/* Mega-Dropdown: untereinander statt nebeneinander */
.c-dropdown__menu {
  list-style: none;
  position: absolute;
  left: 0; top: 100%;
  z-index: 20;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;

  background: #0d0f1a;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  padding: .75rem;

  display: grid;
  grid-template-columns: 1fr;   /* <-- einspaltig */
  gap: .75rem;
  min-width: 340px;             /* schmale, hohe Liste */
}

@media (min-width: 992px) {
  .c-dropdown:hover > .c-dropdown__menu,
  .c-dropdown:focus-within > .c-dropdown__menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}

/* Item-Layout etwas kompakter für Liste */
.c-mega__link {
  display: grid;
  grid-template-columns: 96px 1fr;   /* Bild links, Text rechts */
  grid-template-rows: auto auto;
  gap: .5rem .75rem;
  text-decoration: none;
  color: #fff;
  padding: .5rem;
  border-radius: 10px;
  transition: background-color .15s ease, transform .15s ease;
}
.c-mega__link:hover { background: rgba(255,255,255,.06); }

.c-mega__img {
  width: 96px; height: 72px;
  object-fit: cover; border-radius: 8px;
  grid-row: 1 / span 2;
}

.c-mega__title { font-weight: 600; letter-spacing: .2px; }
.c-mega__desc  { font-size: .95rem; color: #d0d6e0; }

/* Optional: falls du den Underline-Effekt NUR bei „Fotoboxen“ komplett ausblenden willst */
/* .c-dropdown .c-link:after { display: none; } */
/* Der Anker für das absolute Menü */
.c-dropdown {
  position: relative;      /* ↔ jetzt bezieht sich das Menü auf dieses LI */
}

/* Optional: exakt unter den Link ausrichten und ein bisschen Abstand */
.c-dropdown__menu {
  left: 0;                 /* am linken Rand des LI */
  right: auto;
  top: calc(100% + 8px);   /* 8px Abstand unterhalb */
  transform: none;         /* wir brauchen hier kein translate mehr */
}

/* Hover/Fokus sichtbar machen (Desktop) – bleibt wie gehabt */
@media (min-width: 992px) {
  .c-dropdown:hover > .c-dropdown__menu,
  .c-dropdown:focus-within > .c-dropdown__menu {
    opacity: 1; visibility: visible;
  }
}

.active {
  color: #2086b1;
}

.to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;

  /* Glas-/Milchglas-Look passend zur Seite */
  background: rgba(16,29,45,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);

  /* Start: unsichtbar */
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .15s ease;
  z-index: 50; /* über Content, unter Nav-Dropdowns wenn die höher sind */
}

.to-top:hover{
  background: linear-gradient(180deg, #6b3a9c, #2086b1);
}

.to-top:focus-visible{
  outline: 2px solid #29d2d3;
  outline-offset: 2px;
}

.to-top.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* etwas kompakter auf kleinen Screens */
@media (max-width: 600px){
  .to-top{ right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* Slide-Keyframes */
@keyframes headerSlideDown {
  0%   { transform: translateY(-110%); opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}
@keyframes headerSlideUp {
  0%   { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(-110%); opacity: 0; }
}

/* Standard-Zustände (hast du schon – hier nur zur Einordnung) */
.header {
  transition: background-color .25s ease, box-shadow .25s ease,
              transform .25s ease, opacity .25s ease;
}
.header.header--sticky { transform: translateY(-100%); opacity: 0; }
.header.header--sticky.is-visible { transform: translateY(0); opacity: 1; }

/* Wenn animiert wird, Transition aus, sonst „doppelt“ */
.header.header--enter,
.header.header--leave { transition: none !important; }

/* Einblenden von oben */
.header.header--sticky.header--enter {
  animation: headerSlideDown .42s cubic-bezier(.22,1,.36,1) forwards;
  will-change: transform, opacity;
}

/* (Optional) Ausblenden nach oben */
.header.header--sticky.header--leave {
  animation: headerSlideUp .28s cubic-bezier(.4,0,.2,1) forwards;
  will-change: transform, opacity;
}

/* Bewegungen reduzieren respektieren */
@media (prefers-reduced-motion: reduce){
  .header { transition: none !important; }
  .header.header--enter, .header.header--leave { animation: none !important; }
}

:root{
  --header-h: 80px;            /* Originalhöhe */
}

.header{
  height: var(--header-h);
}

.header.header--sticky,
.header.header--sticky.is-visible,
.header.header--sticky.header--enter,
.header.header--sticky.header--leave{
  height: var(--header-h);
  padding: 1.5rem;            /* wie deine Original-Navi */
}

.header.header--sticky.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.header .header__wrapper{
  height: 100%;
  display: flex;
  align-items: center;
}