/* =====================================================
   #1 assets/css/style.css
===================================================== */

:root{

    --mw-blue:#48a7dc;
    --mw-blue-dark:#167ab3;

    --mw-green:#58cbb1;
    --mw-green-dark:#2ea48c;

    --mw-dark:#11202d;
    --mw-text:#41515f;
    --mw-muted:#6c7a88;

    --mw-bg:#f5fbff;
    --mw-white:#ffffff;

    --mw-border:#dcecf5;

    --mw-radius:24px;

    --mw-shadow:
        0 18px 45px rgba(17,32,45,.10);

}

/* =====================================================
   #2 Reset
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:#ffffff;

    color:var(--mw-text);

    line-height:1.6;

    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.page-wrapper{
    min-height:100vh;
}

/* =====================================================
   #3 Header
===================================================== */

.main-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1200;

    background:
        rgba(255,255,255,.94);

    backdrop-filter:blur(16px);

    border-bottom:
        1px solid rgba(220,236,245,.9);
}

.header-container{

    max-width:1400px;

    margin:auto;

    padding:
        14px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

/* =====================================================
   #4 Logo
===================================================== */

.header-logo{

    display:flex;

    align-items:center;

    gap:14px;
}

.header-logo img{

    width:88px;

    height:auto;
}

.header-logo-text strong{

    display:block;

    font-size:20px;

    color:var(--mw-dark);

    line-height:1.1;
}

.header-logo-text span{

    display:block;

    margin-top:4px;

    font-size:13px;

    color:var(--mw-green-dark);

    font-weight:700;
}

/* =====================================================
   #5 Navigation
===================================================== */

.header-nav{

    display:flex;

    align-items:center;

    gap:24px;
}

.header-nav a{

    font-size:15px;

    font-weight:700;

    color:#314150;

    transition:.2s ease;
}

.header-nav a:hover,
.header-nav a.active{

    color:var(--mw-blue-dark);
}

/* =====================================================
   #6 Header Buttons
===================================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:12px;
}

.header-phone-btn,
.header-contact-btn,
.main-btn,
.outline-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    transition:.25s ease;

    font-weight:800;

    white-space:nowrap;
}

.header-phone-btn{

    padding:
        11px 18px;

    background:#eef9ff;

    color:var(--mw-blue-dark);

    border:
        1px solid var(--mw-border);

    font-size:14px;
}

.header-contact-btn,
.main-btn{

    padding:
        14px 24px;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );

    color:#ffffff;

    box-shadow:
        0 14px 30px rgba(72,167,220,.22);
}

.header-contact-btn:hover,
.main-btn:hover{

    transform:translateY(-2px);
}

.outline-btn{

    padding:
        14px 24px;

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    color:var(--mw-blue-dark);
}

/* =====================================================
   #7 Mobile Button
===================================================== */

.mobile-menu-btn{

    display:none;

    width:48px;
    height:48px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:24px;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );
}

/* =====================================================
   #8 Mobile Nav
===================================================== */

.mobile-nav{

    position:fixed;

    top:88px;
    left:18px;
    right:18px;

    z-index:1190;

    display:none;

    flex-direction:column;

    gap:14px;

    padding:22px;

    border-radius:24px;

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    box-shadow:var(--mw-shadow);
}

.mobile-nav.active{
    display:flex;
}

.mobile-nav a{

    font-weight:700;

    color:var(--mw-dark);
}

.mobile-phone-btn{

    margin-top:10px;

    padding:14px;

    border-radius:16px;

    text-align:center;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );
}

/* =====================================================
   #9 Main Content
===================================================== */

.main-content{
    padding-top:98px;
}

/* =====================================================
   #10 Hero
===================================================== */

.hero-section{

    padding:
        60px 28px 90px;

    background:
        radial-gradient(
            circle at top left,
            rgba(88,203,177,.16),
            transparent 34%
        ),

        radial-gradient(
            circle at top right,
            rgba(72,167,220,.18),
            transparent 38%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fbff 100%
        );
}

