/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/
@import url("../bridge/style.css");

/* Schöne Trennlinie für Inhaltsbereiche */
hr {
    width: 100%;
    height: 1px;
    margin: 20px 0px;
    border: 0;
    background: linear-gradient(
        90deg,
        rgba(202, 33, 54, 0.75) 0%,
        rgba(0, 0, 0, 0.16) 18%,
        rgba(0, 0, 0, 0.10) 72%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* etwas kompakter auf Mobil */
@media (max-width: 700px) {
    hr {
        margin: 26px 0;
    }
}

.preise li {margin-bottom:15px;}

h3 {margin-bottom:30px;}
ul {margin-top:20px; margin-bottom: 20px;}
li {list-style-position: outside; margin-left:20px; margin-bottom:5px;}

.jobs h3 {color:#000000;}
.leistungen h2 {color:#000000; font-size:30px; margin-top:10px;}

.bg1 {/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,edeff0+50,ffffff+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #edeff0 50%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#edeff0 50%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#edeff0 50%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

/* Einheitliche Größen für alle Leistungsbilder */
.round-img {
    width: 100%;
    text-align: center;
}

.round-img .vc_single_image-wrapper {
    display: block !important;
    width: 90% !important;
    max-width: 736px !important;
    margin: 25px auto 0 !important;
}

.round-img .vc_single_image-wrapper img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;

    border-radius: 25px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .round-img .vc_single_image-wrapper {
        width: 100% !important;
		 border-radius: 0px!important;
	
    }
	 }
	
	@media (max-width: 768px) {
    .round-img .vc_single_image-wrapper img {
        width: 100% !important;
		padding-bottom:20px;
		 border-radius: 0px!important;
		 box-shadow: 0 12px 28px rgba(0, 0, 0, 0);
	
    }
	
	
}


.schlaf-hero {
    --schlaf-red: #4cd1dd;

    position: relative;
    width: calc(100% - 40px);
    max-width: 1600px;
    min-height: 610px;
    margin: 24px auto 0;

    overflow: hidden;
    background: #202020;
    border-radius: 26px;

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.16),
        0 7px 22px rgba(0, 0, 0, 0.07);

    isolation: isolate;
}

.schlaf-hero *,
.schlaf-hero *::before,
.schlaf-hero *::after {
    box-sizing: border-box;
}


/* =========================================================
   BILD
========================================================= */

.schlaf-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
height: 100%;

    display: block;


     object-fit: cover;
    object-position: center center;

    transform: scale(1.055);

    filter:
        saturate(0.9)
        contrast(1.01);

    transition:
        transform 1.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.5s ease;
}

.schlaf-hero.is-visible .schlaf-hero__image {
    transform: scale(1);

    filter:
        saturate(0.97)
        contrast(1.01);
}


/* =========================================================
   OVERLAY
========================================================= */

.schlaf-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(18, 20, 24, 0.92) 0%,
            rgba(18, 20, 24, 0.66) 24%,
            rgba(18, 20, 24, 0.52) 44%,
            rgba(18, 20, 24, 0.32) 63%,
            rgba(18, 20, 24, 0.02) 78%,
            rgba(18, 20, 24, 0) 90%
        ),
        linear-gradient(
            0deg,
            rgba(8, 10, 14, 0.18) 0%,
            rgba(8, 10, 14, 0) 10%
        );

    pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.schlaf-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1380px;
    min-height: 610px;

    margin: 0 auto;
    padding: 62px 70px 40px;

    display: flex;
    align-items: center;
}


/* =========================================================
   CONTENT
========================================================= */

.schlaf-hero__content {
    width: 610px;
    max-width: 50%;
}


/* =========================================================
   KICKER
========================================================= */

