/* ================================
   GLOBAL BASE STYLE
================================ */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* verhindert weißen Rand rechts */
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    padding-top: 100px; /* Platz für Fix-Navigation */
}

h1, h2, h3 {
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-subline {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* ================================
   HERO SLIDER
================================ */
.hero {
    padding: 0;
    margin: 0;
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;

    pointer-events: none; /* <<< BLOCKT ALLE KLICKS für NICHT-AKTIV */
}

.hero-slider .slide.active {
    opacity: 1;
    pointer-events: auto; /* <<< NUR aktive Slide bekommt Klicks */
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Moderner Hero-Text wie auf dem Screenshot */
.slide-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    width: 45%;
    max-width: 650px;
    color: #fff;
    background: none; /* Kein dunkler Hintergrund */
    padding: 0;
}

.slide-text h1 {
    font-size: 3.2em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.slide-text p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

@media (max-width: 850px) {
    .slide-text {
        width: 70%;
        left: 5%;
    }

    .slide-text h1 {
        font-size: 2.3em;
    }
}

@media (max-width: 600px) {
    .slide-text {
        width: 90%;
        left: 5%;
        top: 55%;
    }

    .slide-text h1 {
        font-size: 1.9em;
    }

    .slide-text p {
        font-size: 1em;
    }
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1E90FF;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #fff;
    color: #1E90FF;
}

.btn-primary:hover {
    background-color: #000;
    color: #fff;
}

/* ================================
   TRUST
================================ */
.trust {
    padding: 40px 10px;
    text-align: center;
    width: 100%;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

.trust-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 330px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.trust-box:hover {
    transform: translateY(-5px);
}

.trust-box img {
    width: 45px;
    margin-bottom: 10px;
}

/* ================================
   SERVICES
================================ */
.services {
    padding: 60px 10px;
    text-align: center;
    width: 100%;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    width: 100%;
    max-width: 330px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content ul {
    padding-left: 20px;
    text-align: left;
    color: #444;
}

/* ================================
   PREISE
================================ */
.prices {
    padding: 60px 10px;
    text-align: center;
    background: #f5f5f5;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

.price-box {
    background: #fff;
    padding: 25px;
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================================
   NUMBERS
================================ */
.numbers {
    padding: 60px 10px;
    text-align: center;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

/* ================================
   FAQ
================================ */
.faq {
    padding: 60px 15px;
    max-width: 800px;
    margin: auto;
    width: 100%;
}

.faq-item {
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ================================
   CTA
================================ */
.cta {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: #fff;
    text-align: center;
    padding: 50px 15px;
    border-radius: 15px;
    margin: 40px 0;
    width: 100%;
}

.cta h2 {
    font-size: 2.2em;
}

/* ================================
   RESPONSIVE FIX FULL WIDTH
================================ */

/* Tablets */
@media (max-width: 850px) {
    .hero-slider { height: 350px; }

    .slide-text {
        width: 95%;
        padding: 18px;
    }
}

/* Phones */
@media (max-width: 600px) {

    .hero-slider { height: 260px; }

    .slide-text {
        width: 95%;
        padding: 15px;
        font-size: 0.9em;
    }

    .card,
    .trust-box,
    .price-box {
        width: 100%;
        max-width: none;
        border-radius: 10px;
    }

    .cta {
        border-radius: 0;
        margin: 0;
        padding: 35px 10px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .slide-text { font-size: 0.85em; }
    .numbers-grid h2 { font-size: 2em; }
}
