/* raleway-200 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/raleway-v28-latin-200.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('../fonts/raleway-v28-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/raleway-v28-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/raleway-v28-latin-200.woff') format('woff'), /* Modern Browsers */
            url('../fonts/raleway-v28-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/raleway-v28-latin-200.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-300 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/raleway-v28-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('../fonts/raleway-v28-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/raleway-v28-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/raleway-v28-latin-300.woff') format('woff'), /* Modern Browsers */
            url('../fonts/raleway-v28-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/raleway-v28-latin-300.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-regular - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
            url('../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-500 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/raleway-v28-latin-500.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('../fonts/raleway-v28-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/raleway-v28-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/raleway-v28-latin-500.woff') format('woff'), /* Modern Browsers */
            url('../fonts/raleway-v28-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/raleway-v28-latin-500.svg#Raleway') format('svg'); /* Legacy iOS */
}
:root{
    --darkblue:#162850;
    --lightblue:#e2f2fc;
    --blue:#1f9dd9;
    --blue-gradient:#1a5975;
    --white:#fffcfc;
    --white-rgb:242, 237, 233;
    --yellow:#ffb55f;
    --yellow-rgb:255, 181, 95;
    --black:#000;
    --max-width:1600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width:100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight:300;
    font-size: 16px; 
    background:var(--white);
    color:var(--darkblue)
}
/* ----------------------- Main -------------------------- */
.main{
    position: relative;
    width:100%;
    background:transparent;
}
.lightblue{
    background: var(--lightblue);
}
.col-1{
    width:90%;
    margin:0 auto;
    max-width:var(--max-width);
    padding:20px;
}
.row{
    display:grid;
    grid-template-columns: 1fr;
    gap:40px;
    align-items: center;
}
.center{
    text-align: center;
}
.justify{
    text-align: justify;
}
.gap{
    margin-top:30px;
}
.gap-big{
    margin-top:100px
}
p,a{
    font-size:clamp(1rem, 3vw, 1.2rem)
}
h1, h2, h3, h4, h5{
    margin:20px 0;
}
h1 span{
    display:inline-block;
}
.split-line, .split-line-left{
    width:100px;
    height:3px;
    background:var(--blue);
    border:none;
    outline:none;
    margin:20px auto;
}
.split-line-left{
    margin:20px 0;
}

.grid-6 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
    margin: 70px auto;
    text-align: center;
}

.item span {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--lightblue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.flosse{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width:70px;
    height:auto;
    margin:30px auto;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--grid-min, 220px), 1fr));
    gap: var(--grid-gap, 40px);
}

.grid-item {
    position: relative;
}

.left-img img{
    position: relative;
    width:100%;
    height:auto;
    inset: 0;
}

/* ----------------------- 4-Schritte-Modell -----------------*/
.process-grid {
    --grid-min: 230px;
    --grid-gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 5%;
    text-align: center;
    background: var(--lightblue);
}

.process-item {
    padding: 0 35px;
}

.process-item::after {
    display: none;
}

.process-item img {
    width: 150px;
    height: auto;
}

.process-text {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: center;
    text-align: left;
}

.process-text span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--darkblue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left:40px;
}

.process-text h3 {
    margin: 0;
    color: var(--darkblue);
    font-size: 1.05rem;
}

.process-text p {
    grid-column: 2;
    margin: 0 0 0 -40px;
    color: var(--darkblue);
    line-height: 1.4;
}
/* ----------------------- Leistungen -----------------*/

.service-grid {
    --grid-min: 280px;
    --grid-gap: 30px;
    margin-top: 45px;
    align-items: stretch;
}

.service-card {
    perspective: 1000px;
    display: grid;
}

.service-inner {
    display: grid;
    width: 100%;
    height: 100%;
    transition: transform .6s ease;
    transform-style: preserve-3d;
}