.schlaf-hero__kicker {
    display: block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 15px;
    line-height: 1.2;

    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;

    opacity: 0;
    transform: translateY(16px);

    transition:
        opacity 0.5s ease 0.18s,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.schlaf-hero.is-visible .schlaf-hero__kicker {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   HEADLINE
========================================================= */

.schlaf-hero__content h1 {
    margin: 0;

    font-size: clamp(34px, 3.45vw, 72px);
    line-height: 2.4;

    font-weight: 900;
    font-style: italic;

    letter-spacing: -1.0px;
    text-transform: uppercase;
}

.schlaf-hero__white,
.schlaf-hero__red {
    display: block;
}

.schlaf-hero__white {
    color: #ffffff;

    font-size: 0.84em;
    line-height: 0.98;

    opacity: 0;
    transform: translateX(-45px);

    transition:
        opacity 0.58s ease 0.28s,
        transform 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

.schlaf-hero__red {
    margin-top: 9px;

    color: var(--schlaf-red);

    font-size: 0.92em;
    line-height: 0.94;

    opacity: 0;
    transform: translateX(-60px);

    transition:
        opacity 0.62s ease 0.4s,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.schlaf-hero.is-visible .schlaf-hero__white,
.schlaf-hero.is-visible .schlaf-hero__red {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   LEAD
========================================================= */

.schlaf-hero__lead {
    max-width: 540px;

    margin: 21px 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 20px;
    line-height: 1.3;

    font-weight: 500;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.5s ease 0.55s,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.schlaf-hero__lead a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.schlaf-hero__lead a:hover {
    color: var(--schlaf-red);
}

.schlaf-hero__lead strong {
    color: #ffffff;
    font-weight: 800;
}

.schlaf-hero.is-visible .schlaf-hero__lead {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   BUTTON
========================================================= */

.schlaf-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 23px;
    padding: 13px 22px;

    background: var(--schlaf-red);
    color: #000;

    border-radius: 25px;

    font-size: 17px;
    line-height: 1.4;

    font-weight: 800;
    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(202, 33, 54, 0.28);

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.5s ease 0.66s,
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.66s,
        background 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}

.schlaf-hero.is-visible .schlaf-hero__button {
    opacity: 1;
    transform: translateY(0);
}

.schlaf-hero__button span {
    font-size: 16px;
    line-height: 1;

    transition: transform 0.28s ease;
}

.schlaf-hero__button:hover {
    transform: translateY(-4px);

    background: #ffffff;
    color:#000;

    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.24);
}

.schlaf-hero__button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   TRUST
========================================================= */

.schlaf-hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;

    opacity: 0;
    transform: translateY(16px);

    transition:
        opacity 0.5s ease 0.78s,
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.78s;
}

.schlaf-hero.is-visible .schlaf-hero__trust {
    opacity: 1;
    transform: translateY(0);
}

.schlaf-hero__trust-item {
    display: flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 10px;
    line-height: 1.2;

    font-weight: 600;

    white-space: nowrap;
}

.schlaf-hero__check {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--schlaf-red);
    border-radius: 50%;

    color: var(--schlaf-red);

    font-size: 10px;
    line-height: 1;

    font-weight: 900;
}


/* =========================================================
   TABLET
========================================================= */

/* Tablet quer / schmale Desktops */
@media (max-width: 1200px) {
    .schlaf-hero__image {
        object-position: 58% center;
    }
}

/* Tablet */
@media (max-width: 980px) {
    .schlaf-hero__image {
        object-position: 62% center;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .schlaf-hero__image {
        width: 100%;
        height: 310px;
        object-fit: cover;
        object-position: 64% center;
    }
}

@media (max-width: 980px) {

    .schlaf-hero {
        width: calc(100% - 30px);
        min-height: 570px;

        border-radius: 22px;
    }

    .schlaf-hero__inner {
        min-height: 570px;

        padding: 52px 44px 36px;
    }

    .schlaf-hero__content {
        width: 550px;
        max-width: 62%;
    }

    .schlaf-hero__content h1 {
        font-size: clamp(32px, 4.6vw, 46px);
        letter-spacing: -1.2px;
    }

    .schlaf-hero__white {
        font-size: 0.86em;
    }

    .schlaf-hero__red {
        font-size: 0.94em;
    }

    .schlaf-hero__lead {
        max-width: 490px;

        font-size: 14px;
    }

    .schlaf-hero__trust {
        gap: 14px;
        margin-top: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .schlaf-hero {
        width: calc(100% - 24px);
        min-height: 540px;
        margin-top: 12px;
        border-radius: 19px;
        background: #13151a;
    }

    .schlaf-hero__image {
        height: 310px;
        object-position: 95% center;
        object-fit: cover;
    }

    .schlaf-hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 150px;
        height: 180px;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            rgba(19, 21, 26, 0) 50%,
            rgba(19, 21, 26, 0.45) 62%,
            rgba(19, 21, 26, 0.92) 78%,
            rgba(19, 21, 26, 1) 100%
        );
    }

    .schlaf-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(19, 21, 26, 0.18) 0%,
            rgba(19, 21, 26, 0.08) 38%,
            rgba(19, 21, 26, 0) 100%
        );
    }

    .schlaf-hero__inner {
        min-height: 540px;
        padding: 250px 24px 32px;
        align-items: flex-end;
    }

    .schlaf-hero__content {
        width: 100%;
        max-width: none;
        position: relative;
        z-index: 3;
    }

    .schlaf-hero__kicker {
        margin-bottom: 11px;

        font-size: 12px;
    }

    .schlaf-hero__content h1 {
        font-size: 30px;
        line-height: 42px;

        letter-spacing: 1px;
    }

    .schlaf-hero__white {
        font-size: 0.88em;
    }

    .schlaf-hero__red {
        margin-top: 7px;

        font-size: 30px;
		line-height:36px;
    }

    .schlaf-hero__lead {
        margin-top: 18px;

        max-width: 100%;

        font-size: 20px;
        line-height: 1.45;
    }

    .schlaf-hero__button {
        margin-top: 20px;

        padding: 13px 20px;
    }

    .schlaf-hero__trust {
        display: grid;
        grid-template-columns: 1fr;

        gap: 8px;

        margin-top: 23px;
    }

    .schlaf-hero__trust-item {
        font-size: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .schlaf-hero__image,
    .schlaf-hero__kicker,
    .schlaf-hero__white,
    .schlaf-hero__red,
    .schlaf-hero__lead,
    .schlaf-hero__button,
    .schlaf-hero__trust {
        transition: none;
    }

    .schlaf-hero__image {
        transform: none;
    }

    .schlaf-hero__kicker,
    .schlaf-hero__white,
    .schlaf-hero__red,
    .schlaf-hero__lead,
    .schlaf-hero__button,
    .schlaf-hero__trust {
        opacity: 1;
        transform: none;
    }

}

header:not(.with_hover_bg_color) nav.main_menu>ul>li>a>span:not(.plus), nav.vertical_menu>ul>li>a>span:not(.plus) {
    position: relative;
    display: inline-block;
    line-height: initial;
    top: 40px;
}

.boxschatten_leistungen {
-webkit-filter: drop-shadow(3px 3px 0px #d6dede);
filter: drop-shadow(4px 4px 3px #d6dede);
background-color: #ffffff;
border-radius: 10px;
z-index:88;
padding:30px 30px 30px 30px;
z-index: 99;
margin-top:50px;
min-height:80px;
transition: transform .3s; /* Animation */
}

.boxschatten_leistungen:hover {transform: scale(0.95);}

.boxschatten_leistungen h5{margin-top:15px;}

.imgspcindex {margin-top:70px; padding-right:40px;}

.badteas h1 {color:#ffffff; margin-bottom:10px;}
.badteas h3 {color:#ffffff; margin-bottom:25px;}

.slidepdg {padding-left:120px; padding-right: 120px; margin-top:60px;}

footer {margin-top:70px;}

.form_half {
    width: 49.5%;
    float: left;
    margin-right: 1%;
}

.form_full {
    width: 100%;
    float: left;
    margin-right: 1%;
}

.form_half_last {
    margin-right: 0px;
}

.wpcf7-response-output
{
    clear: both;
}

.wc-terms-and-conditions .input-checkbox
{
	width: 18px;
	height: 20px;
}


.qode-accordion-holder .qode-title-holder .qode-accordion-mark {
    left: 0px!important;
}

.qode-accordion-holder .qode-title-holder .qode-tab-title span.qode-tab-title-inner:only-child {
    padding-left: 40px!important;
	padding-top: 6px;
}

.qode-accordion-holder .qode-accordion-content {
    margin: 0;
    padding: 0px 0px 10px 0px!important;
    background-position: center;
    background-size: cover;
}

.qode-accordion-holder {
    position: relative;
    margin-bottom: 5px;
}

.swap_on_mobile {padding-top:120px;}
.swap_on_mobile2 {padding-top:80px;}


@media (max-width: 760px) {
.boxtop1 {margin-top:30px!important;}
	
.slidepdg {padding-left:10px; padding-right: 10px; margin-top:30px;}
	
.imgspcindex {margin-top:0px; padding-right:0px; margin-bottom:25px;}

.swap_on_mobile {padding-top:60px;}
.swap_on_mobile2 {padding-top:20px;}	
	
.swap_on_mobile .section_inner_margin .element_from_fade > div:first-child {
display: flex !important;
 flex-direction: column-reverse;
padding-top:0px;
}

.swap_on_mobile2 .section_inner_margin .element_from_fade > div:first-child {
display: flex !important;
flex-direction: column;
padding-top:0px;
}

	
.headlinespaceindex {margin-right:0px; margin-top:0px;}
	
.indexkarrieretxtleft {margin-top:30px; margin-bottom:30px;}
	
.indeximpressionentxtleft {margin-top: 0px; padding-right:0px;}
	
.negimpressionen { display:none;}
	
.mobilespacetop {margin-top:50px;}
	
.picpadding {padding:0%}
.txtboxpadding {padding-top:0px;}

.qode_elementor_container_inner, .full_width .parallax_content, .qode_elementor_container_inner, .steps_holder_inner, div.grid_section .section_inner, nav.content_menu ul {width:85%!important;}
	
.form_half {
    width: 100%;
    float: left;
    margin-right: 1%;
}

.form_full {
    width: 100%;
    float: left;
    margin-right: 1%;
}

.form_half_last {
    margin-right: 0px;
}

.wpcf7-response-output
{
    clear: both;
}

.wc-terms-and-conditions .input-checkbox
{
	width: 18px;
	height: 20px;
}

}

.seo-sanitaer-block {
    width: 100%;
    padding: 70px 20px;
    background: #f3f3f3;
    box-sizing: border-box;
}

.seo-sanitaer-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.48fr;
    align-items: stretch;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;

    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s ease;

    will-change: transform;
}

.seo-sanitaer-inner:hover {
    transform: translateY(-7px);

    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.10);
}

.seo-sanitaer-cta {
    background: linear-gradient(
        180deg,
        #1899a5 0%,
        #0e6870 100%
    );

    color: #fff;
    padding: 58px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seo-sanitaer-cta::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.seo-sanitaer-kicker {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.94;
}

.seo-sanitaer-cta h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 48px;
    line-height: 0.94;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1.2px;
}

.seo-sanitaer-cta p {
    margin: 0 0 30px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    font-style: italic;
}

.seo-sanitaer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;
    padding: 14px 23px;

    border-radius: 999px;

    background: #fff;
    color: #1899a5;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;

    position: relative;
    z-index: 2;
}

.seo-sanitaer-button span {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.seo-sanitaer-button:hover {
    background: #151515;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.seo-sanitaer-button:hover span {
    transform: translateX(4px);
}

.seo-sanitaer-content {
    background: #fff;
    padding: 52px 52px 46px;
}

.seo-sanitaer-overline {
    display: block;
    margin-bottom: 10px;
    color: #1899a5;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.seo-sanitaer-content h3 {
    margin: 0 0 24px;
    color: #111;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.5px;
    max-width: 560px;
}

.seo-sanitaer-content p {
    margin: 0 0 18px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.8;
}

.seo-sanitaer-content strong {
    color: #151515;
    font-weight: 800;
}

.seo-sanitaer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.seo-sanitaer-services span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #dedede;
    border-radius: 999px;
    background: #fafafa;
    color: #333;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.seo-sanitaer-services span:hover {
    transform: translateY(-3px);
    border-color: #df1734;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 860px) {
    .seo-sanitaer-block {
        padding: 45px 18px;
    }

    .seo-sanitaer-inner {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .seo-sanitaer-inner:hover {
        transform: translateY(-4px);
    }

    .seo-sanitaer-cta,
    .seo-sanitaer-content {
        padding: 40px 32px;
    }

    .seo-sanitaer-cta h2 {
        font-size: 42px;
    }

    .seo-sanitaer-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .seo-sanitaer-block {
        padding: 35px 15px;
    }

    .seo-sanitaer-inner {
        border-radius: 18px;
    }

    .seo-sanitaer-cta,
    .seo-sanitaer-content {
        padding: 32px 24px;
    }

    .seo-sanitaer-cta h2 {
        font-size: 38px;
        line-height: 0.96;
    }

    .seo-sanitaer-cta p {
        font-size: 18px;
    }

    .seo-sanitaer-content h3 {
        font-size: 22px;
        line-height: 1.18;
    }

    .seo-sanitaer-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .seo-sanitaer-services {
        gap: 7px;
    }

    .seo-sanitaer-services span {
        padding: 8px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .seo-sanitaer-inner,
    .seo-sanitaer-button,
    .seo-sanitaer-button span,
    .seo-sanitaer-services span {
        transition: none;
    }

    .seo-sanitaer-inner:hover,
    .seo-sanitaer-button:hover,
    .seo-sanitaer-services span:hover {
        transform: none;
    }
}

.reviews-section {
    width: 100%;
    padding: 82px 20px 88px;
    background: #171717;
    box-sizing: border-box;
}

.reviews-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.reviews-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 42px;
}

.reviews-overline {
    display: block;
    margin-bottom: 12px;

    color: #1899a5;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-head h2 {
    margin: 0;

    color: #fff;
    font-size: 38px;
    line-height: 1.04;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1px;
}

.reviews-head-text {
    padding-bottom: 4px;
}

.reviews-head-text p {
    margin: 0;

    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.75;
}

.reviews-head-text strong {
    color: #fff;
    font-weight: 800;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    min-height: 310px;

    padding: 28px 27px 24px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border-radius: 22px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.24),
        0 4px 12px rgba(0, 0, 0, 0.12);

    box-sizing: border-box;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 30px 58px rgba(0, 0, 0, 0.34),
        0 8px 18px rgba(0, 0, 0, 0.16);
}

.review-card-featured {
    transform: translateY(-12px);
}

.review-card-featured:hover {
    transform: translateY(-19px);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;

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

    flex: 0 0 44px;

    border-radius: 50%;

    background: #1899a5;
    color: #fff;

    font-size: 17px;
    line-height: 1;
    font-weight: 800;
}

.review-person {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-person strong {
    color: #181818;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.review-person span {
    color: #888;
    font-size: 11px;
    line-height: 1.2;
}

.review-google {
    margin-left: auto;

    color: #1899a5;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.review-stars {
    margin-top: 22px;

    color: #1899a5;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 2px;
}

.review-text {
    margin: 20px 0 24px;

    color: #414141;
    font-size: 14px;
    line-height: 1.7;

    flex: 1;
}

.review-time {
    color: #999;
    font-size: 11px;
    line-height: 1.2;
}

.reviews-footer {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-top: 45px;
}

.reviews-footer-line {
    height: 1px;
    flex: 1;

    background: rgba(255, 255, 255, 0.14);
}

.reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 999px;

    background: #1899a5;
    color: #fff;

    font-size: 13px;
    line-height: 1;
    font-weight: 800;

    text-decoration: none;

    box-shadow: 0 12px 28px rgba(202, 33, 54, 0.28);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.reviews-button span {
    font-size: 17px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.reviews-button:hover {
    transform: translateY(-4px);

    background: #fff;
    color: #1899a5;

    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.reviews-button:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .reviews-section {
        padding: 65px 18px 70px;
    }

    .reviews-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .reviews-head h2 {
        font-size: 34px;
    }

    .reviews-head-text {
        max-width: 600px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        min-height: auto;
    }

    .review-card-featured {
        transform: none;
    }

    .review-card-featured:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 520px) {
    .reviews-section {
        padding: 52px 15px 58px;
    }

    .reviews-head h2 {
        font-size: 30px;
    }

    .reviews-head-text p {
        font-size: 14px;
    }

    .review-card {
        padding: 25px 23px 22px;
        border-radius: 18px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .reviews-footer {
        gap: 14px;
        margin-top: 34px;
    }

    .reviews-footer-line {
        display: none;
    }

    .reviews-button {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-card,
    .reviews-button,
    .reviews-button span {
        transition: none;
    }

    .review-card:hover,
    .review-card-featured,
    .review-card-featured:hover,
    .reviews-button:hover {
        transform: none;
    }
}

.schlaf-reviews {
    width: 100%;
    padding: 82px 20px 62px;

    background: #171717;

    box-sizing: border-box;
}


.schlaf-reviews *,
.schlaf-reviews *::before,
.schlaf-reviews *::after {
    box-sizing: border-box;
}


.schlaf-reviews__inner {
    width: 100%;
    max-width: 1040px;

    margin: 0 auto;
}



/* =========================================================
   HEADER
========================================================= */


.schlaf-reviews__header {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 42px;
}


.schlaf-reviews__overline {
    display: block;

    margin-bottom: 12px;

    color: #1899a5;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.schlaf-reviews__headline h2 {
    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.04;

    font-weight: 800;
    font-style: italic;

    letter-spacing: -1px;
}


.schlaf-reviews__intro {
    padding-bottom: 4px;
}


.schlaf-reviews__intro p {
    margin: 0;

    color: #b8b8b8;

    font-size: 15px;
    line-height: 1.75;

    font-weight: 400;
}


.schlaf-reviews__intro strong {
    color: #ffffff;

    font-weight: 800;
}



/* =========================================================
   REVIEW GRID
========================================================= */


.schlaf-reviews__grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}



/* =========================================================
   REVIEW CARDS
========================================================= */


.schlaf-review-card {
    min-height: 275px;

    padding: 28px 27px 27px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.24),
        0 4px 12px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;

    will-change: transform;
}


.schlaf-review-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 30px 58px rgba(0, 0, 0, 0.34),
        0 8px 18px rgba(0, 0, 0, 0.16);
}


.schlaf-review-card--featured {
    transform: translateY(-12px);
}


.schlaf-review-card--featured:hover {
    transform: translateY(-19px);
}



/* =========================================================
   REVIEW CARD HEADER
========================================================= */


.schlaf-review-card__head {
    display: flex;

    align-items: center;

    gap: 12px;
}


.schlaf-review-card__avatar {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1899a5;

    color: #ffffff;

    font-size: 17px;
    line-height: 1;

    font-weight: 800;
}


.schlaf-review-card__person {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.schlaf-review-card__person strong {
    color: #181818;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 800;
}


.schlaf-review-card__person span {
    color: #888888;

    font-size: 11px;
    line-height: 1.2;

    font-weight: 400;
}


.schlaf-review-card__google {
    margin-left: auto;

    color: #1899a5;

    font-size: 18px;
    line-height: 1;

    font-weight: 800;
}



/* =========================================================
   STARS
========================================================= */


.schlaf-review-card__stars {
    margin-top: 22px;

    color: #1899a5;

    font-size: 17px;
    line-height: 1;

    letter-spacing: 2px;
}



/* =========================================================
   REVIEW TEXT
========================================================= */


.schlaf-review-card__text {
    margin: 20px 0 0;

    color: #414141;

    font-size: 14px;
    line-height: 1.7;

    font-weight: 400;
}



/* =========================================================
   FOOTER / BUTTON
========================================================= */


.schlaf-reviews__footer {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-top: 45px;
}


.schlaf-reviews__line {
    height: 1px;

    flex: 1;

    background: rgba(255, 255, 255, 0.14);
}


.schlaf-reviews__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 24px;

    border-radius: 999px;

    background: #1899a5;

    color: #ffffff;

    font-size: 13px;
    line-height: 1;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(202, 33, 54, 0.28);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.schlaf-reviews__button span {
    font-size: 17px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.schlaf-reviews__button:hover {
    transform: translateY(-4px);

    background: #ffffff;

    color: #1899a5;

    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.25);
}


.schlaf-reviews__button:hover span {
    transform: translateX(4px);
}


.schlaf-reviews__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);

    outline-offset: 4px;
}



/* =========================================================
   TRANSPARENZHINWEIS
========================================================= */


.schlaf-reviews__notice {
    width: 100%;

    max-width: 820px;

    margin: 31px auto 0;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 10px;
}


.schlaf-reviews__notice-icon {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    margin-top: 1px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: #777777;

    font-size: 9px;
    line-height: 1;

    font-weight: 800;
}


.schlaf-reviews__notice p {
    margin: 0;

    color: #727272;

    font-size: 13px;
    line-height: 1.6;

    font-weight: 400;

    text-align: center;
}


.schlaf-reviews__notice strong {
    color: #929292;

    font-weight: 600;
}



/* =========================================================
   TABLET
========================================================= */


@media (max-width: 900px) {

    .schlaf-reviews {
        padding: 65px 18px 58px;
    }


    .schlaf-reviews__header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }


    .schlaf-reviews__headline h2 {
        font-size: 34px;
    }


    .schlaf-reviews__intro {
        max-width: 600px;

        padding-bottom: 0;
    }


    .schlaf-reviews__grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .schlaf-review-card {
        min-height: auto;
    }


    .schlaf-review-card--featured {
        transform: none;
    }


    .schlaf-review-card--featured:hover {
        transform: translateY(-7px);
    }


    .schlaf-reviews__notice {
        max-width: 650px;
    }

}



/* =========================================================
   MOBILE
========================================================= */


@media (max-width: 520px) {

    .schlaf-reviews {
        padding: 52px 15px 46px;
    }


    .schlaf-reviews__header {
        margin-bottom: 30px;
    }


    .schlaf-reviews__overline {
        font-size: 11px;

        margin-bottom: 10px;
    }


    .schlaf-reviews__headline h2 {
        font-size: 30px;

        line-height: 1.06;
    }


    .schlaf-reviews__intro p {
        font-size: 14px;

        line-height: 1.7;
    }


    .schlaf-review-card {
        padding: 25px 23px 25px;

        border-radius: 18px;
    }


    .schlaf-review-card__text {
        font-size: 13px;

        line-height: 1.7;
    }


    .schlaf-reviews__footer {
        margin-top: 34px;

        gap: 14px;
    }


    .schlaf-reviews__line {
        display: none;
    }


    .schlaf-reviews__button {
        width: 100%;

        padding: 15px 22px;
    }


    .schlaf-reviews__notice {
        margin-top: 25px;

        gap: 8px;
    }


    .schlaf-reviews__notice p {
        font-size: 9px;

        line-height: 1.6;

        text-align: left;
    }

}



/* =========================================================
   REDUCED MOTION
========================================================= */


@media (prefers-reduced-motion: reduce) {

    .schlaf-review-card,
    .schlaf-reviews__button,
    .schlaf-reviews__button span {
        transition: none;
    }


    .schlaf-review-card:hover,
    .schlaf-review-card--featured,
    .schlaf-review-card--featured:hover,
    .schlaf-reviews__button:hover {
        transform: none;
    }

}

.schlaf-faq {
    width: 100%;
    padding: 88px 20px 92px;

    background: #f4f4f4;

    box-sizing: border-box;
}


.schlaf-faq *,
.schlaf-faq *::before,
.schlaf-faq *::after {
    box-sizing: border-box;
}


.schlaf-faq__inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
}



/* =========================================================
   HEADER
========================================================= */


.schlaf-faq__header {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 48px;
}


.schlaf-faq__overline {
    display: block;

    margin-bottom: 12px;

    color: #1899a5;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.schlaf-faq__headline h2 {
    margin: 0;

    color: #171717;

    font-size: 40px;
    line-height: 1.03;

    font-weight: 800;
    font-style: italic;

    letter-spacing: -1.2px;
}


.schlaf-faq__intro {
    padding-bottom: 4px;
}


.schlaf-faq__intro p {
    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}


.schlaf-faq__intro strong {
    color: #171717;

    font-weight: 800;
}



/* =========================================================
   LAYOUT
========================================================= */


.schlaf-faq__layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 285px;

    align-items: start;

    gap: 28px;
}



