/* ============================================================
   DOSIGNY - Conversion-Einstieg Website-Check
   Eigenständig geladen, damit bestehende Seitenstyles unberührt bleiben.
   ============================================================ */

/* Die Startseite hat nun zwei gleichwertig saubere Hero-Einstiege. */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.website-check-cta {
    position: relative;
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(69, 191, 166, 0.13), transparent 38%),
        linear-gradient(180deg, #0c0816 0%, #100b1d 100%);
}

.website-check-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.website-check-cta__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(1.6rem, 4vw, 3.5rem);
    border: 1px solid rgba(69, 191, 166, 0.25);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: 0 28px 80px -35px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.website-check-cta__panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 9%;
    left: 9%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69, 191, 166, 0.75), transparent);
}

.website-check-cta__eyebrow {
    display: inline-flex;
    margin: 0 0 1rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(69, 191, 166, 0.35);
    border-radius: 999px;
    background: rgba(69, 191, 166, 0.1);
    color: #5cd1b8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.website-check-cta__title {
    max-width: 780px;
    margin: 0 0 1rem;
    color: #fff;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.website-check-cta__text {
    max-width: 760px;
    margin: 0;
    color: rgba(244, 241, 232, 0.78);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    line-height: 1.72;
}

.website-check-cta__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.website-check-cta__benefits li {
    position: relative;
    padding-left: 1.35rem;
    color: #f4f1e8;
    font-size: 0.84rem;
    font-weight: 600;
}

.website-check-cta__benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #45bfa6;
    font-weight: 800;
}

.website-check-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.website-check-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.website-check-cta__button--primary {
    background: #45bfa6;
    color: #0c0816;
    box-shadow: 0 12px 28px -12px rgba(69, 191, 166, 0.65);
}

.website-check-cta__button--primary:hover,
.website-check-cta__button--primary:focus-visible {
    transform: translateY(-2px);
    background: #5cd1b8;
    color: #0c0816;
    box-shadow: 0 18px 34px -12px rgba(69, 191, 166, 0.78);
}

.website-check-cta__button--secondary {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.035);
    color: #f4f1e8;
}

.website-check-cta__button--secondary:hover,
.website-check-cta__button--secondary:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(69, 191, 166, 0.5);
    background: rgba(69, 191, 166, 0.09);
    color: #fff;
}

.website-check-cta__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.website-check-cta__note {
    margin: 0.1rem 0 0;
    color: rgba(244, 241, 232, 0.5);
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 820px) {
    .website-check-cta__panel {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .website-check-cta__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .website-check-cta__note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta .btn {
        width: min(100%, 330px);
    }

    .website-check-cta {
        padding: 3rem 0;
    }

    .website-check-cta__panel {
        padding: 1.35rem;
        border-radius: 18px;
    }

    .website-check-cta__actions {
        display: flex;
    }

    .website-check-cta__button {
        width: 100%;
        min-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-check-cta__button {
        transition: none;
    }
}