.service-card.is-flipped .service-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    grid-area: 1 / 1;
    padding: 72px 28px 0px;
    border-radius: 8px;
    background: var(--darkblue);
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 28px rgba(22, 40, 80, .18);
    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-back {
    transform: rotateY(180deg);
    background: var(--blue);
}

.service-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    aspect-ratio: 1 / 1;
    margin: -55px auto 24px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: inline-grid;
    place-items: center;
    font-size: 1.9rem;
    line-height: 1;
    flex: 0 0 72px;
    box-shadow: 0 5px 14px rgba(0,0,0,.22);
}

.service-card h3 {
    margin: 0 0 18px;
    font-size: 1.25rem;
    color: var(--white);
}

.service-card p {
    margin: 0 auto 28px;
    max-width: 320px;
    line-height: 1.5;
    color: var(--white);
}

.service-toggle {
    margin-top: auto;
    border: 0;
    border-radius: 15px 35px 0 0;
    background: var(--yellow);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px 20px 5px 20px;
    transition: transform .3s ease;
}

.service-toggle:hover {
    transform: translateX(5px);
}
.service-back .service-toggle {
    border-radius: 35px 15px 0 0;
}
.service-back .service-toggle:hover {
    transform: translateX(-5px);
}

.service-toggle-back i {
    transform: scaleX(-1);
}
/* ----------------------- Verständnis vom Coaching -------------------------- */
.coaching-understanding {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
    margin-top: 45px;
}
.coaching-quote {
    background: var(--darkblue);
    color: var(--white);
    border-radius: 10px;
    padding: 38px 32px;
    box-shadow: 0 10px 28px rgba(22, 40, 80, .18);
}
.coaching-quote i {
    color: var(--blue);
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.coaching-quote p {
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
    color: var(--white);
}
.coaching-points {
    display: grid;
    gap: 18px;
}
.coaching-point {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(22, 40, 80, .15);
}
.coaching-point span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: .8rem;
}
.coaching-point p {
    margin: 0;
    color: var(--darkblue);
    line-height: 1.5;
}

/* ----------------------- Meine Werte -------------------------- */

.values-grid {
    margin-top: 45px;
    gap: 20px;
}

.value-item {
    background: var(--white);
    border: 1px solid rgba(31, 157, 217, .25);
    border-radius: 10px;
    padding: 28px 10px 24px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(22, 40, 80, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(22, 40, 80, .14);
}

.value-item span {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--lightblue);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.value-item h3 {
    margin: 0 0 10px;
    color: var(--darkblue);
    font-size: 1rem;
}

.value-item p {
    margin: 0;
    color: var(--darkblue);
    font-size: .9rem;
    line-height: 1.35;
}

/* ----------------------- Main Ende -------------------------- */
/* ----------------------- Header -------------------------- */
.hero-bg {
    position: relative;
    min-height: 80vh;
    background: var(--darkblue);
    overflow: hidden;
    margin-top: 0;
}
.hero-content {
    position: absolute;
    top:45%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: min(1150px, 93%);
    color:var(--white);
}
.hero-content h1{
    font-size:clamp(2.3rem, 9vw, 3.3rem)
}
.hero-line{
    width:100px;
    height:3px;
    background:var(--blue);
    border:none;
    outline:none;
    margin:20px 0;
}
.slogan{
    font-size:clamp(0.8rem, 5vw, 1.6rem);
}

/* weiße geschwungene Fläche unten */
.hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 220px;
    z-index: 5;
}
.hero-wave path {
    fill: var(--white);
}
.mareen {
    position: absolute;
    right:0;
    transform: translateX(47.5%);
    width: auto;
    height: 100%;
    -webkit-mask-image: linear-gradient(
        115deg,
        transparent 0%,
        transparent 20%,
        rgba(0,0,0,0.15) 29%,
        rgba(0,0,0,0.45) 37%,
        rgba(0,0,0,0.75) 43%,
        black 50%
    );

    mask-image: linear-gradient(
        115deg,
        transparent 0%,
        transparent 20%,
        rgba(0,0,0,0.15) 29%,
        rgba(0,0,0,0.45) 37%,
        rgba(0,0,0,0.75) 43%,
        black 50%
    );
}