/* =========================================================
   FAQ LIST
========================================================= */


.schlaf-faq__list {
    display: flex;

    flex-direction: column;

    gap: 11px;
}



/* =========================================================
   FAQ ITEM
========================================================= */


.schlaf-faq__item {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.schlaf-faq__item:hover {
    transform: translateY(-3px);

    border-color: rgba(202, 33, 54, 0.28);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.08);
}


.schlaf-faq__item[open] {
    border-color: rgba(202, 33, 54, 0.32);

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.09);
}



/* =========================================================
   QUESTION
========================================================= */


.schlaf-faq__question {
    width: 100%;

    min-height: 75px;

    padding: 18px 22px;

    display: grid;

    grid-template-columns: 40px minmax(0, 1fr) 34px;

    align-items: center;

    gap: 13px;

    cursor: pointer;

    list-style: none;
}


.schlaf-faq__question::-webkit-details-marker {
    display: none;
}


.schlaf-faq__question::marker {
    display: none;
    content: "";
}


.schlaf-faq__number {
    color: #1899a5;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.schlaf-faq__question-text {
    color: #1b1b1b;

    font-size: 15px;
    line-height: 1.35;

    font-weight: 800;
}


.schlaf-faq__toggle {
    width: 32px;
    height: 32px;

    position: relative;

    display: block;

    border-radius: 50%;

    background: #f4f4f4;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease;
}