.hero-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
        1.1fr .9fr;

    gap:48px;

    align-items:center;
}

.hero-badge,
.section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:
        10px 16px;

    border-radius:999px;

    background:#eafaf6;

    color:var(--mw-green-dark);

    font-size:14px;

    font-weight:800;

    margin-bottom:22px;
}

.section-badge-white{

    background:rgba(255,255,255,.18);

    color:#ffffff;
}

.section-badge-dark{

    background:rgba(255,255,255,.1);

    color:#ffffff;
}

.hero-title{

    font-size:64px;

    line-height:1.03;

    letter-spacing:-1.8px;

    color:var(--mw-dark);

    margin-bottom:24px;
}

.hero-title span{

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );

    background-clip:text;

    color:transparent;

    display:inline-block;
}
.hero-text{

    max-width:720px;

    font-size:20px;

    color:#556676;

    margin-bottom:32px;
}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:34px;
}

.hero-features{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:16px;
}

.hero-feature-card{

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    border-radius:22px;

    padding:18px;

    box-shadow:
        0 12px 26px rgba(17,32,45,.05);
}

.hero-feature-card strong{

    display:block;

    color:var(--mw-dark);

    font-size:17px;

    margin-bottom:6px;
}

.hero-feature-card span{

    color:var(--mw-muted);

    font-size:14px;
}

/* =====================================================
   #11 Hero Right
===================================================== */

.hero-image-card{

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    border-radius:34px;

    padding:36px;

    box-shadow:var(--mw-shadow);

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:430px;
}

.hero-logo-image{

    max-width:420px;

    width:100%;
}

.hero-contact-grid{

    margin-top:20px;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:14px;
}

.hero-contact-box{

    padding:18px;

    border-radius:22px;

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    box-shadow:
        0 10px 24px rgba(17,32,45,.05);
}

.hero-contact-box strong{

    display:block;

    color:var(--mw-dark);

    margin-bottom:5px;
}

.hero-contact-box span{

    color:var(--mw-blue-dark);

    font-weight:700;
}

/* =====================================================
   #12 Sections
===================================================== */

.home-section{

    padding:
        90px 28px;
}

.section-light{
    background:var(--mw-bg);
}

.section-container{

    max-width:1400px;

    margin:auto;
}

.section-header{

    max-width:850px;

    margin-bottom:42px;
}

.section-title{

    font-size:44px;

    line-height:1.12;

    color:var(--mw-dark);

    margin-bottom:16px;
}

.section-text{

    font-size:18px;

    color:var(--mw-muted);
}

/* =====================================================
   #13 Services
===================================================== */

.services-grid,
.services-page-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:24px;
}

.service-card,
.service-page-card{

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    border-radius:28px;

    padding:30px;

    box-shadow:
        0 14px 34px rgba(17,32,45,.06);

    transition:.25s ease;
}

.service-card:hover,
.service-page-card:hover{

    transform:translateY(-5px);

    box-shadow:var(--mw-shadow);
}

.service-icon,
.service-page-icon{

    width:62px;
    height:62px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#ffffff;

    margin-bottom:20px;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );
}

.service-card h3,
.service-page-card h2{

    color:var(--mw-dark);

    margin-bottom:12px;

    font-size:24px;
}

.service-card p,
.service-page-card p{

    color:var(--mw-muted);

    font-size:15px;
}

/* =====================================================
   #14 About
===================================================== */

.about-grid{

    display:grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:34px;

    align-items:center;
}

.about-box{

    padding:38px;

    border-radius:34px;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );

    box-shadow:var(--mw-shadow);
}

.about-box h2{

    font-size:40px;

    line-height:1.12;

    margin-bottom:18px;
}

.about-box p{

    font-size:18px;

    opacity:.95;
}

.about-right{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:18px;
}

