/* V18: Hero zeigt alle wichtigen Berechnungsarten sichtbar an */
.hero-methods {
    display: grid;
    grid-template-columns: auto repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
    margin: 1.05rem 0 0.95rem;
    max-width: 920px;
}

.hero-methods-label {
    align-self: center;
    color: #486176;
    font-weight: 900;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hero-methods a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.18rem;
    min-width: 0;
    padding: 0.72rem 0.85rem;
    border: 1px solid #D7E2EB;
    border-radius: 15px;
    background: #fff;
    color: #03345A;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(3, 52, 90, 0.07);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hero-methods a:hover,
.hero-methods a:focus-visible {
    transform: translateY(-1px);
    border-color: #0C76BE;
    box-shadow: 0 14px 30px rgba(3, 52, 90, 0.12);
    outline: none;
}

.hero-methods strong {
    font-size: 0.95rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.hero-methods small {
    color: #536A7D;
    font-size: 0.82rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .hero-methods {
        grid-template-columns: 1fr 1fr;
    }

    .hero-methods-label {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary {
        width: 100% !important;
        justify-content: center;
        text-align: center;
    }

    .hero-methods {
        grid-template-columns: 1fr !important;
        gap: 0.55rem;
        margin-top: 0.95rem;
    }

    .hero-methods-label {
        font-size: 0.9rem;
        color: #23475F;
    }

    .hero-methods a {
        padding: 0.82rem 0.95rem;
        border-radius: 14px;
    }

    .hero-methods strong {
        font-size: 1rem;
    }

    .hero-methods small {
        font-size: 0.88rem;
    }
}