.schlaf-faq__toggle::before,
.schlaf-faq__toggle::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    background: #1899a5;

    border-radius: 999px;

    transform: translate(-50%, -50%);
}


.schlaf-faq__toggle::before {
    width: 12px;
    height: 2px;
}


.schlaf-faq__toggle::after {
    width: 2px;
    height: 12px;

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}


.schlaf-faq__item[open] .schlaf-faq__toggle {
    background: #1899a5;

    transform: rotate(180deg);
}


.schlaf-faq__item[open] .schlaf-faq__toggle::before {
    background: #ffffff;
}


.schlaf-faq__item[open] .schlaf-faq__toggle::after {
    opacity: 0;

    background: #ffffff;

    transform:
        translate(-50%, -50%)
        rotate(90deg);
}



/* =========================================================
   ANSWER
========================================================= */


.schlaf-faq__answer {
    padding: 0 22px 0 75px;
}


.schlaf-faq__answer-inner {
    padding: 0 45px 24px 0;

    border-top: 1px solid #eeeeee;
}


.schlaf-faq__answer p {
    margin: 17px 0 0;

    color: #575757;

    font-size: 16px;
    line-height: 1.75;
}


.schlaf-faq__answer strong {
    color: #1e1e1e;

    font-weight: 700;
}


.schlaf-faq__hint {
    display: block;

    margin-top: 18px;

    padding: 12px 15px;

    border-left: 3px solid #1899a5;

    background: #f7f7f7;

    color: #777777;

    font-size: 11px;
    line-height: 1.6;
}