.about-info-card,
.advantage-card{

    padding:26px;

    border-radius:24px;

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    box-shadow:
        0 10px 26px rgba(17,32,45,.05);
}

.about-info-card strong,
.advantage-card strong{

    display:block;

    color:var(--mw-dark);

    font-size:19px;

    margin-bottom:8px;
}

.about-info-card span,
.advantage-card span{

    color:var(--mw-muted);

    font-size:15px;
}

/* =====================================================
   #15 CTA
===================================================== */

.cta-box{

    display:grid;

    grid-template-columns:
        1fr auto;

    gap:30px;

    align-items:center;

    padding:46px;

    border-radius:36px;

    overflow:hidden;

    position:relative;

    background:
        linear-gradient(
            135deg,
            #10202d,
            #194760
        );

    color:#ffffff;
}

.cta-box::before{

    content:"";

    position:absolute;

    right:-120px;
    top:-120px;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
        rgba(88,203,177,.16);
}

.cta-left,
.cta-right{
    position:relative;
}

.cta-box h2{

    font-size:40px;

    margin-bottom:12px;
}

.cta-box p{

    color:#d8e7ef;

    font-size:18px;
}

/* =====================================================
   #16 Contact Preview
===================================================== */

.contact-preview-grid,
.contact-page-grid{

    display:grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:28px;
}

.contact-preview-left,
.contact-page-left,
.contact-page-right{

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    border-radius:30px;

    padding:32px;

    box-shadow:
        0 14px 34px rgba(17,32,45,.06);
}

.contact-preview-item,
.contact-info-item{

    padding:
        16px 0;

    border-bottom:
        1px solid var(--mw-border);
}

.contact-preview-item:last-child,
.contact-info-item:last-child{
    border-bottom:none;
}

.contact-preview-item strong,
.contact-info-item strong{

    display:block;

    color:var(--mw-dark);

    margin-bottom:5px;
}

.contact-preview-item span,
.contact-info-item span,
.contact-info-item a{

    color:var(--mw-muted);

    font-weight:700;
}

/* =====================================================
   #17 Map
===================================================== */

.contact-preview-right iframe,
.map-box iframe{

    width:100%;

    height:100%;

    min-height:430px;

    border:none;

    border-radius:30px;
}

.map-box{

    border-radius:30px;

    overflow:hidden;

    border:
        1px solid var(--mw-border);

    box-shadow:
        0 14px 34px rgba(17,32,45,.06);
}

/* =====================================================
   #18 Form
===================================================== */

.contact-form-card{

    display:block;
}

.contact-form-card h2{

    color:var(--mw-dark);

    font-size:34px;

    margin-bottom:28px;
}

.contact-form-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:18px;
}

.form-group{

    display:flex;

    flex-direction:column;

    gap:8px;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.form-group label{

    font-size:14px;

    font-weight:800;

    color:var(--mw-dark);
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    border:
        1px solid var(--mw-border);

    background:#f8fcff;

    border-radius:18px;

    padding:16px;

    font-size:15px;

    outline:none;

    transition:.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:var(--mw-blue);

    background:#ffffff;

    box-shadow:
        0 0 0 4px rgba(72,167,220,.12);
}

.contact-submit-btn{

    margin-top:26px;

    border:none;

    cursor:pointer;
}

.whatsapp-contact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:28px;

    padding:
        16px 22px;

    border-radius:18px;

    background:#25D366;

    color:#ffffff;

    font-weight:800;
}

/* =====================================================
   #19 Legal Pages
===================================================== */

.page-hero-section{

    padding:
        70px 28px 60px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fbff 100%
        );
}

.page-hero-container{

    max-width:1200px;

    margin:auto;
}

.page-hero-content{

    max-width:850px;
}

.page-hero-title{

    font-size:58px;

    line-height:1.05;

    color:var(--mw-dark);

    margin-bottom:18px;
}

.page-hero-text{

    font-size:19px;

    color:var(--mw-muted);
}

