
section.hero .hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: none;
    gap: 0;
    margin-top: clamp(140px, 18vh, 200px);
    margin-bottom: 0;
    max-width: var(--container-max);
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


section.hero .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
}


section.hero .hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 1.75rem + 3.25vw, 3.75rem);
    font-weight: var(--font-bold);
    line-height: 1.15;
    letter-spacing: var(--tracking-tight);
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--space-12);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
    order: 1;
    padding-inline: 0;
    max-inline-size: 100%;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}


section.hero .h1-highlight {
    color: #00FFFF;
    text-shadow: 0 0 8px rgba(0, 180, 255, 0.7), 0 0 20px rgba(0, 140, 255, 0.4);
    display: inline;
}


section.hero .hero__body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: var(--space-10);
    order: 2;
}


section.hero .hero__description {
    font-size: var(--text-lg);
    max-width: none;
    text-align: left;
    line-height: 1.65;
    flex-shrink: 0;
    width: auto;
    margin: 0;
    padding: 0;
    hyphens: none;
    order: unset;
}

section.hero .hero__description span {
    display: block;
    white-space: nowrap;
}


section.hero .hero__badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    order: unset;
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin: 0;
    transform: none;
}

section.hero .hero-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
}

section.hero .hero-badge__value {
    white-space: nowrap;
}

section.hero .hero-badge__icon {
    width: 48px;
    min-width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.hero .hero-badge__icon svg {
    display: block;
    margin: 0 auto;
}

section.hero .hero-badge__label {
}


section.hero .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 0;
    overflow: visible;
}


section.hero .hero__trust-line {
    margin-top: 16px;
    margin-bottom: var(--space-4);
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}


section.hero .hero__logo-bar,
.hero .logo-carousel.hero__logo-bar {
    display: block;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}


@media (max-width: 1023px) {
    section.hero {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 0;
    }

    section.hero .hero__container {
        margin-top: 0;
        padding-top: calc(90px + env(safe-area-inset-top, 0px) + 3rem);
        padding-bottom: var(--space-3);
        min-height: auto;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    section.hero .hero__title {
        margin-bottom: var(--space-8);
        padding-inline: 2%;
        font-size: clamp(2.2rem, 5.2vw, 3.5rem);
    }

    section.hero .hero__body {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
        max-width: 100%;
        margin-bottom: var(--space-6);
    }

    section.hero .hero__description {
        text-align: left;
        max-width: none;
        font-size: clamp(0.85rem, 1.8vw, 1.05rem);
        flex: 1 1 auto;
    }

    section.hero .hero__badges {
        align-items: stretch;
        flex-shrink: 0;
        width: auto;
        max-width: none;
        margin-inline: 0;
    }

    section.hero .hero-badge {
        justify-content: flex-start;
        width: auto;
        max-width: none;
        white-space: nowrap;
    }

    section.hero .hero-badge__label {
        white-space: nowrap;
    }

    section.hero .hero__actions {
        margin-top: var(--space-4);
    }

    section.hero .hero__trust-line {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        margin-bottom: var(--space-6);
    }

    section.hero .hero__logo-bar,
    .hero .logo-carousel.hero__logo-bar {
        display: block;
        visibility: visible;
        opacity: 1;
        margin-top: auto;
        flex: 0 0 auto;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
}


@media (max-width: 767px) {
    section.hero .hero__container {
        padding-top: calc(80px + env(safe-area-inset-top, 0px) + 0.75rem);
    }

    section.hero .hero__title {
        padding-inline: 2%;
        font-size: clamp(1.8rem, 7.5vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: var(--space-4);
    }

    section.hero .hero__description span {
        display: inline;
        white-space: normal;
    }

    section.hero .hero__body {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
        margin-bottom: var(--space-3);
    }

    section.hero .hero__description {
        text-align: center;
        max-width: 32rem;
    }

    section.hero .hero__badges {
        align-items: stretch;
        justify-content: center;
        width: 100%;
        max-width: 340px;
        margin-inline: auto;
        gap: 6px;
    }

    section.hero .hero-badge {
        width: 100%;
        max-width: 100%;
    }

    section.hero .hero__actions {
        margin-top: var(--space-2);
    }

    section.hero .hero__trust-line {
        margin-bottom: var(--space-4);
    }
}


@media (max-width: 576px) {
    section.hero .hero__title {
        padding-inline: 2%;
        font-size: clamp(1.65rem, 7.2vw, 2.4rem);
        line-height: 1.15;
    }

    section.hero .hero__badges {
        max-width: 300px;
    }

    section.hero .hero-badge {
        padding: 8px 14px;
        max-width: 100%;
    }

    section.hero .hero-badge__value {
        font-size: 0.9rem;
    }

    section.hero .hero-badge__label {
        font-size: 0.72rem;
    }
}

/* Karussell näher an Hero rücken */
.hero .logo-carousel.hero__logo-bar {
    padding-block: 0.5rem 0.75rem;
}

section.hero .hero__google-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(20, 27, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    color: #f3f4f6;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

section.hero .hero__google-rating:hover {
    border-color: rgba(251, 188, 4, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(251, 188, 4, 0.15);
}

section.hero .hero__google-rating * {
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}

section.hero .hero__google-stars {
    color: #FBBC04;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

section.hero .hero__google-logo {
    font-weight: 700;
    color: #f3f4f6;
}