/* =========================================================
   CONTACT CARD
========================================================= */


.schlaf-faq__contact {
    position: sticky;

    top: 30px;

    padding: 34px 30px;

    background: #1899a5;

    color: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}


.schlaf-faq__contact:hover {
    transform: translateY(-6px);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.22);
}


.schlaf-faq__contact::after {
    content: "";

    position: absolute;

    right: -68px;
    bottom: -75px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.065);

    pointer-events: none;
}


.schlaf-faq__contact-kicker {
    display: block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.schlaf-faq__contact h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 31px;
    line-height: 1;

    font-weight: 800;
    font-style: italic;

    letter-spacing: -0.8px;
}


.schlaf-faq__contact p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 13px;
    line-height: 1.7;
}


.schlaf-faq__contact-button {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 13px 20px;

    border-radius: 999px;

    background: #ffffff;

    color: #1899a5;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.schlaf-faq__contact-button span {
    font-size: 16px;

    transition: transform 0.3s ease;
}


.schlaf-faq__contact-button:hover {
    transform: translateY(-3px);

    background: #171717;

    color: #ffffff;

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.2);
}


.schlaf-faq__contact-button:hover span {
    transform: translateX(4px);
}


.schlaf-faq__contact-meta {
    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 28px;
}


.schlaf-faq__contact-meta span {
    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 999px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}



/* =========================================================
   TABLET
========================================================= */


@media (max-width: 900px) {

    .schlaf-faq {
        padding: 68px 18px 72px;
    }


    .schlaf-faq__header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 38px;
    }


    .schlaf-faq__headline h2 {
        font-size: 35px;
    }


    .schlaf-faq__intro {
        max-width: 650px;
    }


    .schlaf-faq__layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .schlaf-faq__contact {
        position: relative;

        top: auto;
    }

}



/* =========================================================
   MOBILE
========================================================= */


@media (max-width: 560px) {

    .schlaf-faq {
        padding: 54px 15px 58px;
    }


    .schlaf-faq__header {
        margin-bottom: 30px;
    }


    .schlaf-faq__overline {
        font-size: 11px;

        margin-bottom: 10px;
    }


    .schlaf-faq__headline h2 {
        font-size: 30px;

        line-height: 1.06;
    }


    .schlaf-faq__intro p {
        font-size: 15px;
    }


    .schlaf-faq__question {
        min-height: 68px;

        padding: 16px 17px;

        grid-template-columns: 31px minmax(0, 1fr) 30px;

        gap: 10px;
    }


    .schlaf-faq__question-text {
        font-size: 15px;

        line-height: 1.4;
    }


    .schlaf-faq__number {
        font-size: 10px;
    }


    .schlaf-faq__toggle {
        width: 29px;
        height: 29px;
    }


    .schlaf-faq__answer {
        padding:
            0
            17px
            0
            58px;
    }


    .schlaf-faq__answer-inner {
        padding:
            0
            5px
            21px
            0;
    }


    .schlaf-faq__answer p {
        font-size: 13px;

        line-height: 1.7;
    }


    .schlaf-faq__hint {
        font-size: 10px;
    }


    .schlaf-faq__item {
        border-radius: 15px;
    }


    .schlaf-faq__contact {
        padding: 30px 25px;

        border-radius: 18px;
    }


    .schlaf-faq__contact h3 {
        font-size: 28px;
    }

}



/* =========================================================
   REDUCED MOTION
========================================================= */


@media (prefers-reduced-motion: reduce) {

    .schlaf-faq__item,
    .schlaf-faq__toggle,
    .schlaf-faq__toggle::after,
    .schlaf-faq__contact,
    .schlaf-faq__contact-button,
    .schlaf-faq__contact-button span {
        transition: none;
    }


    .schlaf-faq__item:hover,
    .schlaf-faq__contact:hover,
    .schlaf-faq__contact-button:hover {
        transform: none;
    }

}

.schlaf-price-section {
    width: 100%;
    box-sizing: border-box;
}

.schlaf-price-section *,
.schlaf-price-section *::before,
.schlaf-price-section *::after {
    box-sizing: border-box;
}

.schlaf-price-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* =========================================================
   INTRO
========================================================= */

.schlaf-price-intro {
    margin-bottom: 24px;
}

.schlaf-price-intro h2 {
    margin: 0;
    color: #111111;
    font-size: 31px;
    line-height: 1.12;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.6px;
}

/* =========================================================
   PRICE GRID
========================================================= */

.schlaf-price-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.schlaf-price-card {
    position: relative;
    min-height: 250px;
    padding: 30px 30px 26px;
    background: #ffffff;
    border: none;
    border-radius: 22px;
    overflow: hidden;

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.09),
        0 5px 14px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s ease;
}

.schlaf-price-card-1 {
   
    padding: 30px 30px 26px;
    background: #ffffff;
    border: none;
    border-radius: 22px;
    overflow: hidden;

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.09),
        0 5px 14px rgba(0, 0, 0, 0.045);

}

.schlaf-price-card::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -68px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(202, 33, 54, 0.045);
    pointer-events: none;
}

.schlaf-price-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.07);
}

.schlaf-price-card-main {
    background: linear-gradient(180deg, #1899a5 0%, #b91c30 100%);
    color: #ffffff;
}

.schlaf-price-card-main::after {
    background: rgba(255, 255, 255, 0.08);
}

.schlaf-price-label {
    display: block;
    margin-bottom: 17px;
    color: #1899a5;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.schlaf-price-card-main .schlaf-price-label {
    color: rgba(255, 255, 255, 0.9);
}

.schlaf-price-card strong {
    display: block;
    margin-bottom: 18px;
    color: #111111;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1px;
}

.schlaf-price-card-main strong {
    color: #ffffff;
}

.schlaf-price-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #111111;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.schlaf-price-card-main p {
    color: #ffffff;
}

.schlaf-price-card small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    color: #111111;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.schlaf-price-card-main small {
    border-top-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   TAX NOTE
========================================================= */

.schlaf-price-tax-note {
    margin: 22px 0 0;
    padding: 0;
    color: #111111;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.schlaf-price-tax-note strong {
    color: #111111;
    font-weight: 900;
}

/* =========================================================
   TEXTBEREICHE — KEINE BOXEN MEHR
========================================================= */

.schlaf-price-text {
    margin-top: 38px;
    padding-top: 0;
    max-width: 980px;
}

.schlaf-price-text h3,
.schlaf-price-profile h3 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 27px;
    line-height: 1.12;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.5px;
}

.schlaf-price-text p {
    margin: 0 0 12px;
    color: #111111;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

.schlaf-price-text p:last-child {
    margin-bottom: 0;
}

.schlaf-price-text-muted {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    max-width: none;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.schlaf-price-text-muted h3 {
    margin-bottom: 10px;
}

.schlaf-price-text-muted p {
    max-width: 820px;
}

/* =========================================================
   BUTTON
========================================================= */

.schlaf-price-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 26px;
    border-radius: 999px;

    background: #1899a5;
    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0 12px 28px rgba(202, 33, 54, 0.24);

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}

.schlaf-price-button span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.28s ease;
}

