*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f7f9fc;
    color:#1e293b;
    line-height:1.6;
}

/* --------------------------------------------------
   CONTAINER
-------------------------------------------------- */

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* --------------------------------------------------
   MARQUEE
-------------------------------------------------- */

.top-marquee{
    background:#025AB8;
    color:#fff;
    overflow:hidden;
    height:42px;
    display:flex;
    align-items:center;
    position:relative;
}

.marquee-content{
    white-space:nowrap;
    position:absolute;
    animation:marquee 35s linear infinite;
    font-size:14px;
    font-weight:600;
}

@keyframes marquee{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.site-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.logo-area img{
    height:65px;
    width:auto;
}

.main-nav{
    display:flex;
    gap:25px;
}

.main-nav a{
    text-decoration:none;
    color:#1e293b;
    font-weight:600;
    transition:.3s;
}

.main-nav a:hover{
    color:#025AB8;
}

.header-contact{
    text-align:right;
}

.phone{
    font-size:22px;
    font-weight:700;
    color:#025AB8;
}

.hours{
    font-size:13px;
    color:#64748b;
}

.mobile-toggle{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    background:#fff;
    border-top:1px solid #e5e7eb;
}

.mobile-menu a{
    display:block;
    padding:15px 20px;
    text-decoration:none;
    color:#1e293b;
    border-bottom:1px solid #f1f5f9;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero{
    background:linear-gradient(
        135deg,
        #eef5ff,
        #dcecff
    );
    padding:100px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:62px;
    line-height:1.1;
    margin-bottom:25px;
    color:#0f172a;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
    color:#475569;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#025AB8;
    color:#fff;
}

.btn-primary:hover{
    background:#01448d;
}

.btn-secondary{
    background:#fff;
    color:#025AB8;
    border:2px solid #025AB8;
}

.btn-secondary:hover{
    background:#025AB8;
    color:#fff;
}

.hero-image img{
    width:100%;
    max-width:500px;
    display:block;
    margin:auto;
}

/* --------------------------------------------------
   SECTION
-------------------------------------------------- */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#64748b;
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.07);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#025AB8;
    margin-bottom:15px;
}

.card p{
    color:#475569;
}

/* --------------------------------------------------
   ABOUT
-------------------------------------------------- */

.about{
    background:#fff;
}

.about-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

/* --------------------------------------------------
   BUSINESS
-------------------------------------------------- */

.business{
    background:#eef5ff;
}

/* --------------------------------------------------
   WEBSEITEN
-------------------------------------------------- */

.websites{
    background:#fff;
}

/* --------------------------------------------------
   NOVA
-------------------------------------------------- */

.nova{
    background:#0f172a;
    color:#fff;
}

.nova-box{
    background:#162236;
    border-radius:25px;
    padding:50px;
}

.nova-box h2{
    margin-bottom:20px;
}

.nova-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:30px;
}

.nova-feature{
    background:rgba(255,255,255,.08);
    padding:15px;
    border-radius:12px;
    text-align:center;
}

/* --------------------------------------------------
   CONTACT
-------------------------------------------------- */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.07);
}

.contact-info h3,
.contact-form h3{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:10px;
    margin-bottom:15px;
}

.contact-form button{
    background:#025AB8;
    color:#fff;
    border:none;
    padding:14px 25px;
    border-radius:10px;
    cursor:pointer;
    font-weight:700;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.site-footer{
    background:#0f172a;
    color:#fff;
    padding:50px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
}

.site-footer a{
    color:#fff;
    text-decoration:none;
}

.copyright{
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    text-align:center;
}

/* --------------------------------------------------
   COOKIE
-------------------------------------------------- */

.cookie-banner{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:99999;
}

.cookie-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cookie-btn{
    background:#025AB8;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    cursor:pointer;
}

/* --------------------------------------------------
   NOVA BUBBLE
-------------------------------------------------- */

.nova-bubble{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#025AB8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    cursor:pointer;
    z-index:9999;
}

/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */

@media(max-width:992px){

    .main-nav{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .cookie-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}