.actionCard {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.actionIcon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actionContent {
    flex: 1;
}

.actionTitle {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.actionSubtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 2px;
}

.actionCheck {
    color: var(--primary-accent);
    opacity: 0;
    transform: scale(0.5);
    animation: checkPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

@keyframes checkPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Variants */
.actionCard.sales {
    border-left: 3px solid #00f0ff;
}

.actionCard.support {
    border-left: 3px solid #7000ff;
}

.actionCard.booking {
    border-left: 3px solid #00ff9d;
}