.schlaf-price-button:hover {
    transform: translateY(-3px);
    background: #111111;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.schlaf-price-button:hover span {
    transform: translateX(4px);
}

/* =========================================================
   LEISTUNGSPROFIL — NUR LISTE
========================================================= */

.schlaf-price-profile {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.schlaf-price-profile ul {
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 56px;
    list-style: none;
}

.schlaf-price-profile li {
    position: relative;
    break-inside: avoid;
    margin: 0 0 12px;
    padding-left: 28px;
    color: #111111;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
}

.schlaf-price-profile li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #1899a5;
    border-radius: 50%;

    color: #1899a5;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
}

/* =========================================================
   CONTACT NOTE — NUR HINWEISTEXT
========================================================= */

.schlaf-price-contact-note {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.schlaf-price-contact-note p {
    margin: 0 0 14px;
    color: #111111;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

.schlaf-price-contact-note p:last-child {
    margin-bottom: 0;
}

.schlaf-price-contact-note strong {
    color: #111111;
    font-weight: 900;
}

.schlaf-price-contact-note a {
    color: #1899a5;
    font-weight: 900;
    text-decoration: none;
}

.schlaf-price-contact-note a:hover {
    text-decoration: underline;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .schlaf-price-inner {
        padding: 0 35px;
    }

    .schlaf-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schlaf-price-text-muted {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .schlaf-price-button {
        width: fit-content;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .schlaf-price-section {
        padding: 48px 15px 56px;
    }

    .schlaf-price-inner {
        padding: 0;
    }

    .schlaf-price-intro h2 {
        font-size: 27px;
        line-height: 1.15;
    }

    .schlaf-price-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .schlaf-price-card {
        min-height: auto;
        padding: 27px 24px 24px;
        border-radius: 18px;
    }

    .schlaf-price-card strong {
        font-size: 36px;
    }

    .schlaf-price-card p {
        font-size: 15px;
    }

    .schlaf-price-card small {
        font-size: 12px;
    }

    .schlaf-price-tax-note {
        font-size: 15px;
    }

    .schlaf-price-text h3,
    .schlaf-price-profile h3 {
        font-size: 24px;
    }

    .schlaf-price-text p,
    .schlaf-price-contact-note p,
    .schlaf-price-profile li {
        font-size: 15px;
    }

    .schlaf-price-profile ul {
        columns: 1;
    }

    .schlaf-price-button {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .schlaf-price-card,
    .schlaf-price-button,
    .schlaf-price-button span {
        transition: none;
    }

    .schlaf-price-card:hover,
    .schlaf-price-button:hover {
        transform: none;
    }

}

.schlaf-contact-strip {
    width: 100%;
    padding: 42px 20px 58px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.schlaf-contact-strip *,
.schlaf-contact-strip *::before,
.schlaf-contact-strip *::after {
    box-sizing: border-box;
}

.schlaf-contact-strip__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.schlaf-contact-strip__intro {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.schlaf-contact-strip__intro span {
    display: block;
    margin-bottom: 8px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-contact-strip__intro h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 38px;
    line-height: 1.04;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.7px;
}

.schlaf-contact-strip__intro p {
    margin: 0;
    color: #222222;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

.schlaf-contact-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.09),
        0 6px 16px rgba(0, 0, 0, 0.04);
}

.schlaf-contact-panel__brand {
    position: relative;
    padding: 42px 42px;
    background: linear-gradient(180deg, #1899a5 0%, #0e6870 100%);
    color: #ffffff;
    overflow: hidden;
}

.schlaf-contact-panel__brand::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -82px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
}

.schlaf-contact-panel__brand span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.84);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-contact-panel__brand strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 330px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.02;
    font-weight: 800;
}

.schlaf-contact-panel__items {
    display: grid;
    grid-template-columns: 1fr;
}

.schlaf-contact-panel__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px 34px;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #eeeeee;
    transition: background 0.22s ease;
}

.schlaf-contact-panel__item:last-child {
    border-bottom: 0;
}

.schlaf-contact-panel__item:hover {
    background: #f8f8f8;
}

.schlaf-contact-panel__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eff9f6;
    color: #1899a5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schlaf-contact-panel__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.schlaf-contact-panel__item em {
    display: block;
    margin-bottom: 4px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.schlaf-contact-panel__item span:last-child {
    color: #111111;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

@media (max-width: 900px) {
    .schlaf-contact-panel {
        grid-template-columns: 1fr;
    }

    .schlaf-contact-panel__brand {
        padding: 34px 30px;
    }

    .schlaf-contact-panel__brand strong {
        font-size: 30px;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .schlaf-contact-strip {
        padding: 30px 14px 44px;
    }

    .schlaf-contact-strip__intro h2 {
        font-size: 30px;
    }

    .schlaf-contact-strip__intro p {
        font-size: 15px;
    }

    .schlaf-contact-panel {
        border-radius: 22px;
    }

    .schlaf-contact-panel__brand {
        padding: 30px 24px;
    }

    .schlaf-contact-panel__brand strong {
        font-size: 27px;
    }

    .schlaf-contact-panel__item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 22px;
    }

    .schlaf-contact-panel__icon {
        width: 46px;
        height: 46px;
    }

    .schlaf-contact-panel__icon svg {
        width: 22px;
        height: 22px;
    }

    .schlaf-contact-panel__item span:last-child {
        font-size: 18px;
    }
}

.schlaf-contact-panel__brand p {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
}

.schlaf-team-section {
    width: 100%;
    padding: 40px 20px 76px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.schlaf-team-section *,
.schlaf-team-section *::before,
.schlaf-team-section *::after {
    box-sizing: border-box;
}

.schlaf-team-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.schlaf-team-head {
    margin-bottom: 40px;
    text-align: center;
}

.schlaf-team-head span {
    display: block;
    margin-bottom: 8px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-team-head h2 {
    margin: 0;
    color: #111111;
    font-size: 38px;
    line-height: 1.04;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.7px;
}

.schlaf-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.schlaf-team-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
    align-items: start;

    padding: 30px;
    background: #ffffff;
    border-radius: 26px;

    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.08),
        0 5px 14px rgba(0, 0, 0, 0.04);
}

.schlaf-team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f1f1;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.09);
}

.schlaf-team-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schlaf-team-content h3 {
    margin: 0 0 6px;
    color: #111111;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
}

.schlaf-team-content > strong {
    display: block;
    margin-bottom: 15px;
    color: #111111;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.schlaf-team-role {
    margin: 0 0 18px;
    color: #222222;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.schlaf-team-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.schlaf-team-content li {
    margin: 0 0 7px;
    color: #111111;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.schlaf-team-content li b {
    color: #111111;
    font-weight: 900;
}

.schlaf-team-content a {
    color: #1899a5;
    font-weight: 800;
    text-decoration: none;
}

.schlaf-team-content a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .schlaf-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .schlaf-team-section {
        padding: 6px 14px 54px;
    }

    .schlaf-team-head h2 {
        font-size: 30px;
    }

    .schlaf-team-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .schlaf-team-image {
        width: 112px;
        height: 112px;
    }

    .schlaf-team-content h3 {
        font-size: 25px;
    }

    .schlaf-team-role,
    .schlaf-team-content li {
        font-size: 16px;
    }
}

.schlaf-form-section {
    width: 100%;
    padding: 0 20px 86px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.schlaf-form-section *,
.schlaf-form-section *::before,
.schlaf-form-section *::after {
    box-sizing: border-box;
}

.schlaf-form-inner {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 52px;
    align-items: start;

    padding-top: 58px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.schlaf-form-text span {
    display: block;
    margin-bottom: 8px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-form-text h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 38px;
    line-height: 1.04;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.7px;
}

.schlaf-form-text p {
    margin: 0;
    max-width: 440px;
    color: #222222;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
}

.schlaf-form-box {
    width: 100%;
    max-width: 760px;
}

/* Contact Form 7 */
.schlaf-form-box .wpcf7 {
    width: 100%;
}

.schlaf-form-box .wpcf7 p {
    margin: 0 0 18px;
    color: #111111;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
}

.schlaf-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
}

.schlaf-form-box input[type="text"],
.schlaf-form-box input[type="email"],
.schlaf-form-box input[type="tel"],
.schlaf-form-box textarea,
.schlaf-form-box select {
    width: 100%;
    border: 1.5px solid #d2d2d2;
    border-radius: 18px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.schlaf-form-box input[type="text"],
.schlaf-form-box input[type="email"],
.schlaf-form-box input[type="tel"],
.schlaf-form-box select {
    height: 56px;
    padding: 0 18px;
}

.schlaf-form-box textarea {
    min-height: 165px;
    padding: 16px 18px;
    resize: vertical;
}

.schlaf-form-box input[type="text"]:focus,
.schlaf-form-box input[type="email"]:focus,
.schlaf-form-box input[type="tel"]:focus,
.schlaf-form-box textarea:focus,
.schlaf-form-box select:focus {
    border-color: #1899a5;
    box-shadow: 0 0 0 4px rgba(202, 33, 54, 0.08);
}



.schlaf-form-box input[type="submit"]:hover,
.schlaf-form-box button[type="submit"]:hover,
.schlaf-form-box .wpcf7-submit:hover {
    transform: translateY(-2px);
    background: #111111;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.schlaf-form-box .wpcf7-spinner {
    margin-left: 12px;
}

.schlaf-form-box .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #1899a5;
    font-size: 12px;
    font-weight: 700;
}

.schlaf-form-box .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

input.wpcf7-form-control.wpcf7-date, input.wpcf7-form-control.wpcf7-number, input.wpcf7-form-control.wpcf7-quiz, input.wpcf7-form-control.wpcf7-text, select.wpcf7-form-control.wpcf7-select, textarea.wpcf7-form-control.wpcf7-textarea {
    border-radius: 20px;
	border: 1.5px solid #d2d2d2;
}

/* Tablet */
@media (max-width: 900px) {
    .schlaf-form-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 44px;
    }

    .schlaf-form-box {
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .schlaf-form-section {
        padding: 0 14px 58px;
    }

    .schlaf-form-inner {
        padding-top: 34px;
        gap: 24px;
    }

    .schlaf-form-text span {
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    .schlaf-form-text h2 {
        font-size: 32px;
        line-height: 1.02;
        margin-bottom: 14px;
    }

    .schlaf-form-text p {
        font-size: 17px;
        line-height: 1.5;
    }

    .schlaf-form-box .wpcf7 p {
        margin: 0 0 18px;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 800;
    }

    .schlaf-form-box label {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 800;
    }

    .schlaf-form-box input[type="text"],
    .schlaf-form-box input[type="email"],
    .schlaf-form-box input[type="tel"],
    .schlaf-form-box select {
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 15px !important;
        border-radius: 14px !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
    }

    .schlaf-form-box textarea {
        min-height: 165px !important;
        padding: 14px 15px !important;
        border-radius: 14px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .schlaf-form-box input[type="submit"],
    .schlaf-form-box button[type="submit"],
    .schlaf-form-box .wpcf7-submit {
        width: auto !important;
        min-height: 44px !important;
        padding: 11px 28px !important;
        border-radius: 999px !important;
        font-size: 17px !important;
        line-height: 1 !important;
    }
}

@media (max-width: 420px) {
    .schlaf-form-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .schlaf-form-text h2 {
        font-size: 30px;
    }

    .schlaf-form-text p {
        font-size: 16px;
    }

    .schlaf-form-box input[type="text"],
    .schlaf-form-box input[type="email"],
    .schlaf-form-box input[type="tel"],
    .schlaf-form-box select {
        height: 46px !important;
        min-height: 46px !important;
    }

    .schlaf-form-box textarea {
        min-height: 150px !important;
    }

    .schlaf-form-box input[type="submit"],
    .schlaf-form-box button[type="submit"],
    .schlaf-form-box .wpcf7-submit {
        min-width: 155px !important;
    }
}

@media (max-width: 1400px) {
header:not(.with_hover_bg_color) nav.main_menu>ul>li>a>span:not(.plus), nav.vertical_menu>ul>li>a>span:not(.plus) {
    font-size: 17px;
}
    }

@media (max-width: 1400px) {
header:not(.with_hover_bg_color) nav.main_menu>ul>li>a>span:not(.plus), nav.vertical_menu>ul>li>a>span:not(.plus) {
    font-size: 15px;
}
    }

@media (max-width: 1111px) {
header:not(.with_hover_bg_color) nav.main_menu>ul>li>a>span:not(.plus), nav.vertical_menu>ul>li>a>span:not(.plus) {
    font-size: 13px;
}
    }

.schlaf-process-section {
    width: 100%;
    padding: 72px 20px 82px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.schlaf-process-section *,
.schlaf-process-section *::before,
.schlaf-process-section *::after {
    box-sizing: border-box;
}

.schlaf-process-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.schlaf-process-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.schlaf-process-head span {
    display: block;
    margin-bottom: 8px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-process-head h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 40px;
    line-height: 1.04;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.8px;
}

.schlaf-process-head p {
    margin: 0;
    color: #222222;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
}

.schlaf-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.schlaf-process-card {
    position: relative;
    min-height: 245px;
    padding: 30px 26px 28px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
	    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s ease,
        background 0.34s ease;
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.08),
        0 5px 14px rgba(0, 0, 0, 0.04);
}

.schlaf-process-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.07);
}

.schlaf-process-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -62px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(202, 33, 54, 0.045);
    pointer-events: none;
	 transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.34s ease;
}

.schlaf-process-number {
    display: block;
    margin-bottom: 22px;
    color: #1899a5;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
}

.schlaf-process-card h3 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.4px;
}