/* ----------------------- Header Ende -------------------------- */

/* ----------------------- Kontakt -------------------------- */
.contact-form {
    width:100%;
    max-width: 1150px;
    margin: 20px auto;
    padding: 35px 22px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 15px -7px var(--blue);
    text-align: center;
    color: var(--darkblue);
}
.contact-form h2 {
    margin: 0;
}
.contact-form p {
    margin: 0 0 45px;
    line-height: 1.5;
}
.contact-form p br {
    display:none;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.form-field {
    position: relative;
}
.form-field.full {
    grid-column: 1 / -1;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 18px 55px 18px 20px;
    border: 1px solid rgba(31, 157, 217, .35);
    border-radius: 10px;
    background: transparent;
    color: var(--darkblue);
    font: inherit;
    outline: none;
}
.form-field textarea {
    min-height: 145px;
    resize: vertical;
}
.form-field label {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 0 7px;
    background: var(--white);
    color: var(--darkblue);
    pointer-events: none;
    transition: .25s ease;
}
.form-field i {
    position: absolute;
    right: 22px;
    top: 20px;
    color: var(--blue);
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -9px;
    font-size: .85rem;
    color: var(--blue);
}
.main-btn {
  position: relative;
  display: inline-block;
  margin: 40px auto 15px auto;
  padding: 15px 30px;
  text-align: center;
  font-size: 18px;
  font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: var(--white);
  background: var(--yellow);
  cursor: pointer;
  transition: ease-out 0.5s;
  border-radius: 35px;
  border:none;
  box-shadow: inset 0 0 0 0 var(--blue);
}
.main-btn:hover {
  box-shadow: inset 0 -100px 0 0 var(--blue);
}
.main-btn:active {
  transform: scale(0.9);
}
.main-btn i {
    margin-left: 10px;
}
/* ----------------------- Kontakt Ende -------------------------- */

/* ----------------------- Footer -------------------------- */
footer {
    position: relative;
    background: var(--darkblue);
    padding: 170px 5% 30px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 220px;
    z-index: 5;
    display: block;
}

.footer-wave path {
    fill: var(--white);
}

.whale {
    position: absolute;
    inset: 0;
    transform: translate(-45%, 0%);
    width: auto;
    height: 120%;
    opacity: 0.8;
    z-index: 1;
    -webkit-mask-image: linear-gradient(
        -55deg,
        transparent 0%,
        transparent 20%,
        rgba(0,0,0,0.15) 29%,
        rgba(0,0,0,0.45) 37%,
        rgba(0,0,0,0.75) 43%,
        black 50%
    );

    mask-image: linear-gradient(
        -55deg,
        transparent 0%,
        transparent 20%,
        rgba(0,0,0,0.15) 29%,
        rgba(0,0,0,0.45) 37%,
        rgba(0,0,0,0.75) 43%,
        black 50%
    );
}

.footer-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
}
.footer-content h3{
    font-size:1.8rem;
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: transform .3s ease-in-out;
}

.footer-content a:hover {
    transform: translateY(-3px);
}
.icons{
    padding:11px;
    border-radius: 50%;
    color:var(--white);
    background:var(--blue);
    margin:30px 0 5px 0;
}

.rechte {
    position: relative;
    left:50%;
    transform:translateX(-50%);
    margin:30px auto 80px auto;
    display: flex;
    width:100%;
    max-width:var(--max-width);
}
.rechte p, .rechte a{
    font-size: 15px !important;
    padding:15px;
    color:var(--lightblue)
}
.rechte a{
    text-decoration: underline;
    text-underline-offset: 5px;
}
.push {
  margin-left: auto;
}
/* ----------------------- Menu -------------------------- */

