/* ============================================
   HERO ACTION BOX
   Aktions-Karte in der rechten Hero-Spalte.
   Genutzt von avgs-einloesen.html und /unsere-coaches/.
   Die Optionen werden ueber :nth-child eingefaerbt:
   1. dunkel, 2. Marken-Blau, weitere neutral.
   ============================================ */

.hero-action-box {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hero-action-box__eyebrow {
    display: block;
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gray-900);
}

.hero-action-box__options {
    display: flex;
    flex-direction: column;
}

.hero-action-box__option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    text-decoration: none;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s ease;
    cursor: pointer;
}

.hero-action-box__option:last-child {
    border-bottom: none;
}

/* 1. Option (Anspruch prüfen) – dunkel hervorgehoben */
.hero-action-box__option:nth-child(1) {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
}

.hero-action-box__option:nth-child(1) .hero-action-box__text span {
    color: rgba(255, 255, 255, 0.7);
}

.hero-action-box__option:nth-child(1) .hero-action-box__icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.hero-action-box__option:nth-child(1) .hero-action-box__arrow {
    color: rgba(255, 255, 255, 0.6);
}

.hero-action-box__option:nth-child(1):hover {
    background: linear-gradient(135deg, #273548 0%, #1a2435 100%);
    color: var(--white);
}

/* 2. Option (Formulierungshilfe) – im Marken-Blau */
.hero-action-box__option:nth-child(2) {
    background: var(--blue);
    color: var(--white);
}

.hero-action-box__option:nth-child(2) .hero-action-box__text span {
    color: rgba(255, 255, 255, 0.8);
}

.hero-action-box__option:nth-child(2) .hero-action-box__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-action-box__option:nth-child(2) .hero-action-box__arrow {
    color: rgba(255, 255, 255, 0.75);
}

.hero-action-box__option:nth-child(2):hover {
    background: var(--blue-hover);
    color: var(--white);
}

.hero-action-box__option:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.hero-action-box__option:nth-child(1):hover .hero-action-box__arrow,
.hero-action-box__option:nth-child(2):hover .hero-action-box__arrow {
    color: var(--white);
}

.hero-action-box__option:hover .hero-action-box__arrow {
    transform: translateX(3px);
    color: var(--blue);
}

.hero-action-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--blue-light);
    color: var(--blue);
}

.hero-action-box__option--email .hero-action-box__icon {
    background: #e8ecff;
    color: #5271ff;
}

.hero-action-box__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.hero-action-box__text strong {
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    line-height: 1.3;
}

.hero-action-box__text span {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

.hero-action-box__arrow {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-action-box__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    padding: 14px 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.hero-action-box__trust span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
}

/* ============================================
   HERO ACTION BOX – Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-action-box {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-action-box__option {
        padding: 14px 18px;
        gap: 12px;
    }

    .hero-action-box__icon {
        width: 38px;
        height: 38px;
    }

    .hero-action-box__icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-action-box__text strong {
        font-size: 14px;
    }

    .hero-action-box__text span {
        font-size: 12px;
    }

    .hero-action-box__eyebrow {
        padding: 14px 18px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .hero-action-box__trust {
        padding: 12px 18px;
        gap: 4px 12px;
    }

    .hero-action-box__trust span {
        font-size: 11px;
    }
}