.schlaf-process-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #222222;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.schlaf-process-note {
    margin-top: 24px;
    padding: 18px 22px;
    border-left: 4px solid #ca2136;
    border-radius: 18px;
    background: #ffffff;
    color: #222222;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}

.schlaf-process-note strong {
    color: #111111;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .schlaf-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .schlaf-process-section {
        padding: 54px 14px 62px;
    }

    .schlaf-process-head {
        text-align: left;
        margin-bottom: 26px;
    }

    .schlaf-process-head h2 {
        font-size: 31px;
    }

    .schlaf-process-head p {
        font-size: 16px;
    }

    .schlaf-process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .schlaf-process-card {
        min-height: auto;
        padding: 25px 23px 24px;
        border-radius: 20px;
    }

    .schlaf-process-number {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .schlaf-process-card h3 {
        font-size: 22px;
    }

    .schlaf-process-note {
        font-size: 14px;
        border-radius: 16px;
    }
}

.bad-gallery-section {
    width: 100%;
    padding: 78px 20px 86px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.bad-gallery-section *,
.bad-gallery-section *::before,
.bad-gallery-section *::after {
    box-sizing: border-box;
}

.bad-gallery-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.bad-gallery-head {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.bad-gallery-head span {
    display: block;
    margin-bottom: 9px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bad-gallery-head h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 42px;
    line-height: 1.04;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.9px;
}

.bad-gallery-head p {
    margin: 0;
    color: #222222;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
}

.bad-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bad-gallery-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 28px;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.08),
        0 6px 16px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s ease;
}

.bad-gallery-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 28px 62px rgba(0, 0, 0, 0.15),
        0 8px 22px rgba(0, 0, 0, 0.08);
}