.logo{
    width:100px;
    height:100px;
    position: fixed;
    top:0px;
    left:50%;
    z-index: 1100;
    background:rgba(var(--white-rgb), 1);
    transform: translateX(-50%);
    border-radius: 20px 0;
    box-shadow: 0px 0px 10px -3px var(--darkblue);
}
.logo img{
    width:100%;
    height: auto;
    filter:drop-shadow(1px 1px 2px #4d4c4c)
}

nav {
    width: 100%;
    height: 1px;
    position: fixed;
    bottom:0;
    z-index: 1000;
}
input#hamburg {
    display: none;
}
label.hamburg {
    display: block;
    background:linear-gradient(135deg,var(--darkblue),var(--blue-gradient));
    box-shadow: 0 0 20px -3px var(--black);
    border-radius: 35px;
    width: 100px;
    height: 55px;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 0);
    cursor: pointer;
    z-index: 600;
    transition: ease-in-out 0.5s;
    text-align: center;
}
#hamburg:checked+label.hamburg{
    width:150px;
    background:linear-gradient(135deg,var(--darkblue),var(--blue-gradient));
    box-shadow: 0 0 15px 0px var(--white);
}
label.hamburg.endofsite {
    bottom: 180px;
}
.btn{
    position:relative;
    top:14px;
    left:0;
    color:var(--white);
    font-size: 1.4rem;
    transition: ease-in-out 0.5s;
    letter-spacing: 2px;
}
#hamburg:checked+label.hamburg>.btn{
    left:20px;
}


.line {
    position: absolute;
    left: 17px;
    height: 2px;
    width: 0px;
    background:var(--white);
    border-radius: 2px;
    display: block;
    -webkit-transition:ease-in-out .5s;
    -o-transition:ease-in-out .5s;
    transition:ease-in-out .5s;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.line:nth-child(1) {
    top: 22px;
}
.line:nth-child(2) {
    top: 32px;
}

#hamburg:checked+.hamburg .line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
    width:30px;
}

#hamburg:checked+.hamburg .line:nth-child(2) {
    -webkit-transform: translateY(-5px) rotate(45deg);
    -ms-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
    width:30px;
}

#bg-move{
    position: absolute;
    width: 100%;
    height: 100vh;
    bottom:0;
    left:-105%;
    background:var(--darkblue);
    transition: ease-in-out 0.3s;
}
#move {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: -105%;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin: 0;
    padding: 0 0 130px 0;
    z-index: 500;
    -webkit-overflow-scrolling: touch;
}
nav ul li{
    list-style: none;
}
nav li {
    width: 100%}
nav ul li a {
    display: block;
    font-weight: 300;
    font-size: 1.2rem;
    padding: 17px;
    /* border-bottom: 1px #000 dotted; */
    color: var(--white);
    text-decoration: none;
}
/* nav ul li:first-of-type > a{
    border-top: 1px var(--white) dotted;
} */
nav #move a.active, nav #move a:hover {
    background:var(--white);
    color: var(--darkblue);
    -webkit-transition:ease-in-out .3s;
    -o-transition:ease-in-out .3s;
    transition:ease-in-out .3s;
}
nav ul>li>ul>li{
    background:var(--white);;
}
nav ul>li>ul>li:first-of-type > a{
    border-top: none;
}
.cta-btn{
    background:var(--yellow);
    width:max-content;
    position: relative;
    left:50%;
    transform: translateX(-50%);
    border-radius: 35px;
    color:var(--black);
    padding-right:15px !important;
    margin-top:20px;
}
.cta-btn:hover{
    background:var(--yellow);
}
#hamburg:checked~#move {
    left: 0;
}
#hamburg:checked~#bg-move {
    left: 0;
}
.mobil-menu {
    display: none;
}