.legal-card{

    background:#ffffff;

    border:
        1px solid var(--mw-border);

    border-radius:32px;

    padding:40px;

    box-shadow:
        0 14px 34px rgba(17,32,45,.06);
}

.legal-section{

    margin-bottom:42px;
}

.legal-section:last-child{
    margin-bottom:0;
}

.legal-section h2{

    color:var(--mw-dark);

    margin-bottom:16px;

    font-size:28px;
}

.legal-section p,
.legal-section li{

    color:var(--mw-text);

    margin-bottom:12px;
}

.legal-section ul{
    padding-left:22px;
}

.legal-section a{

    color:var(--mw-blue-dark);

    font-weight:700;
}
 /* =====================================================
   #20 Footer
===================================================== */

.site-footer{
    background:#10202d;
    color:#d8e6ef;
    padding-top:46px;
}

.site-footer .footer-container{
    max-width:1400px;
    margin:auto;
    padding:0 28px 28px;
    display:block;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.25fr .85fr .75fr .75fr;
    gap:44px;
}

.footer-block h4{
    color:#ffffff;
    font-size:21px;
    margin-bottom:18px;
}

.footer-logo-box{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-logo{
    width:80px;
    height:auto;
}

.footer-logo-box h3{
    color:#ffffff;
    font-size:22px;
    margin-bottom:4px;
}

.footer-logo-box span{
    color:#7ed8ca;
    font-size:13px;
}

.footer-text{
    max-width:430px;
    color:#c9dae4;
    line-height:1.8;
}

.footer-list,
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-list li,
.footer-links li{
    margin-bottom:13px;
    color:#c9dae4;
    line-height:1.7;
}

.footer-list a,
.footer-links a{
    color:#ffffff;
    font-weight:700;
    text-decoration:none;
}

.footer-list a:hover,
.footer-links a:hover{
    color:#58cbb1;
}

.footer-bottom{
    margin-top:34px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-copy,
.footer-credit{
    color:#b7cddd;
}

.footer-credit strong{
    color:#ffffff;
}

@media (max-width:1100px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:760px){
    .site-footer{
        padding-top:38px;
    }

    .site-footer .footer-container{
        padding:0 18px 24px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }
}

/* =====================================================
   #21 WhatsApp Float
===================================================== */

.whatsapp-float{

    position:fixed;

    right:22px;
    bottom:22px;

    z-index:1400;

    width:64px;
    height:64px;

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:
        0 16px 36px rgba(37,211,102,.34);

    transition:.25s ease;
}

.whatsapp-float:hover{

    transform:scale(1.08);
}

/* =====================================================
   #22 Laptop 14 / 15 Zoll
===================================================== */

@media (max-width:1450px){

    .header-container,
    .hero-container,
    .section-container,
    .footer-container,
    .footer-bottom-container{

        max-width:1280px;
    }

    .hero-title{
        font-size:54px;
    }

    .section-title{
        font-size:40px;
    }
}

/* =====================================================
   #23 Tablet / Kleine Laptops
===================================================== */

@media (max-width:1150px){

    .header-nav,
    .header-actions{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .hero-container,
    .about-grid,
    .contact-preview-grid,
    .contact-page-grid{

        grid-template-columns:1fr;
    }

    .hero-right{
        max-width:760px;
    }

    .services-grid,
    .services-page-grid{

        grid-template-columns:
            repeat(2,1fr);
    }

    .about-right{

        grid-template-columns:
            repeat(2,1fr);
    }

    .cta-box{

        grid-template-columns:1fr;
    }

    .footer-container{

        grid-template-columns:1fr;
    }
}

/* =====================================================
   #24 Mobile
===================================================== */

@media (max-width:760px){

    .main-content{
        padding-top:88px;
    }

    .header-container{

        padding:
            12px 16px;
    }

    .header-logo img{
        width:68px;
    }

    .header-logo-text strong{
        font-size:16px;
    }

    .hero-section,
    .home-section,
    .page-hero-section{

        padding-left:18px;
        padding-right:18px;
    }

    .hero-section{

        padding-top:40px;
        padding-bottom:60px;
    }

    .hero-title{

        font-size:38px;

        letter-spacing:-.8px;
    }

    .hero-text,
    .page-hero-text{

        font-size:16px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .main-btn,
    .outline-btn{

        width:100%;
    }

    .hero-features,
    .services-grid,
    .services-page-grid,
    .about-right,
    .contact-form-grid{

        grid-template-columns:1fr;
    }

    .hero-contact-grid{

        grid-template-columns:1fr;
    }

    .hero-image-card{

        min-height:260px;

        padding:24px;
    }

    .section-title{

        font-size:30px;
    }

    .page-hero-title{

        font-size:40px;
    }

    .about-box,
    .cta-box,
    .legal-card,
    .contact-preview-left,
    .contact-page-left,
    .contact-page-right{

        padding:24px;

        border-radius:24px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .contact-preview-right iframe,
    .map-box iframe{

        min-height:320px;
    }

    .whatsapp-float{

        width:58px;
        height:58px;

        right:16px;
        bottom:16px;
    }
}
/* =====================================================
   #25 Captcha
===================================================== */

.captcha-row{
    display:grid;
    grid-template-columns:1fr 180px;
    gap:18px;
    align-items:center;
}

.captcha-row input{
    height:52px;
}

.captcha-image{
    width:180px;
    height:52px;
    object-fit:cover;
    border-radius:16px;
    border:1px solid var(--mw-border);
    background:#ffffff;
}

@media (max-width:760px){

    .captcha-row{
        grid-template-columns:1fr;
    }

    .captcha-image{
        width:180px;
        max-width:100%;
    }
}
/* =====================================================
   #120 Moderne Vorteile Section
===================================================== */

.advantages-modern-section{
    position:relative;
    overflow:hidden;
}

.advantages-modern-container{
    position:relative;
    z-index:2;
}

.advantages-modern-header{
    max-width:900px;
    margin-bottom:60px;
}

.advantages-modern-title{
    font-size:68px;
    line-height:1.08;
    margin-bottom:24px;
}

.advantages-modern-title span{

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );

    background-clip:text;

    color:transparent;
}

.title-line{
    width:90px;
    height:6px;

    border-radius:30px;

    margin-bottom:28px;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );
}

.advantages-modern-text{
    max-width:780px;

    font-size:24px;
    line-height:1.8;
}

/* =====================================================
   #121 Grid
===================================================== */

.advantages-modern-grid{

    display:grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:34px;

    margin-bottom:40px;
}

/* =====================================================
   #122 Card
===================================================== */

.advantage-modern-card{

    position:relative;

    display:flex;
    align-items:flex-start;
    gap:28px;

    padding:42px;

    background:#ffffff;

    border-radius:34px;

    border:1px solid #dce8f2;

    overflow:hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    min-height:270px;
}

.advantage-modern-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

/* =====================================================
   #123 Border Colors
===================================================== */

.advantage-green{
    border-left:7px solid #7fe0c8;
}

.advantage-blue{
    border-left:7px solid #79c5ff;
}

.advantage-purple{
    border-left:7px solid #c9a8ff;
}

.advantage-cyan{
    border-left:7px solid #87dff0;
}

/* =====================================================
   #124 Icon
===================================================== */

.advantage-modern-icon{

    width:82px;
    height:82px;

    min-width:82px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;

    background:
        linear-gradient(
            135deg,
            rgba(88,203,177,0.18),
            rgba(72,167,220,0.18)
        );

    border:1px solid rgba(72,167,220,0.10);

    box-shadow:
        0 8px 20px rgba(72,167,220,0.08);
}

/* =====================================================
   #125 Content
===================================================== */

.advantage-modern-content{
    flex:1;
}

.advantage-number{

    position:absolute;

    top:28px;
    right:28px;

    width:56px;
    height:56px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef7fc;

    color:#167ab3;

    font-size:24px;
    font-weight:800;
}

.advantage-modern-content h3{

    font-size:42px;
    line-height:1.2;

    margin-bottom:18px;

    color:#10202d;
}

.advantage-line{

    width:64px;
    height:5px;

    border-radius:30px;

    margin-bottom:22px;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );
}

.advantage-modern-content p{

    font-size:24px;
    line-height:1.8;

    color:#587087;
}

/* =====================================================
   #126 Bottom Box
===================================================== */

.advantages-bottom-box{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    padding:34px 40px;

    background:#f8fcff;

    border:1px solid #dce8f2;

    border-radius:32px;
}

.advantages-bottom-left{

    display:flex;
    align-items:center;
    gap:24px;
}

.advantages-bottom-icon{

    width:90px;
    height:90px;

    min-width:90px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    background:#eafaf5;

    color:var(--mw-green);
}

.advantages-bottom-left strong{

    display:block;

    font-size:32px;

    margin-bottom:12px;

    color:#10202d;
}

.advantages-bottom-left span{

    display:block;

    font-size:21px;
    line-height:1.7;

    color:#587087;
}

.advantages-bottom-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:360px;

    min-height:78px;

    padding:20px 34px;

    border-radius:100px;

    background:
        linear-gradient(
            135deg,
            var(--mw-green),
            var(--mw-blue)
        );

    color:#ffffff;

    font-size:22px;
    font-weight:800;

    text-decoration:none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.advantages-bottom-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 16px 30px rgba(72,167,220,0.22);
}

/* =====================================================
   #127 Laptop
===================================================== */

@media (max-width:1700px){

    .advantages-modern-title{
        font-size:58px;
    }

    .advantage-modern-content h3{
        font-size:34px;
    }

    .advantage-modern-content p{
        font-size:20px;
    }
}

/* =====================================================
   #128 Tablet
===================================================== */

@media (max-width:1100px){

    .advantages-modern-grid{
        grid-template-columns:1fr;
    }

    .advantages-bottom-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .advantages-bottom-btn{
        width:100%;
        min-width:unset;
    }
}

/* =====================================================
   #129 Mobile
===================================================== */

@media (max-width:768px){

    .advantages-modern-title{
        font-size:42px;
    }

    .advantages-modern-text{
        font-size:18px;
    }

    .advantage-modern-card{

        flex-direction:column;

        padding:30px 24px;

        min-height:auto;
    }

    .advantage-modern-icon{

        width:90px;
        height:90px;

        min-width:90px;

        font-size:38px;
    }

    .advantage-modern-content h3{
        font-size:30px;
    }

    .advantage-modern-content p{
        font-size:18px;
    }

    .advantage-number{

        width:48px;
        height:48px;

        font-size:18px;
    }

    .advantages-bottom-box{
        padding:28px 22px;
    }

    .advantages-bottom-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .advantages-bottom-left strong{
        font-size:26px;
    }

    .advantages-bottom-left span{
        font-size:17px;
    }

    .advantages-bottom-btn{

        width:100%;

        min-height:64px;

        font-size:18px;
    }
}
/* =====================================================
   #120 Moderne Vorteile Section
   30% kleiner optimiert
===================================================== */

.advantages-modern-header{
    max-width:640px;
    margin-bottom:42px;
}

.advantages-modern-title{
    font-size:48px;
    line-height:1.12;
    margin-bottom:18px;
}

.title-line{
    width:64px;
    height:4px;
    margin-bottom:20px;
}

.advantages-modern-text{
    max-width:620px;
    font-size:17px;
    line-height:1.7;
}

/* =====================================================
   #121 Grid
===================================================== */

.advantages-modern-grid{
    gap:24px;
    margin-bottom:30px;
}

/* =====================================================
   #122 Card
===================================================== */

.advantage-modern-card{

    gap:20px;

    padding:28px;

    border-radius:24px;

    min-height:190px;
}

/* =====================================================
   #123 Icon
===================================================== */

.advantage-modern-icon{

    width:78px;
    height:78px;

    min-width:78px;

    font-size:32px;
}

/* =====================================================
   #124 Content
===================================================== */

.advantage-number{

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border-radius:12px;

    font-size:17px;
}

.advantage-modern-content h3{

    font-size:28px;

    margin-bottom:12px;
}

.advantage-line{

    width:46px;
    height:4px;

    margin-bottom:16px;
}

.advantage-modern-content p{

    font-size:17px;
    line-height:1.7;
}

/* =====================================================
   #125 Bottom Box
===================================================== */

.advantages-bottom-box{

    gap:20px;

    padding:24px 28px;

    border-radius:24px;
}

.advantages-bottom-left{
    gap:18px;
}

.advantages-bottom-icon{

    width:64px;
    height:64px;

    min-width:64px;

    font-size:28px;
}

.advantages-bottom-left strong{

    font-size:24px;

    margin-bottom:8px;
}

.advantages-bottom-left span{

    font-size:16px;
    line-height:1.6;
}

.advantages-bottom-btn{

    min-width:250px;

    min-height:58px;

    padding:14px 24px;

    font-size:16px;
}

/* =====================================================
   #126 Laptop
===================================================== */

@media (max-width:1700px){

    .advantages-modern-title{
        font-size:42px;
    }

    .advantage-modern-content h3{
        font-size:24px;
    }

    .advantage-modern-content p{
        font-size:16px;
    }
}

/* =====================================================
   #127 Tablet
===================================================== */

@media (max-width:1100px){

    .advantages-modern-grid{
        grid-template-columns:1fr;
    }

    .advantages-bottom-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .advantages-bottom-btn{
        width:100%;
        min-width:unset;
    }
}

/* =====================================================
   #128 Mobile
===================================================== */

@media (max-width:768px){

    .advantages-modern-title{
        font-size:34px;
    }

    .advantages-modern-text{
        font-size:16px;
    }

    .advantage-modern-card{

        flex-direction:column;

        padding:22px 20px;

        min-height:auto;
    }

    .advantage-modern-icon{

        width:68px;
        height:68px;

        min-width:68px;

        font-size:28px;
    }

    .advantage-modern-content h3{
        font-size:24px;
    }

    .advantage-modern-content p{
        font-size:16px;
    }

    .advantage-number{

        width:40px;
        height:40px;

        font-size:15px;
    }

    .advantages-bottom-box{
        padding:22px 18px;
    }

    .advantages-bottom-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .advantages-bottom-left strong{
        font-size:22px;
    }

    .advantages-bottom-left span{
        font-size:15px;
    }

    .advantages-bottom-btn{

        width:100%;

        min-height:56px;

        font-size:16px;
    }
}
.advantages-modern-header{
    max-width:1200px;
}

.advantages-modern-title{
    font-size:48px;
    line-height:1.2;

    max-width:1200px;
}

.advantages-modern-header{
    max-width:100%;
}

.advantages-modern-title{

    font-size:48px;
    line-height:1.2;

    white-space:nowrap;

    margin-bottom:18px;
}

.advantages-modern-text{

    max-width:700px;

    font-size:17px;
    line-height:1.7;
}

@media (max-width:768px){

    .advantages-modern-title{

        white-space:normal;

        font-size:34px;
        line-height:1.25;
    }
}

/* =====================================================
   #130 Legal Mobile Title Fix
===================================================== */

@media (max-width:760px){

    .page-hero-title{
        font-size:34px;
        line-height:1.15;
        word-break:normal;
        overflow-wrap:break-word;
        hyphens:auto;
    }

    .page-hero-content{
        max-width:100%;
        overflow:hidden;
    }
}