.bad-gallery-image {
    height: 360px;
    overflow: hidden;
    background: #eeeeee;
}

.bad-gallery-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bad-gallery-card:hover .bad-gallery-image img {
    transform: scale(1.055);
}

.bad-gallery-content {
    padding: 26px 26px 28px;
}

.bad-gallery-content span {
    display: block;
    margin-bottom: 9px;
    color: #1899a5;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
}

.bad-gallery-content h3 {
    margin: 0 0 11px;
    color: #111111;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.5px;
}

.bad-gallery-content p {
    margin: 0;
    color: #222222;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.bad-gallery-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.bad-gallery-note span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
}

@media (max-width: 980px) {
    .bad-gallery-grid {
        grid-template-columns: 1fr;
    }

    .bad-gallery-image {
        height: 390px;
    }
}

@media (max-width: 620px) {
    .bad-gallery-section {
        padding: 54px 14px 62px;
    }

    .bad-gallery-head {
        text-align: left;
        margin-bottom: 28px;
    }

    .bad-gallery-head h2 {
        font-size: 32px;
    }

    .bad-gallery-head p {
        font-size: 16px;
    }

    .bad-gallery-card {
        border-radius: 22px;
    }

    .bad-gallery-image {
        height: 280px;
    }

    .bad-gallery-content {
        padding: 22px 22px 24px;
    }

    .bad-gallery-content h3 {
        font-size: 24px;
    }

    .bad-gallery-note {
        justify-content: flex-start;
    }
}

/* =========================================================
   KOMPAKTE KONTAKTBOX
========================================================= */

.schlaf-kontaktbox {
    --kontakt-accent: #1899a5;
    --kontakt-accent-dark: #0e6870;
    --kontakt-text: #171717;
    --kontakt-muted: #666666;
    --kontakt-surface: #ffffff;

    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: 780px;
    padding: 42px;

    overflow: hidden;

    background: var(--kontakt-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.11),
        0 7px 18px rgba(0, 0, 0, 0.05);

    box-sizing: border-box;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.schlaf-kontaktbox *,
.schlaf-kontaktbox *::before,
.schlaf-kontaktbox *::after {
    box-sizing: border-box;
}

.schlaf-kontaktbox::before {
    content: "";

    position: absolute;
    z-index: -1;
    top: -115px;
    right: -110px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(24, 153, 165, 0.14) 0%,
            rgba(24, 153, 165, 0) 70%
        );

    pointer-events: none;
}

.schlaf-kontaktbox::after {
    content: "";

    position: absolute;
    top: 0;
    left: 42px;

    width: 76px;
    height: 5px;

    border-radius: 0 0 6px 6px;

    background: linear-gradient(
        90deg,
        var(--kontakt-accent),
        #4cd1dd
    );
}

.schlaf-kontaktbox:hover {
    transform: translateY(-6px);

    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.14),
        0 9px 22px rgba(0, 0, 0, 0.06);
}


/* Überschrift */

.schlaf-kontaktbox__kicker {
    display: block;

    margin-bottom: 9px;

    color: var(--kontakt-accent);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.schlaf-kontaktbox h2 {
    margin: 0 0 15px;

    color: var(--kontakt-text);

    font-size: clamp(34px, 5vw, 46px);
    line-height: 1;
    font-weight: 900;
    font-style: italic;

    letter-spacing: -1px;
}

.schlaf-kontaktbox__intro {
    max-width: 470px;

    margin: 0 0 28px;

    color: var(--kontakt-muted);

    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}


/* Kontaktdaten */

.schlaf-kontaktbox__details {
    display: grid;
    gap: 12px;
}

.schlaf-kontaktbox__item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 15px;

    margin: 0;
    padding: 17px 18px;

    background: #f7fafa;
    border: 1px solid #e6eeee;
    border-radius: 19px;

    color: var(--kontakt-text);
    font-style: normal;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.schlaf-kontaktbox__item--link:hover {
    transform: translateX(4px);

    background: #ffffff;
    border-color: rgba(24, 153, 165, 0.45);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.schlaf-kontaktbox__icon {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 50px;

    border-radius: 50%;

    background: rgba(24, 153, 165, 0.11);
    color: var(--kontakt-accent);
}

.schlaf-kontaktbox__icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.schlaf-kontaktbox__item small {
    display: block;

    margin-bottom: 4px;

    color: var(--kontakt-accent);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.schlaf-kontaktbox__item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--kontakt-text);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.schlaf-kontaktbox__item span span {
    display: block;

    color: #656565;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}


/* Buttons */

.schlaf-kontaktbox__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 25px;
}

.schlaf-kontaktbox__button {
    min-height: 48px;
    padding: 13px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-size: 14px;
    line-height: 1;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.schlaf-kontaktbox__button--primary {
    background: var(--kontakt-accent);
    color: #ffffff;

    box-shadow: 0 11px 25px rgba(24, 153, 165, 0.25);
}

.schlaf-kontaktbox__button--primary span {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.schlaf-kontaktbox__button--primary:hover {
    transform: translateY(-3px);

    background: var(--kontakt-text);
    color: #ffffff;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.schlaf-kontaktbox__button--primary:hover span {
    transform: translateX(4px);
}

.schlaf-kontaktbox__button--secondary {
    background: #ffffff;
    border-color: #dce4e4;
    color: var(--kontakt-text);
}

.schlaf-kontaktbox__button--secondary:hover {
    transform: translateY(-3px);

    border-color: var(--kontakt-accent);
    color: var(--kontakt-accent);
}


/* Tastaturbedienung */

.schlaf-kontaktbox a:focus-visible {
    outline: 3px solid rgba(24, 153, 165, 0.35);
    outline-offset: 4px;
}


/* Datenschutzhinweis */

.schlaf-kontaktbox__privacy {
    margin: 17px 0 0;

    color: #8a8a8a;

    font-size: 11px;
    line-height: 1.5;
}


/* Mobil */

@media (max-width: 600px) {

    .schlaf-kontaktbox {
        padding: 34px 23px 28px;
        border-radius: 22px;
    }

    .schlaf-kontaktbox::after {
        left: 23px;
    }

    .schlaf-kontaktbox h2 {
        font-size: 34px;
    }

    .schlaf-kontaktbox__intro {
        font-size: 15px;
        line-height: 1.6;
    }

    .schlaf-kontaktbox__item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;

        padding: 15px;
    }

    .schlaf-kontaktbox__icon {
        width: 44px;
        height: 44px;
    }

    .schlaf-kontaktbox__icon svg {
        width: 21px;
        height: 21px;
    }

    .schlaf-kontaktbox__item strong {
        font-size: 15px;
    }

    .schlaf-kontaktbox__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .schlaf-kontaktbox__button {
        width: 100%;
    }

}


/* Animationen auf Wunsch des Nutzers reduzieren */

@media (prefers-reduced-motion: reduce) {

    .schlaf-kontaktbox,
    .schlaf-kontaktbox__item,
    .schlaf-kontaktbox__button,
    .schlaf-kontaktbox__button span {
        transition: none;
    }

    .schlaf-kontaktbox:hover,
    .schlaf-kontaktbox__item--link:hover,
    .schlaf-kontaktbox__button:hover {
        transform: none;
    }

}

input.wpcf7-form-control.wpcf7-date, input.wpcf7-form-control.wpcf7-number, input.wpcf7-form-control.wpcf7-quiz, input.wpcf7-form-control.wpcf7-text, select.wpcf7-form-control.wpcf7-select, textarea.wpcf7-form-control.wpcf7-textarea {
    font-size: 17px!important;
	color:#000!important;
	    font-family: 'd7 NunitoSans-Regular', sans-serif;
  
}