@media (min-width:768px){
    .logo{
        position: absolute;
        width:120px;
        height:120px;
        top:0;
        left:2%;
        transform: translateX(0);
    }
    label.hamburg {
        display: none;
    }
    nav {
        width: 100%;
        height: 20px;
        max-width:1200px;
        position: fixed;
        top:0;
        left:50%;
        transform: translateX(-50%);
        margin:0px auto 0 auto;
        z-index: 1000;
    }
    #bg-move{
        height: 0;
    }
    #move {
        position: absolute;
        top:0px;
        left:0;
        background:none;
        height:120px;
        width: 100%;
        text-align: right;
        margin: 0 ;
        padding: 0 0 0 10px;
    }
    nav ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 120px;
        margin: 0 2% 0 0;
        
    }

    nav ul>li {
        display: flex;
        align-items: center;
        padding:13px 5px;
        width: auto;
        background:none;
        margin:0 0 0 -5px;
        transform: translateY(0px);
        -webkit-transition: ease-in-out .3s;
        -o-transition: ease-in-out .3s;
        transition: ease-in-out .3s;
        background-color: var(--darkblue);
        box-shadow: 0 5px 15px -10px var(--black);
    }
    nav.nav-light ul>li{
        -webkit-transition: ease-in-out .3s;
        -o-transition: ease-in-out .3s;
        transition: ease-in-out .3s;
        background-color: var(--white);
        box-shadow: 0 0px 0px 0px transparent;

    }
    nav.nav-light ul li a {
        color: var(--black);
        -webkit-transition: ease-in-out .3s;
        -o-transition: ease-in-out .3s;
        transition: ease-in-out .3s;
    }
    nav ul li:first-of-type > a{
        border-top: none;
    }
    nav ul li:last-of-type > a{
        padding:18px 0 18px 8px;
    }
    nav ul li:first-child{
        border-radius: 45px 0 0 45px;
    }
    nav ul li:last-child{
        border-radius:0 45px 45px 0;
        padding-right:20px;
    }
    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        height:100%;
        border-bottom: 0;
        color: var(--white);
        font-size: 0.8rem;
        text-decoration: none;
        letter-spacing: 1px;
        font-weight: 400;
        padding: 18px 11px;
        transform: translateY(0px);
        -webkit-transition: ease-in-out .3s;
        -o-transition: ease-in-out .3s;
        transition: ease-in-out .3s;
    }

    nav #move a.active, nav #move a:hover {
        background: none;
        color: var(--white);
    }
    nav.nav-light #move a.active, nav.nav-light #move a:hover {
        background: none;
        color: var(--black);
    }
    nav #move a.active.cta-btn, nav #move .cta-btn:hover {
        background: var(--yellow);
        color: var(--black);
    }
    nav.nav-light #move a.active.cta-btn, nav.nav-light #move .cta-btn:hover {
        background: var(--yellow);
        color: var(--black);
    }
    nav ul>li:hover a {
        transform:translateY(-3px);
    }
    nav ul>li:hover .cta-btn {
        transform:translate(-50%,-3px);
        color:var(--black)
    }
    nav ul li ul {
        display: none;
        position: absolute;
        background: var(--white);
        z-index: 120;
    }
    nav ul>li>ul>li {
        display: block;
        padding: 0;
        width: auto;
        background:none;
        margin:0 ;
        border-right:none;
        text-align: left;
    }
    nav ul>li>ul {
        margin: 18px 0 0 0;
    }
    nav ul li:hover>ul {
        display: block;
    }
  
    nav ul>li>ul>li>a {
        display: block;
        background:none;
        color:#000 !important;
        border-left: none !important;
        border-bottom: 1px #000 dotted;
        -webkit-box-shadow: 0 5px 8px 0 rgba(50, 50, 50, .45);
        box-shadow: 0 5px 8px 0 rgba(50, 50, 50, .45);
        padding-left: 5px;
        padding-right: 5px;
    }
    nav ul>li>ul>li:hover a{
        color:var(--white) !important;
    }
    .cta-btn{
        padding-right:6px !important;
        margin-left:10px;
        margin-top:0;
    }
    /* Header */
    .hero-bg {
        margin-top: -20px;
    }
    /* Footer */
    .whale {
        transform: translate(-38%, -5%);
    }
    .rechte {
        margin:50px 0 0px 0;
    }
    /* Main */
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        --grid-gap: 45px;
    }

    .process-item {
        padding: 0;
    }
}

@media (min-width:1024px){
    .mareen {
        transform: translateX(33%);
    }
    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .row{
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }

    .left-img img {
        position: absolute;
        left:50%;
        transform:translateX(-100%);
        width: 50%;
        max-width:500px;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        display: block;
        -webkit-mask-image: linear-gradient(
            115deg,
            transparent 0%,
            transparent 20%,
            rgba(0,0,0,0.15) 29%,
            rgba(0,0,0,0.45) 37%,
            rgba(0,0,0,0.75) 43%,
            black 50%
        );

        mask-image: linear-gradient(
            115deg,
            transparent 0%,
            transparent 20%,
            rgba(0,0,0,0.15) 29%,
            rgba(0,0,0,0.45) 37%,
            rgba(0,0,0,0.75) 43%,
            black 50%
        );
    }
    .contact-form p br {
        display:block;
    }
    .form-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .coaching-understanding {
        grid-template-columns: .9fr 1.1fr;
    }
}
@media (min-width:1200px){
    .whale {
        transform: translate(-23%, -5%);
    }
}
@media (min-width:1363px){
    .process-item:not(:last-child)::after {
        display: block;
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px;
        height: 60%;
        background: var(--darkblue);
    }
}
@media (min-width:1600px){
    .mareen {
        transform: translateX(18%);
    }
    .whale {
        transform: translate(-0%, -5%);
    }
}
@media (min-width:2400px){
    .mareen {
        transform: translateX(0);
    }
}


/* ----------------------- KURSWECHSEL Landingpage -------------------------- */
/* Ausschließlich seitenbezogene Ergänzungen; bestehende Styles bleiben unverändert. */

.kw-hero {
    position: relative;
    min-height: 90vh;
    background: var(--darkblue);
    color: var(--white);
    overflow: hidden;
}

.kw-hero__image {
    position: absolute;
    inset: 0 0 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: .38;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 34%, #000 70%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 34%, #000 70%);
}

.kw-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,40,80,.98) 0%, rgba(22,40,80,.88) 48%, rgba(22,40,80,.3) 100%);
}

.kw-hero__content {
    position: relative;
    z-index: 2;
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 180px 0 220px;
}

.kw-eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.kw-eyebrow--light {
    color: var(--yellow);
}

.kw-hero h1 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: clamp(2.8rem, 10vw, 6rem);
    font-weight: 500;
    letter-spacing: .04em;
    line-height: .95;
}

.kw-hero__claim {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--white);
    font-size: clamp(1.35rem, 4.4vw, 2.35rem);
    font-weight: 300;
    line-height: 1.3;
}

.kw-hero__intro {
    max-width: 670px;
    margin: 0;
    color: var(--lightblue);
    line-height: 1.6;
}

.kw-hero__button {
    margin: 34px 0 0;
}

.kw-hero__wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 4;
    width: 100%;
    height: 170px;
}

.kw-hero__wave path {
    fill: var(--white);
}

.kw-section {
    padding: 55px 0;
}

.kw-narrow {
    max-width: 1050px;
}

.kw-lead {
    max-width: 900px;
    margin: 35px auto 0;
    text-align: center;
}

.kw-lead p {
    margin-bottom: 20px;
    line-height: 1.75;
}

.kw-situation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
}

.kw-situation-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 145px;
    padding: 24px;
    border: 1px solid rgba(31,157,217,.18);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(22,40,80,.07);
}

.kw-situation-card span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--lightblue);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.kw-situation-card p {
    margin: 0;
    line-height: 1.55;
}

.kw-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    align-items: center;
}

.kw-content-block p:not(.kw-eyebrow) {
    line-height: 1.7;
}

.kw-topic-list {
    padding: 30px 24px;
    border-radius: 12px;
    background: var(--darkblue);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(22,40,80,.18);
}

.kw-topic-list h3 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 1.15rem;
}

.kw-topic-list ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kw-topic-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    line-height: 1.5;
}

.kw-topic-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: .7rem;
}

.kw-benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

.kw-benefit-card {
    padding: 34px 28px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(22,40,80,.1);
    text-align: center;
}

.kw-benefit-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.65rem;
}

.kw-benefit-card h3 {
    margin: 0 0 15px;
}

.kw-benefit-card p {
    margin: 0;
    line-height: 1.65;
}

.kw-highlight {
    position: relative;
    max-width: 920px;
    margin: 38px auto 0;
    padding: 34px 25px;
    border-radius: 10px;
    background: var(--darkblue);
    color: var(--white);
    text-align: center;
}

.kw-highlight i {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 1.9rem;
}

.kw-highlight p {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.2rem, 3.8vw, 1.65rem);
    line-height: 1.45;
}

.kw-section-intro {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.65;
}

.kw-audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1050px;
    margin: 38px auto 0;
}

.kw-audience-list span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 13px 18px;
    border: 1px solid rgba(31,157,217,.25);
    border-radius: 35px;
    background: var(--white);
    box-shadow: 0 6px 16px rgba(22,40,80,.07);
}

.kw-audience-list i {
    color: var(--blue);
}

.kw-format-section {
    padding: 75px 0;
    background: var(--darkblue);
    color: var(--white);
}

.kw-format-section h2 {
    color: var(--white);
}

.kw-format-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 45px;
}

.kw-format-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 24px;
    border: 1px solid rgba(226,242,252,.2);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
}

.kw-format-card > span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.kw-format-card h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.kw-format-card p {
    margin: 0;
    color: var(--lightblue);
    line-height: 1.65;
}

.kw-contact-form {
    max-width: 1200px;
}

.kw-contact-form .kw-eyebrow {
    margin-bottom: 12px;
}

.kw-contact-form .kw-form-intro {
    max-width: 870px;
    margin: 0 auto 45px;
}

.kw-contact-form .kw-message-field .kw-static-label {
    position: static;
    display: block;
    margin: 0 0 10px;
    padding: 0;
    background: transparent;
    color: var(--darkblue);
    text-align: left;
    line-height: 1.4;
    pointer-events: auto;
}

.kw-contact-form .kw-message-field i {
    top: 55px;
}

.kw-form-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
}

.kw-form-actions .main-btn {
    margin: 0;
}

.kw-secondary-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid var(--blue);
    border-radius: 35px;
    color: var(--darkblue);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: background .3s ease, color .3s ease;
}

.kw-secondary-button:hover {
    background: var(--blue);
    color: var(--white);
}

.kw-contact-form .kw-form-note {
    margin: 25px auto 0;
    color: rgba(22,40,80,.72);
    font-size: .9rem;
}

@media (min-width: 650px) {
    .kw-situation-grid,
    .kw-benefit-grid,
    .kw-format-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kw-form-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .kw-hero {
        margin-top: -20px;
    }

    .kw-hero__image {
        width: 67%;
        opacity: .72;
    }

    .kw-hero__content {
        padding-top: 205px;
    }

    .kw-section {
        padding: 80px 0;
    }

    .kw-situation-card {
        grid-template-columns: 70px 1fr;
        padding: 28px;
    }

    .kw-situation-card span {
        width: 64px;
        height: 64px;
    }

    .kw-topic-list {
        padding: 40px 36px;
    }

    .kw-highlight {
        padding: 42px 55px;
    }
}

@media (min-width: 1024px) {
    .kw-two-column {
        grid-template-columns: .9fr 1.1fr;
        gap: 75px;
    }

    .kw-situation-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kw-situation-card {
        grid-template-columns: 1fr;
        align-content: start;
        text-align: center;
    }

    .kw-situation-card span {
        margin: 0 auto;
    }

    .kw-benefit-card {
        padding: 42px 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kw-secondary-button {
        transition: none;
    }
}
